@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}
/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

.topbar {
    background-color: #3d150b;
    font-size: 14px;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
    background: #EE7E12;
    border: #bf5f02;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.navbar-brand img {
    width: 77px;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    border-bottom: 1px solid #EE7E12;
}

/* .navbar .navbar-brand,
.navbar a.btn {
    height: 80px
} */

.navbar .navbar-nav .nav-link {
    /* margin-right: 35px; */
    padding: 25px 30px;
    color: #3d150b;
    font-size: 16px;
    font-weight: 500;
    outline: none;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFF;
    background: #EE7E12;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #02221c85;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 3rem;
    background-color: #279280;
    border: 10px solid #05705e;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 30px;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1.25);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
    width: 100%;
    padding: 20px;
}

.service-item:hover .service-text {
    background: #e6b463b2;
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
    padding: 20px;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: #0170ca;
    background: #badffd;
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner img {
    max-height: 220px;
}

.portfolio-inner2 img {
    max-height: 100%;
}

.portfolio-inner img.achievements {
    max-height: auto;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #0258a294;
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: #badffd;
    color: #0170ca;
}

.portfolio-inner .portfolio-text .btn:hover {
    background: #0170ca;
    color: #badffd;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: rgb(255, 255, 255, 0.3);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}




.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: #badffd;
    color: #0170ca;
}

.team-item .team-social .btn:hover {
    background: #0170ca;
    color: #badffd;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.cta-footer{
    background-color: #EE7E12;
    font-size: 30px; 
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #FFF;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.cta-footer a, .cta-footer i{color: #6b2d1c;}

.footer {
    background: #6b2d1c;
    padding: 40px 0 20px;
    font-size: 15px;
}
.footer a{
    color: #FFF;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #000;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #3d150b;
    position: relative;
    padding: 5px !important;
    font-size: 14px !important;
}

.copyright a {
    color: #FFFFFF;
    font-size: 14px !important;
}

.copyright a:hover {
    color: var(--primary);
}

.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    left: auto;
    right: 1px;
    color: #fff;
}

.whatsapp-btn a {}

.whatsapp-btn a i {
    color: #fff;
}


/* popup */
.cl-button {
    background-color: #b62a2a;
    /* Green */
    border: none;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    border-radius: 100px;
    margin-top: -55px;
    float: right;
    box-shadow: -1px 0px 18px 0px rgba(0, 0, 0, 0.47);
    transition: .3s all ease-in-out;
}


.cl-button:hover {
    background-color: #000;
    color: #0daaef;
}


.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    padding: 90px 20px 30px 20px;
    background-color: white;
    border: 4px solid #0daaef;
    /* box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2); */
    box-shadow: inset 5px 0 20px -5px #000, inset -5px 0 20px -5px #000;
    border-radius: 10px;
    overflow: hidden;
}

.popup__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 15px;
}

.Submit-box {
    background-color: #0daaef !important;
    border: none;
    padding: 7px 20px;
    margin-top: 30px;
    border-radius: 4px;
    transition: .3s all ease-in-out;
}

.Submit-box:hover {
    background-color: #000 !important;
    color: #fff;
}

.popup__content .pop-img {
    max-width: 350px;
}

@media only screen and (max-width:768px) {
    .popup__content {
        width: 90%;
        margin: 15px auto
    }
}

.counter-sec {}


/* ****************************************Page Css*********************************************** */
html,
body {
    overflow-x: hidden;
}

/* CSS for styling the popup form */
.popupForm {
    border-radius: 10px;
    position: fixed;
    top: 47%;
    left: 50%;
    width: 38%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #0170ca;
    z-index: 9999;
    /*height:80%;*/
    /*overflow: hidden;*/
    display: none;
    box-shadow: 0px 0px 50px #0170ca;

}

@media (max-width: 768px) {

    .popupForm {
        width: 90%;
        box-shadow: 0px 0px 10px #0170ca;
    }

    .popupForm label {
        display: block;
        /*margin-bottom: 5px;*/
    }

    .popupForm input,
    .popupForm select {
        /*width: calc(100% - 22px); */
        padding: 4px;
        margin-bottom: 3px;
        border: 1px solid #cccccc;
        border-radius: 4px;
    }


}

.popupForm h2 {
    margin-top: 0;
}

.popupForm label {
    display: block;
    margin-bottom: 10px;
}

.popupForm input,
.popupForm select {
    width: calc(100% - 22px);
    /* Adjusted width to account for padding and border */
    padding: 8px;
    margin-bottom: 7px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.popupForm button {
    padding: 8px 20px;
    border: none;
    border-radius: 7px;
    /*background-color: #348e39;*/
    background-color: transparent;
    color: #0170ca;
    cursor: pointer;
    margin-right: 10px;
    float: right;
    position: relative;
    top: 5px;
    border: solid 2px #0170ca;
    box-shadow: 0px 0px 10px #0170ca;
}

.popupForm button:hover {}


.popupForm button:last-child {
    margin-right: 0;
}

#closePopupBtn {
    font-weight: bolder;

}

#closePopupBtn:hover {
    visibility: 0.7;
    color: red;
}

/* Overlay for background blur */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    backdrop-filter: blur(5px);
    /* Apply blur effect */
    z-index: 9998;
    display: none;
    /* Initially hidden */
}

/* Styling for the rotated button */
#openPopupBtn {
    position: fixed;
    top: 50%;
    /* Adjust position as needed */
    right: -45px;
    /* Adjust position as needed */
    padding: 10px 20px;
    background-color: #444444;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9999;
    transform: rotate(-90deg);
    /* Rotate the button */
}

/* Hover effect for the button */
#openPopupBtn:hover {
    background-color: #0056b3;

}

#openPopupBtn {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        /*transform: translateY(0);*/
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
        /* Replace with your desired glow color */
        border: solid 1px #0170ca
    }

    50% {
        /*transform: translateY(-5px); Move up by 5px*/
        box-shadow: 0 0 40px #0170ca;
        /* Increase glow intensity */
        border: solid 1px white;
    }

    100% {
        /*transform: translateY(0);*/
        box-shadow: 0 0 20px #0170ca;
        /* Restore original glow */
        border: solid 1px #348e38;
    }
}

.pre-btn {
    border: none;
    background: transparent;
    /*position:relative;*/
    /*bottom:100px;*/
}

.img-form {
    position: relative;
    bottom: 100px;
}

.message {
    width: calc(100% - 22px);
    padding: 8px;
    /*margin-bottom: 7px;*/
    border: 1px solid #cccccc;
    border-radius: 4px;
}

#closePopupBtn:hover {
    color: white;
    opacity: 0.3;
}



.nboxstyle1 {
    min-height: 160px;
    background-color: #eed099;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

}

.nboxstyle2 {
    min-height: 160px;
    margin: 0 15px;
    background-color: #eed099;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


.nboxstyle3 {
    background-color: #eed099;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}




/* ************************box Style***************** */

.card-text {
    font-size: 14px;
}



/* Career Page */

:root {
            --primary: #EE7E12;
            --secondary: #B5350D;
            --accent: #e74c3c;
            --light: #f8f9fa;


            --green     : #27ae60;
            --purple    : #9b59b6;
            --orange    : #f39c12;
        }

        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        } */

        
        /* ===== HERO SECTION ===== */
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            color: #FFF;
        }

        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            background: white;
            padding: 30px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .stat-item {
            text-align: center;
            padding: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        /* ===== JOB CARDS ===== */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }

        .job-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .job-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .job-tag {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin: 3px 2px;
        }

        .apply-btn {
            background: linear-gradient(90deg, var(--secondary), #2980b9);
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(52,152,219,0.4);
            color: white;
        }

        /* ===== FORM SECTION ===== */
        .form-section {
            padding: 70px 0;
        }

        .form-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        .form-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 15px;
            color: white;
            text-align: center;
        }

        .form-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .form-body {
            padding: 40px;
        }

         .form-body .input-group {
            margin-bottom: 14px;
        }

        .form-label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 6px;
            font-size: 14px;
        }

        .form-label span {
            color: var(--accent);
        }

        .form-control, .form-select {
            border: 2px solid #e8ecf0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s;
            background-color: #f8f9ff;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.2rem rgba(52,152,219,0.15);
            background-color: white;
        }

        .input-group-text {
            background: linear-gradient(135deg, var(--secondary), #2980b9);
            border: none;
            color: white;
            border-radius: 10px 0 0 10px;
            padding: 12px 16px;
        }

        .input-group .form-control {
            border-radius: 0 10px 10px 0;
        }

         .input-group input::placeholder {
            color: #888888;
            font-style: italic;
            opacity: 0.7;
            }
        /* Photo Upload */
        .photo-upload-area {
            border: 2px dashed #c0c8d0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #f8f9ff;
            position: relative;
            margin-bottom: 20px;
        }

        .photo-upload-area:hover {
            border-color: var(--secondary);
            background: rgba(52,152,219,0.05);
        }

        .photo-preview {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
            display: none;
            margin: 0 auto 10px;
        }

        .photo-placeholder {
            font-size: 3rem;
            color: #bcc4cc;
            margin-bottom: 0px;
        }

        /* Biodata Upload */
        .biodata-upload-area {
            border: 2px dashed #c0c8d0;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #f8f9ff;
        }

        .biodata-upload-area:hover {
            border-color: var(--secondary);
            background: rgba(52,152,219,0.05);
        }

        .biodata-upload-area.file-selected {
            border-color: #27ae60;
            background: rgba(39,174,96,0.05);
        }

        .file-info {
            display: none;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            background: rgba(39,174,96,0.1);
            border-radius: 8px;
            margin-top: 10px;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 15px 50px;
            border-radius: 12px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            transition: all 0.3s;
            letter-spacing: 1px;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(44,62,80,0.3);
            color: white;
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* ===== VALIDATION STYLES ===== */
        .form-control.is-invalid, .form-select.is-invalid {
            border-color: var(--accent);
        }

        .invalid-feedback {
            font-size: 0.8rem;
            color: var(--accent);
        }

        /* ===== SUCCESS MODAL ===== */
        .success-icon {
            font-size: 5rem;
            color: #27ae60;
            animation: bounceIn 0.6s ease;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            60% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2rem; }
            .form-body { padding: 25px; }
            .stat-number { font-size: 1.8rem; }
        }

        /* Progress bar for form */
        .form-progress {
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 0;
            transition: width 0.4s ease;
        }

        .form-check{
            background:#f8f9ff;
            border:1px solid #e8ecf0;
            margin-bottom: 20px;
            padding-left: 40px !important;
        }



/* ****************Become a Partner******************* */


/* ── HERO ── */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--purple) 100%);
            padding: 40px 0 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.3);
        }
        .hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 6px 22px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
            backdrop-filter: blur(6px);
        }

        /* ── PARTNER TYPE CARDS ── */
        .partner-cards { padding: 60px 0 20px; }
        .pcard {
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            cursor: pointer;
            transition: transform .3s, box-shadow .3s;
            border: 2px solid transparent;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
            height: 100%;
        }
        .pcard:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.14);
        }
        .pcard.active { border-color: var(--secondary); }
        .pcard-icon {
            width: 70px; height: 70px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 15px;
        }
        .pcard h5 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
        .pcard p  { font-size: 0.85rem; color: #777; margin: 0; }

        /* ── FORM SECTION ── */


        .form-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        .form-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 15px;
            color: #fff;
            text-align: center;
        }
        .form-header h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 6px; }

        .form-body { padding: 40px; }

        .form-label {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        .form-label span { color: var(--accent); }

        .form-control, .form-select {
            border: 2px solid #e8ecf0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 0.95rem;
            background: #f8f9ff;
            transition: all .3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.2rem rgba(52,152,219,0.15);
            background: #fff;
        }

        .input-group-text {
            border: none;
            color: #fff;
            border-radius: 10px 0 0 10px;
            padding: 12px 16px;
        }
        .input-group .form-control,
        .input-group .form-select {
            border-radius: 0 10px 10px 0;
        }

        /* ── RADIO PARTNER BUTTONS ── */
        .partner-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }

        .partner-radio-label {
            flex: 1;
            min-width: 120px;
            cursor: pointer;
        }

        .partner-radio-label input[type="radio"] { display: none; }

        .partner-radio-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 16px 10px;
            border: 2px solid #e0e6ed;
            border-radius: 14px;
            background: #f8f9ff;
            transition: all .3s;
            text-align: center;
        }
        .partner-radio-box i  { font-size: 1.5rem; margin-bottom: 6px; }
        .partner-radio-box span { font-size: 0.82rem; font-weight: 700; color: #555; }

        .partner-radio-label input:checked + .partner-radio-box {
            border-color: var(--secondary);
            background: linear-gradient(135deg, #eaf4fd, #dbeeff);
            box-shadow: 0 4px 16px rgba(52,152,219,0.2);
        }
        .partner-radio-label input:checked + .partner-radio-box span { color: var(--secondary); }

        /* DSA */
        .partner-radio-label.dsa input:checked + .partner-radio-box {
            border-color: var(--accent);
            background: linear-gradient(135deg, #fdeaea, #ffe0e0);
        }
        .partner-radio-label.dsa input:checked + .partner-radio-box span { color: var(--accent); }
        .partner-radio-label.dsa .partner-radio-box i { color: var(--accent); }

        /* Landing */
        .partner-radio-label.landing input:checked + .partner-radio-box {
            border-color: var(--secondary);
            background: linear-gradient(135deg, #eaf4fd, #dbeeff);
        }
        .partner-radio-label.landing .partner-radio-box i { color: var(--secondary); }

        /* Corporate */
        .partner-radio-label.corporate input:checked + .partner-radio-box {
            border-color: var(--purple);
            background: linear-gradient(135deg, #f4eafb, #ecdeff);
        }
        .partner-radio-label.corporate input:checked + .partner-radio-box span { color: var(--purple); }
        .partner-radio-label.corporate .partner-radio-box i { color: var(--purple); }

        /* NGO */
        .partner-radio-label.ngo input:checked + .partner-radio-box {
            border-color: var(--green);
            background: linear-gradient(135deg, #eafaf1, #d5f5e3);
        }
        .partner-radio-label.ngo input:checked + .partner-radio-box span { color: var(--green); }
        .partner-radio-label.ngo .partner-radio-box i { color: var(--green); }

        /* ── SUBMIT BUTTON ── */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 15px 50px;
            border-radius: 12px;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 800;
            width: 100%;
            transition: all .3s;
            letter-spacing: 1px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(44,62,80,0.3);
            color: #fff;
        }

        /* ── PROGRESS BAR ── */
        .form-progress {
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--purple));
            transition: width .4s;
        }

        /* ── SECTION DIVIDER ── */
        .section-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0px 0 20px;
        }
        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e6ed;
        }
        .section-divider span {
            font-size: 0.8rem;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        /* ── WHY PARTNER ── */
        .why-section { padding: 60px 0; }
        .why-card {
            background: #fff;
            border-radius: 14px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
            transition: transform .3s;
            height: 100%;
        }
        .why-card:hover { transform: translateY(-6px); }
        .why-icon {
            width: 65px; height: 65px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 15px;
        }

        /* ── ALERT ── */
        .alert-success {
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #d5f5e3, #eafaf1);
            color: #1e8449;
            font-weight: 600;
        }
        .alert-danger {
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #fde8e8, #fff5f5);
            color: #c0392b;
            font-weight: 600;
        }
        

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .form-body { padding: 22px; }
            .partner-radio-group { gap: 8px; }
        }







        .counter-plus::after {
    content: "+";
    margin-left: 10px;
    font-weight: bold;
}