


/* ==========================
   WHAT WE DO SECTION
========================== */

.what-we-do-section{
    background:#f7f8fa;
    padding:90px 0;
    position:relative;
}

/* Fancy Bottom Border */

.what-we-do-section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:5px;
    border-radius:30px;
    background:linear-gradient(
        90deg,
        transparent,
        #0d6efd,
        #20c997,
        #0d6efd,
        transparent
    );
}

/* Heading */

.section-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#0d6efd;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#222;
    margin-bottom:15px;
    letter-spacing:-1px;
}

.title-border{
    width:80px;
    height:4px;
    background:#0d6efd;
    margin:0 auto 25px;
    border-radius:20px;
}

.section-description{
    color:#6c757d;
    font-size:17px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* ==========================
   CARD DESIGN
========================== */

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    transition:all .35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card-top-line{
    height:5px;
    background:linear-gradient(
        90deg,
        #0d6efd,
        #20c997
    );
}

.service-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.service-content{
    padding:30px 25px;
    text-align:center;
}

.service-content h4{
    font-size:22px;
    font-weight:700;
    color:#212529;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.service-content h4::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:#0d6efd;
    margin:10px auto 0;
    border-radius:10px;
}

.service-content p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* Button */

.service-btn{
    display:inline-block;
    text-decoration:none;
    padding:12px 28px;
    border-radius:50px;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
    transition:.3s ease;
}

.service-btn:hover{
    background:#0b5ed7;
    color:#fff;
    transform:translateY(-2px);
}

/* Mobile */

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .service-card{
        margin-bottom:20px;
    }
}


/* =====================================================
   PREMIUM TOP HEADER
===================================================== */
/* ==========================================================
   TOP HEADER
========================================================== */

.top-header{

    position:relative;
    overflow:hidden;

    background:linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--footer-bg) 100%
    );

    color:var(--button-text);

    padding:12px 0;

    border-bottom:1px solid var(--border-color);

    z-index:1001;

}

/* ==========================================================
   Animated Shine
========================================================== */

.top-header::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    animation:headerShine 8s linear infinite;

}

@keyframes headerShine{

    from{
        left:-100%;
    }

    to{
        left:150%;
    }

}

/* ==========================================================
   Contact Area
========================================================== */

.top-contact{

    display:flex;

    align-items:center;

    gap:30px;

}

.top-contact a{

    color:var(--button-text);

    text-decoration:none;

    font-size:14px;

    font-weight:500;

    transition:.3s ease;

}

.top-contact a:hover{

    color:var(--accent-color);

}

.top-contact i{

    color:var(--accent-color);

    margin-right:8px;

}

/* ==========================================================
   Social Icons
========================================================== */

.social-icons{

    display:flex;

    justify-content:flex-end;

    gap:12px;

}

.social-icons a{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:var(--button-text);

    text-decoration:none;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    transition:all .35s ease;

}

.social-icons a:hover{

    background:var(--button-bg);

    border-color:var(--button-bg);

    color:var(--button-text);

    transform:
        translateY(-4px)
        scale(1.05);

    box-shadow:
        0 12px 25px color-mix(in srgb, var(--button-bg) 35%, transparent);

}
/* =====================================================
   MAIN HEADER
===================================================== */
/* ==========================================================
   MAIN HEADER
========================================================== */

.main-header{

    position:sticky;

    top:0;

    z-index:999;

    background:var(--navbar-bg);

    backdrop-filter:blur(20px);

    box-shadow:0 10px 40px var(--shadow-color);

    border-bottom:1px solid var(--border-color);

}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{

    padding:18px 0;

}

/* ==========================================================
   LOGO
========================================================== */

.navbar-brand{

    font-size:34px;

    font-weight:800;

    letter-spacing:-1px;

    color:var(--navbar-text) !important;

}

.logo-highlight{

    color:var(--primary-color);

    position:relative;

}

.logo-highlight::after{

    content:"";

    position:absolute;

    bottom:-2px;

    left:0;

    width:100%;

    height:4px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );

}

/* ==========================================================
   NAVIGATION
========================================================== */

.navbar-nav{

    gap:6px;

}

.nav-link{

    position:relative;

    color:var(--navbar-text) !important;

    font-size:15px;

    font-weight:600;

    padding:12px 16px !important;

    border-radius:12px;

    transition:.3s ease;

}

.nav-link:hover{

    color:var(--primary-color) !important;

    background:var(--section-bg);

}

.nav-link.active{

    color:var(--primary-color) !important;

    background:var(--section-bg);

}

/* ==========================================================
   UNDERLINE
========================================================== */

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:6px;

    width:0;

    height:3px;

    background:var(--primary-color);

    border-radius:10px;

    transition:.3s ease;

    transform:translateX(-50%);

}

.nav-link:hover::after,
.nav-link.active::after{

    width:45%;

}

/* ==========================================================
   DROPDOWN
========================================================== */

.dropdown-menu{

    border:none;

    border-radius:20px;

    padding:12px;

    min-width:220px;

    background:var(--body-bg);

    box-shadow:0 20px 50px var(--shadow-color);

}

.dropdown-item{

    padding:12px 15px;

    border-radius:12px;

    font-weight:500;

    color:var(--text-color);

    transition:.3s ease;

}

.dropdown-item:hover{

    background:var(--section-bg);

    color:var(--primary-color);

    padding-left:20px;

}

/* ==========================================================
   HEADER BUTTON
========================================================== */

.header-btn{

    text-decoration:none;

    color:var(--button-text);

    padding:13px 30px;

    border-radius:50px;

    font-weight:700;

    background:linear-gradient(
        135deg,
        var(--button-bg),
        var(--button-hover)
    );

    box-shadow:0 10px 25px color-mix(in srgb, var(--button-bg) 25%, transparent);

    transition:all .35s ease;

}

.header-btn:hover{

    color:var(--button-text);

    transform:
        translateY(-3px)
        scale(1.02);

    box-shadow:0 18px 35px color-mix(in srgb, var(--button-bg) 35%, transparent);

}

/* ==========================================================
   TOGGLER
========================================================== */

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}

.navbar-toggler:focus{

    box-shadow:none !important;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .navbar-collapse{

        margin-top:20px;

        padding-top:15px;

        border-top:1px solid var(--border-color);

    }

    .header-btn{

        display:block;

        text-align:center;

        margin-top:15px;

    }

}

@media(max-width:768px){

    .top-contact{

        flex-direction:column;

        gap:10px;

        text-align:center;

    }

    .social-icons{

        justify-content:center;

        margin-top:15px;

    }

    .navbar-brand{

        font-size:28px;

    }

    .nav-link{

        text-align:center;

    }

}
/*====================*
Slider 
=======================*/
/* =========================
   FULL WIDTH HERO SLIDER
========================= */
/* =====================================================
   HERO SLIDER
===================================================== */

.hero-slider{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
}

.hero-slider .carousel{
    width:100%;
}

/* Hero Images */

.hero-img{
    width:100%;
    height:85vh;
    object-fit:cover;
    object-position:center;
    transition:transform 8s ease;
}

.carousel-item.active .hero-img{
    transform:scale(1.05);
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    background:
        linear-gradient(
            120deg,
            rgba(0,0,0,.70),
            rgba(0,0,0,.35)
        );

    z-index:2;
}

/* Content */

.hero-content{
    max-width:760px;
    margin-left:8%;
    color:#fff;

    animation:heroFade .9s ease;
}

.hero-content h1{

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;

    line-height:1.15;

    margin-bottom:22px;

    color:#fff;

    text-shadow:
        0 8px 25px rgba(0,0,0,.45);
}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    margin-bottom:35px;

    max-width:650px;
}

/* Button */

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.3px;

    color:#fff;

    background:var(--primary-color);

    border:2px solid var(--primary-color);

    box-shadow:
        0 18px 35px rgba(0,0,0,.18);

    transition:all .35s ease;
}

.hero-btn:hover{

    color:#fff;

    background:var(--secondary-color);

    border-color:var(--secondary-color);

    transform:
        translateY(-4px)
        scale(1.03);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);
}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next{

    width:70px;

    opacity:0;

    transition:.35s ease;
}

.hero-slider:hover
.carousel-control-prev,

.hero-slider:hover
.carousel-control-next{

    opacity:1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background-color:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    background-size:40%;
}

/* Indicators */

.carousel-indicators{

    bottom:30px;
}

.carousel-indicators button{

    width:14px;

    height:14px;

    margin:0 6px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transition:.35s ease;
}

.carousel-indicators .active{

    width:42px;

    border-radius:50px;

    background:var(--primary-color);
}

/* Animation */

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px){

    .hero-img{

        height:70vh;
    }

    .hero-content{

        margin-left:6%;

        margin-right:6%;
    }

    .carousel-control-prev,
    .carousel-control-next{

        display:none;
    }
}

@media(max-width:768px){

    .hero-img{

        height:60vh;
    }

    .hero-overlay{

        justify-content:center;

        text-align:center;

        background:
            linear-gradient(
                rgba(0,0,0,.72),
                rgba(0,0,0,.50)
            );
    }

    .hero-content{

        margin:0 20px;
    }

    .hero-content h1{

        font-size:34px;
    }

    .hero-content p{

        font-size:15px;

        margin-bottom:28px;
    }

    .hero-btn{

        padding:14px 28px;

        width:100%;
    }

    .carousel-indicators{

        bottom:18px;
    }
}
/* =========================
   ABOUT SECTION (CLEAN WHITE)
========================= */
/* ==========================================================
   ABOUT SECTION
========================================================== */

.about-section{

    position:relative;

    padding:90px 0;

    background:var(--body-bg);

    overflow:hidden;

}

/* ==========================================================
   INFO CARDS
========================================================== */

.info-card{

    position:relative;

    background:var(--body-bg);

    padding:35px 28px;

    border-radius:22px;

    border:1px solid var(--border-color);

    box-shadow:0 12px 35px var(--shadow-color);

    text-align:center;

    height:100%;

    transition:all .4s ease;

    overflow:hidden;

}

/* Decorative Top Border */

.info-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s ease;

}

.info-card:hover::before{

    transform:scaleX(1);

}

.info-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px var(--shadow-color);

}

/* ==========================================================
   ICON
========================================================== */

.icon-box{

    width:72px;

    height:72px;

    margin:0 auto 22px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    box-shadow:0 18px 35px color-mix(in srgb, var(--primary-color) 30%, transparent);

    transition:all .35s ease;

}

.info-card:hover .icon-box{

    transform:
        rotate(10deg)
        scale(1.08);

}

/* ==========================================================
   TEXT
========================================================== */

.info-card h5{

    font-size:22px;

    font-weight:700;

    color:var(--text-color);

    margin-bottom:14px;

}

.info-card p{

    font-size:15px;

    line-height:1.8;

    color:var(--text-muted);

    margin:0;

}

/* ==========================================================
   ANIMATIONS
========================================================== */

.animate-up{

    opacity:0;

    transform:translateY(35px);

    animation:fadeUp .9s forwards;

}

.animate-fade-left{

    opacity:0;

    transform:translateX(-40px);

    animation:fadeLeft .9s forwards;

}

.animate-fade-right{

    opacity:0;

    transform:translateX(40px);

    animation:fadeRight .9s forwards;

}

/* Animation Delays */

.delay-1{

    animation-delay:.2s;

}

.delay-2{

    animation-delay:.4s;

}

.delay-3{

    animation-delay:.6s;

}

.delay-4{

    animation-delay:.8s;

}

/* ==========================================================
   KEYFRAMES
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .about-section{

        padding:70px 0;

    }

}

@media(max-width:768px){

    .info-card{

        margin-bottom:24px;

        padding:30px 22px;

    }

    .icon-box{

        width:65px;

        height:65px;

        font-size:26px;

    }

    .info-card h5{

        font-size:20px;

    }

    .info-card p{

        font-size:14px;

    }

}
/* =====================================
   WHY CHOOSE US
===================================== */

/* ==========================================================
   WHY CHOOSE US SECTION
========================================================== */

.why-us-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:var(--section-bg);

}

/* Decorative Background */

.why-us-section::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
        radial-gradient(
            color-mix(in srgb, var(--primary-color) 18%, transparent),
            transparent 70%
        );

    z-index:0;

}

.why-us-section::after{

    content:"";

    position:absolute;

    bottom:-200px;

    left:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            color-mix(in srgb, var(--secondary-color) 15%, transparent),
            transparent 70%
        );

    z-index:0;

}

/* ==========================================================
   WRAPPER
========================================================== */

.why-wrapper{

    position:relative;

    z-index:2;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.75);

    border-radius:32px;

    padding:60px;

    box-shadow:0 25px 70px var(--shadow-color);

}

/* ==========================================================
   IMAGE
========================================================== */

.why-image{

    position:relative;

    overflow:hidden;

    border-radius:28px;

}

.why-image img{

    width:100%;

    border-radius:28px;

    transition:transform .7s ease;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.why-image:hover img{

    transform:scale(1.06);

}

/* Floating Badge */

.floating-badge{

    position:absolute;

    left:25px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    border-radius:50px;

    font-weight:700;

    color:var(--text-color);

    box-shadow:0 15px 35px var(--shadow-color);

}

.floating-badge i{

    color:var(--primary-color);

    font-size:20px;

}

/* ==========================================================
   CONTENT
========================================================== */

.why-description{

    font-size:17px;

    line-height:1.9;

    color:var(--text-muted);

    margin-bottom:40px;

}

/* ==========================================================
   FEATURE CARDS
========================================================== */

.why-card{

    position:relative;

    overflow:hidden;

    background:var(--body-bg);

    border:1px solid var(--border-color);

    border-radius:24px;

    padding:32px;

    height:100%;

    transition:all .35s ease;

    box-shadow:0 12px 35px var(--shadow-color);

}

/* Animated Top Border */

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px var(--shadow-color);

}

/* ==========================================================
   ICON
========================================================== */

.why-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

    border-radius:20px;

    color:#fff;

    font-size:30px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    box-shadow:
        0 18px 35px color-mix(in srgb, var(--primary-color) 30%, transparent);

    transition:all .35s ease;

}

.why-card:hover .why-icon{

    transform:
        rotate(8deg)
        scale(1.08);

}

/* ==========================================================
   TEXT
========================================================== */

.why-card h5{

    font-size:22px;

    font-weight:700;

    color:var(--text-color);

    margin-bottom:14px;

}

.why-card p{

    margin:0;

    line-height:1.8;

    color:var(--text-muted);

    font-size:15px;

}

/* ==========================================================
   CAROUSEL CONTROLS
========================================================== */

.custom-control{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--body-bg) !important;

    border:1px solid var(--border-color);

    opacity:1;

    top:auto;

    bottom:-90px;

    box-shadow:0 12px 30px var(--shadow-color);

    transition:.35s;

}

.custom-control:hover{

    background:var(--primary-color) !important;

    border-color:var(--primary-color);

    transform:translateY(-3px);

}

.custom-control i{

    font-size:24px;

    color:var(--primary-color);

    transition:.3s;

}

.custom-control:hover i{

    color:#fff;

}

.carousel-control-prev{

    left:auto;

    right:85px;

}

.carousel-control-next{

    right:10px;

}

/* ==========================================================
   ANIMATION
========================================================== */

.carousel-item{

    animation:fadeSlide .8s ease;

}

@keyframes fadeSlide{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:991px){

    .why-us-section{

        padding:90px 0;

    }

    .why-wrapper{

        padding:40px;

    }

    .custom-control{

        display:none;

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

    .why-us-section{

        padding:70px 0;

    }

    .why-wrapper{

        padding:28px;

        border-radius:24px;

    }

    .floating-badge{

        left:15px;

        bottom:15px;

        padding:10px 18px;

        font-size:13px;

    }

    .why-description{

        font-size:15px;

    }

    .why-card{

        margin-bottom:22px;

        padding:28px 24px;

    }

    .why-icon{

        width:65px;

        height:65px;

        font-size:26px;

    }

    .why-card h5{

        font-size:20px;

    }

    .why-card p{

        font-size:14px;

    }

}
/* ==========================
   FACILITIES
========================== */
/* ==========================================================
   FACILITIES SECTION
========================================================== */

.facilities-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:var(--body-bg);

}

/* Decorative Background */

.facilities-section::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            color-mix(in srgb, var(--primary-color) 12%, transparent),
            transparent 70%
        );

    z-index:0;

}

.facilities-section::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-180px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:
        radial-gradient(
            color-mix(in srgb, var(--secondary-color) 12%, transparent),
            transparent 70%
        );

    z-index:0;

}

/* ==========================================================
   FACILITY CARD
========================================================== */

.facility-card{

    position:relative;

    overflow:hidden;

    border-radius:26px;

    height:340px;

    cursor:pointer;

    background:var(--body-bg);

    border:1px solid var(--border-color);

    box-shadow:0 18px 40px var(--shadow-color);

    transition:all .45s ease;

    z-index:2;

}

.facility-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px var(--shadow-color);

}

/* ==========================================================
   IMAGE
========================================================== */

.facility-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.facility-card:hover img{

    transform:scale(1.12);

}

/* ==========================================================
   OVERLAY
========================================================== */

.facility-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    color:#fff;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88) 5%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.12) 100%
        );

    transition:all .4s ease;

}

.facility-card:hover .facility-overlay{

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92),
            rgba(0,0,0,.50),
            rgba(0,0,0,.08)
        );

}

/* ==========================================================
   ICON
========================================================== */

.facility-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    border-radius:20px;

    color:#fff;

    font-size:30px;

    background:
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );

    box-shadow:
        0 18px 35px color-mix(in srgb, var(--primary-color) 30%, transparent);

    transition:all .35s ease;

}

.facility-card:hover .facility-icon{

    transform:
        rotate(8deg)
        scale(1.08);

}

/* ==========================================================
   TEXT
========================================================== */

.facility-overlay h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:12px;

    color:#fff;

    text-shadow:0 3px 12px rgba(0,0,0,.35);

}

.facility-overlay p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:rgba(255,255,255,.90);

}

/* ==========================================================
   ANIMATION
========================================================== */

.facility-card{

    animation:facilityFade .8s ease;

}

@keyframes facilityFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .facilities-section{

        padding:80px 0;

    }

    .facility-card{

        height:300px;

    }

}

@media(max-width:768px){

    .facilities-section{

        padding:70px 0;

    }

    .facility-card{

        height:280px;

        border-radius:22px;

        margin-bottom:24px;

    }

    .facility-overlay{

        padding:25px;

    }

    .facility-icon{

        width:62px;

        height:62px;

        font-size:26px;

        margin-bottom:18px;

    }

    .facility-overlay h4{

        font-size:22px;

    }

    .facility-overlay p{

        font-size:14px;

        line-height:1.7;

    }

}



/* =================================
ABOUT US
===================================*/
/* ==========================================================
   ABOUT HERO
========================================================== */
.about-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--header-bg, #081c3a) 0%,
            var(--header-bg, #081c3a) 70%,
            var(--primary-color, #0d6efd) 100%
        );

}

/* Top Right Glow */

.about-hero::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(13,110,253,.18);

    filter:blur(90px);

    pointer-events:none;

}

/* Bottom Left Glow */

.about-hero::after{

    content:"";

    position:absolute;

    bottom:-220px;

    left:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(80px);

    pointer-events:none;

}
.hero-title{

    position:relative;

    z-index:2;

    font-size:60px;

    font-weight:800;

    margin:20px 0;

    line-height:1.2;

    letter-spacing:-1px;

}

.hero-description{

    position:relative;

    z-index:2;

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}

/* ==========================================================
   ABOUT SECTION
========================================================== */

.about-section{

    padding:100px 0;

    background:var(--body-bg,#ffffff);

}

.about-content h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:25px;

    color:var(--heading-color,#212529);

}

.about-content p{

    color:var(--text-color,#64748b);

    line-height:1.9;

}

/* ==========================================================
   MISSION SECTION
========================================================== */

.mission-section{

    padding:90px 0;

    background:var(--section-bg,#f8fafc);

}

.mission-card{

    height:100%;

    background:var(--card-bg,#ffffff);

    border:1px solid var(--border-color,#e9ecef);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px var(--shadow-color,rgba(0,0,0,.06));

    transition:.35s ease;

}

.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.mission-card h3{

    padding:25px;

    font-weight:700;

    color:var(--heading-color,#212529);

}

.mission-card p{

    padding:0 25px 25px;

    color:var(--text-color,#64748b);

    line-height:1.8;

}

/* ==========================================================
   WHY US
========================================================== */

.why-us-section{

    padding:100px 0;

    background:var(--body-bg,#ffffff);

}

/* ==========================================================
   STATS
========================================================== */

.stats-section{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary-color,#0d6efd),
            var(--secondary-color,#2563eb)
        );

}

.stats-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(255,255,255,.04);

}

.stat-box{

    position:relative;

    z-index:2;

}

.stat-box h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-box p{

    margin:0;

    opacity:.92;

    font-size:16px;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

    .about-hero{

        padding:90px 0;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-description{

        font-size:16px;

    }

    .about-content{

        margin-top:40px;

        text-align:center;

    }

    .about-content h2{

        font-size:34px;

    }

    .mission-card{

        margin-bottom:20px;

    }

}



/* ==========================================================
   SERVICES
========================================================== */
/* ==========================================================
   SERVICES SECTION
========================================================== */

/* ==========================================================
   PAGE HERO
========================================================== */

.page-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0 90px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--header-bg,#081c3a) 0%,
            var(--header-bg,#081c3a) 65%,
            var(--primary-color,#0d6efd) 100%
        );

}

/* Blue Glow */

.page-hero::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(13,110,253,.15);

    filter:blur(80px);

    pointer-events:none;

}

/* Bottom Glow */

.page-hero::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-150px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(70px);

    pointer-events:none;

}

/* ==========================================================
   CONTENT
========================================================== */

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero .section-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#fff;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

}

.page-hero .hero-title{

    margin:25px 0 20px;

    color:#fff;

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

}

.page-hero .hero-description{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

/* ==========================================================
   BREADCRUMB
========================================================== */

.hero-breadcrumb{

    margin-top:35px;

}

.hero-breadcrumb .breadcrumb{

    justify-content:center;

    margin-bottom:0;

    padding:0;

    background:transparent;

}

.hero-breadcrumb .breadcrumb-item{

    font-size:15px;

    font-weight:500;

    color:rgba(255,255,255,.75);

}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before{

    color:rgba(255,255,255,.45);

}

.hero-breadcrumb a{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    transition:.35s ease;

}

.hero-breadcrumb a:hover{

    color:var(--primary-color,#60a5fa);

}

.hero-breadcrumb .breadcrumb-item.active{

    color:#ffffff;

    font-weight:600;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .page-hero{

        padding:100px 0 80px;

    }

    .page-hero .hero-title{

        font-size:46px;

    }

}

@media(max-width:768px){

    .page-hero{

        padding:90px 0 70px;

    }

    .page-hero::before{

        width:380px;

        height:380px;

    }

    .page-hero::after{

        width:300px;

        height:300px;

    }

    .page-hero .hero-title{

        font-size:36px;

        line-height:1.25;

    }

    .page-hero .hero-description{

        font-size:16px;

        line-height:1.8;

    }

    .page-hero .section-tag{

        font-size:12px;

        padding:7px 16px;

    }

    .hero-breadcrumb{

        margin-top:25px;

    }

    .hero-breadcrumb .breadcrumb-item{

        font-size:14px;

    }

}

.services-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:var(--section-bg,#f8fafc);

}

/* Top Accent */

.services-section::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:240px;

    height:5px;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary-color,#0d6efd),
            var(--secondary-color,#2563eb),
            var(--primary-color,#0d6efd),
            transparent
        );

}

/* Decorative Glow */

.services-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    right:-220px;

    top:-180px;

    background:rgba(13,110,253,.06);

    filter:blur(80px);

    pointer-events:none;

}

/* ==========================================================
   SERVICE CARD
========================================================== */

.service-box{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:40px 35px;

    border-radius:24px;

    background:var(--card-bg,#ffffff);

    border:1px solid var(--border-color,#e5e7eb);

    transition:all .4s ease;

    box-shadow:
        0 15px 35px rgba(15,23,42,.06);

}

.service-box::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:
        linear-gradient(
            90deg,
            var(--primary-color,#0d6efd),
            var(--secondary-color,#2563eb)
        );

}

.service-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(13,110,253,.03),
            transparent 55%
        );

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.service-box:hover{

    transform:
        translateY(-12px);

    border-color:rgba(13,110,253,.18);

    box-shadow:
        0 25px 50px rgba(13,110,253,.12);

}

.service-box:hover::after{

    opacity:1;

}

/* ==========================================================
   ICON
========================================================== */

.service-icon{

    width:82px;

    height:82px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    margin-bottom:25px;

    font-size:34px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary-color,#0d6efd),
            var(--secondary-color,#2563eb)
        );

    box-shadow:
        0 18px 35px rgba(13,110,253,.25);

    transition:all .35s ease;

}

.service-box:hover .service-icon{

    transform:
        rotate(-6deg)
        scale(1.08);

}

/* ==========================================================
   CONTENT
========================================================== */

.service-box h3{

    font-size:24px;

    font-weight:800;

    color:var(--heading-color,#111827);

    margin-bottom:15px;

}

.service-box p{

    color:var(--text-color,#64748b);

    line-height:1.9;

    margin-bottom:25px;

}

.service-box a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:700;

    color:var(--primary-color,#0d6efd);

    text-decoration:none;

    transition:.35s ease;

}

.service-box a i{

    transition:.35s ease;

}

.service-box:hover a{

    color:var(--secondary-color,#2563eb);

}

.service-box:hover a i{

    transform:translateX(6px);

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .services-section{

        padding:90px 0;

    }

}

@media(max-width:768px){

    .services-section{

        padding:80px 0;

    }

    .service-box{

        padding:30px 25px;

        border-radius:20px;

    }

    .service-icon{

        width:72px;

        height:72px;

        font-size:28px;

    }

    .service-box h3{

        font-size:22px;

    }

}



/* ==========================================================
   ADMISSION
========================================================== */
/* ==========================================================
   SECTION UTILITIES
========================================================== */

.section-tag{

    display:inline-block;

    margin-bottom:15px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--primary-color);

}

.section-title{

    margin-bottom:15px;

    font-size:42px;

    font-weight:800;

    letter-spacing:-1px;

    color:var(--heading-color);

}

.title-border{

    width:80px;

    height:4px;

    margin:0 auto 25px;

    border-radius:50px;

    background:var(--primary-color);

}

.title-border-left{

    width:80px;

    height:4px;

    margin:0 0 25px;

    border-radius:50px;

    background:var(--primary-color);

}

.section-description{

    max-width:700px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:var(--text-color);

}

/* ==========================================================
   ADMISSION OVERVIEW
========================================================== */

.admission-overview{

    padding:100px 0;

    background:var(--light-bg);

}

.overview-card{

    height:100%;

    padding:50px 40px;

    border-radius:24px;

    background:#fff;

    border:1px solid var(--border-color);

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.overview-card:hover{

    transform:translateY(-8px);

    border-color:rgba(13,110,253,.15);

    box-shadow:0 22px 45px rgba(15,23,42,.10);

}

.overview-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:20px;

    font-size:28px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    box-shadow:0 12px 30px rgba(13,110,253,.25);

}

.overview-card h3{

    margin-bottom:15px;

    font-size:22px;

    font-weight:700;

    color:var(--heading-color);

}

.overview-card p{

    margin:0;

    line-height:1.8;

    color:var(--text-color);

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

    .section-title{

        font-size:34px;

    }

    .section-description{

        font-size:16px;

    }

    .admission-overview{

        padding:80px 0;

    }

    .overview-card{

        padding:35px 25px;

    }

}

.page-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0 90px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--header-bg,#081c3a) 0%,
            var(--header-bg,#081c3a) 72%,
            var(--primary-color,#0d6efd) 100%
        );

}

/* Premium Blue Glow */

.page-hero::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-180px;

    width:550px;

    height:550px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(13,110,253,.20) 0%,
        rgba(13,110,253,.08) 45%,
        transparent 75%
    );

    filter:blur(90px);

    pointer-events:none;

}

/* Bottom Accent Glow */

.page-hero::after{

    content:"";

    position:absolute;

    bottom:-220px;

    left:-180px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(255,255,255,.05) 0%,
        rgba(255,255,255,.02) 45%,
        transparent 80%
    );

    filter:blur(80px);

    pointer-events:none;

}

/* Keep Content Above Background */

.page-hero .container{

    position:relative;

    z-index:2;

}

/* ==========================================================
   SECTION TAG
========================================================== */

.page-hero .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#ffffff;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

}

/* ==========================================================
   HERO TITLE
========================================================== */

.page-hero .hero-title{

    margin:25px 0 20px;

    color:#fff;

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

    text-shadow:
        0 4px 20px rgba(0,0,0,.20);

}

/* ==========================================================
   HERO DESCRIPTION
========================================================== */

.page-hero .hero-description{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

/* ==========================================================
   BREADCRUMB
========================================================== */

.hero-breadcrumb{

    margin-top:35px;

}

.hero-breadcrumb .breadcrumb{

    justify-content:center;

    margin-bottom:0;

    background:transparent;

}

.hero-breadcrumb .breadcrumb-item{

    color:rgba(255,255,255,.72);

    font-size:15px;

    font-weight:500;

}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before{

    color:rgba(255,255,255,.40);

}

.hero-breadcrumb a{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    transition:all .3s ease;

}

.hero-breadcrumb a:hover{

    color:var(--primary-color,#60a5fa);

}

.hero-breadcrumb .breadcrumb-item.active{

    color:#ffffff;

    font-weight:600;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .page-hero{

        padding:100px 0 80px;

    }

    .page-hero .hero-title{

        font-size:46px;

    }

}

@media(max-width:768px){

    .page-hero{

        padding:90px 0 70px;

    }

    .page-hero::before{

        width:380px;

        height:380px;

    }

    .page-hero::after{

        width:300px;

        height:300px;

    }

    .page-hero .section-tag{

        padding:7px 16px;

        font-size:12px;

    }

    .page-hero .hero-title{

        font-size:36px;

        line-height:1.25;

    }

    .page-hero .hero-description{

        font-size:16px;

        line-height:1.8;

    }

    .hero-breadcrumb{

        margin-top:25px;

    }

    .hero-breadcrumb .breadcrumb-item{

        font-size:14px;

    }

}


/* ==========================================================
   ADMISSION PROCESS
========================================================== */

.admission-process{

    position:relative;

    padding:100px 0;

    background:var(--light-bg);

}

/* Top Accent */

.admission-process::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:220px;

    height:5px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color),
        transparent
    );

}

/* ==========================================================
   PROCESS CARD
========================================================== */

.process-step{

    position:relative;

    height:100%;

    padding:40px 30px;

    text-align:center;

    border-radius:24px;

    background:#fff;

    border:1px solid var(--border-color);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.process-step:hover{

    transform:translateY(-10px);

    border-color:rgba(13,110,253,.15);

    box-shadow:var(--shadow-lg);

}

/* ==========================================================
   STEP NUMBER
========================================================== */

.step-number{

    position:relative;

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    font-size:24px;

    font-weight:800;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    box-shadow:0 12px 28px rgba(13,110,253,.25);

}

.step-number::after{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px dashed var(--primary-color);

    opacity:.35;

    animation:spin 20s linear infinite;

}

/* ==========================================================
   TEXT
========================================================== */

.process-step h4{

    margin-bottom:15px;

    font-size:21px;

    font-weight:700;

    color:var(--heading-color);

}

.process-step p{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:var(--text-color);

}

/* ==========================================================
   CONNECTOR
========================================================== */

.process-connector{

    position:absolute;

    top:50%;

    right:-30px;

    width:60px;

    height:3px;

    transform:translateY(-50%);

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

    z-index:2;

}

.process-connector::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    border-left:10px solid var(--secondary-color);

    border-top:6px solid transparent;

    border-bottom:6px solid transparent;

}

/* ==========================================================
   ANIMATION
========================================================== */

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .process-connector{

        display:none;

    }

}

@media(max-width:768px){

    .admission-process{

        padding:80px 0;

    }

    .process-step{

        padding:35px 25px;

    }

    .step-number{

        width:60px;

        height:60px;

        font-size:22px;

    }

    .process-step h4{

        font-size:19px;

    }

}

/* ==========================================================
   REQUIREMENTS SECTION
========================================================== */

.requirements-section{

    padding:100px 0;

    background:#fff;

}

.req-card{

    height:100%;

    padding:40px;

    border-radius:24px;

    background:var(--light-bg);

    border:1px solid var(--border-color);

    border-left:5px solid var(--primary-color);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.req-card:hover{

    transform:translateY(-8px);

    border-left-color:var(--secondary-color);

    box-shadow:var(--shadow-lg);

}

.req-card h4{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:22px;

    font-size:22px;

    font-weight:700;

    color:var(--heading-color);

}

.req-card h4 i{

    color:var(--primary-color);

    font-size:24px;

}

.req-list{

    list-style:none;

    padding:0;

    margin:0;

}

.req-list li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    padding:12px 0;

    color:var(--text-color);

    line-height:1.8;

    border-bottom:1px solid var(--border-color);

}

.req-list li:last-child{

    border-bottom:none;

}

.req-list li i{

    color:var(--secondary-color);

    font-size:18px;

    margin-top:4px;

    flex-shrink:0;

}

/* ==========================================================
   FEES SECTION
========================================================== */

.fees-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:linear-gradient(
        135deg,
        var(--footer-bg) 0%,
        var(--header-bg) 65%,
        var(--primary-color) 100%
    );

}

/* Background Glow */

.fees-section::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(80px);

}

.fees-section::after{

    content:"";

    position:absolute;

    bottom:-180px;

    left:-150px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(70px);

}

.fees-section .container{

    position:relative;

    z-index:2;

}

.fees-section .section-title,

.fees-section .section-description{

    color:#fff;

}

.fees-section .title-border{

    background:var(--secondary-color);

}

/* ==========================================================
   FEE CARD
========================================================== */

.fee-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:50px 35px;

    text-align:center;

    border-radius:28px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    transition:var(--transition);

    box-shadow:var(--shadow-md);

}

.fee-card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.09);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 30px 60px rgba(0,0,0,.25);

}

/* Featured Card */

.fee-card.featured{

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    border:none;

    transform:scale(1.05);

}

.fee-card.featured:hover{

    transform:scale(1.08) translateY(-12px);

}

/* ==========================================================
   BADGE
========================================================== */

.fee-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:7px 20px;

    margin-bottom:22px;

    border-radius:50px;

    background:rgba(255,255,255,.14);

    color:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.fee-card.featured .fee-badge{

    background:rgba(255,255,255,.22);

}

/* ==========================================================
   PRICE
========================================================== */

.fee-grade{

    margin-bottom:10px;

    font-size:24px;

    font-weight:700;

    color:#fff;

}

.fee-amount{

    margin-bottom:8px;

    font-size:50px;

    font-weight:800;

    color:#fff;

    line-height:1;

}

.fee-amount span{

    font-size:18px;

    font-weight:500;

    color:rgba(255,255,255,.75);

}

.fee-period{

    margin-bottom:30px;

    font-size:14px;

    color:rgba(255,255,255,.70);

}

/* ==========================================================
   FEATURES
========================================================== */

.fee-features{

    list-style:none;

    padding:0;

    margin:0 0 35px;

    text-align:left;

}

.fee-features li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    color:rgba(255,255,255,.90);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.fee-features li:last-child{

    border-bottom:none;

}

.fee-features li i{

    color:var(--secondary-color);

    font-size:18px;

}

/* ==========================================================
   BUTTON
========================================================== */

.fee-btn{

    display:block;

    width:100%;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    transition:var(--transition);

}

.fee-btn:hover{

    background:#fff;

    color:var(--header-bg);

}

.fee-card.featured .fee-btn{

    background:#fff;

    color:var(--primary-color);

    border:none;

}

.fee-card.featured .fee-btn:hover{

    background:var(--header-bg);

    color:#fff;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

    .fee-card.featured{

        transform:none;

    }

    .fee-card.featured:hover{

        transform:translateY(-10px);

    }

}

@media(max-width:768px){

    .requirements-section,

    .fees-section{

        padding:80px 0;

    }

    .req-card{

        padding:30px;

    }

    .fee-card{

        padding:40px 25px;

    }

    .fee-amount{

        font-size:42px;

    }

}

/* ==========================================================
   IMPORTANT DATES
========================================================== */

.dates-section{

    padding:100px 0;

    background:#fff;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:0 auto;

}

.timeline::before{

    content:"";

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:3px;

    transform:translateX(-50%);

    background:linear-gradient(
        to bottom,
        var(--primary-color),
        var(--secondary-color)
    );

}

.timeline-item{

    position:relative;

    padding:0 0 50px;

}

.timeline-item:last-child{

    padding-bottom:0;

}

.timeline-content{

    width:45%;

    position:relative;

    padding:30px;

    border-radius:24px;

    background:var(--light-bg);

    border:1px solid var(--border-color);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.timeline-content:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.timeline-item:nth-child(odd) .timeline-content{

    margin-left:auto;

    margin-right:55%;

}

.timeline-item:nth-child(even) .timeline-content{

    margin-left:55%;

}

.timeline-dot{

    position:absolute;

    left:50%;

    top:35px;

    transform:translateX(-50%);

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--primary-color);

    border:4px solid #fff;

    box-shadow:0 0 0 5px rgba(13,110,253,.20);

    z-index:3;

}

.timeline-date{

    display:inline-flex;

    align-items:center;

    padding:7px 18px;

    margin-bottom:15px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    color:#fff;

    font-size:13px;

    font-weight:700;

}

.timeline-content h4{

    margin-bottom:10px;

    font-size:21px;

    font-weight:700;

    color:var(--heading-color);

}

.timeline-content p{

    margin:0;

    color:var(--text-color);

    line-height:1.8;

}

/* ==========================================================
   FAQ SECTION
========================================================== */

.faq-section{

    padding:100px 0;

    background:var(--light-bg);

}

.faq-accordion{

    max-width:900px;

    margin:0 auto;

}

.accordion-item{

    overflow:hidden;

    margin-bottom:18px;

    border:none;

    border-radius:18px !important;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.accordion-item:hover{

    box-shadow:var(--shadow-md);

}

.accordion-button{

    padding:25px 30px;

    background:#fff;

    color:var(--heading-color);

    font-size:17px;

    font-weight:700;

    border:none;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:#fff;

    color:var(--primary-color);

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-button::after{

    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}

.accordion-body{

    padding:0 30px 28px;

    color:var(--text-color);

    line-height:1.8;

}

/* ==========================================================
   CONTACT CTA
========================================================== */

.contact-cta{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:linear-gradient(
        135deg,
        var(--header-bg) 0%,
        var(--primary-color) 100%
    );

}

.contact-cta::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(80px);

}

.contact-cta::after{

    content:"";

    position:absolute;

    bottom:-220px;

    left:-150px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(80px);

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

}

.cta-content h2{

    margin-bottom:20px;

    font-size:44px;

    font-weight:800;

    color:#fff;

}

.cta-content p{

    max-width:650px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    background:#fff;

    color:var(--primary-color);

    transition:var(--transition);

    box-shadow:var(--shadow-md);

}

.cta-btn-primary:hover{

    color:var(--header-bg);

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);

}

.cta-btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    color:#fff;

    border:2px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    transition:var(--transition);

}

.cta-btn-secondary:hover{

    color:#fff;

    background:rgba(255,255,255,.12);

    border-color:#fff;

    transform:translateY(-4px);

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

    .timeline::before{

        left:25px;

    }

    .timeline-dot{

        left:25px;

    }

    .timeline-content{

        width:calc(100% - 70px);

        margin-left:70px !important;

        margin-right:0 !important;

    }

}

@media(max-width:768px){

    .dates-section,

    .faq-section,

    .contact-cta{

        padding:80px 0;

    }

    .cta-content h2{

        font-size:34px;

    }

    .cta-content p{

        font-size:16px;

    }

    .cta-btn-primary,

    .cta-btn-secondary{

        width:100%;

        justify-content:center;

    }

}

@media(max-width:768px){

    .admission-info-section{

        padding:80px 0;

    }

    .admission-card{

        padding:30px;

    }

    .admission-cta{

        padding:35px 25px;

        text-align:center;

    }

    .cta-btn{

        margin-top:25px;

    }

}

/*==================================================
  ADMISSION INFORMATION
==================================================*/

.admission-info-section{

    position:relative;

    overflow:hidden;

    z-index:1;

    padding:120px 0;

    background-color:var(--header-bg, #07152f);

    background-image:
        linear-gradient(
            135deg,
            var(--header-bg, #07152f) 0%,
            var(--primary-color, #0d6efd) 65%,
            var(--secondary-color, #20c997) 100%
        );

}

/* Decorative Background */

.admission-info-section::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    filter:blur(35px);

    z-index:0;

}

.admission-info-section::after{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(45px);

    z-index:0;

}

/* Ensure content stays above decorations */

.admission-info-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
SECTION HEADER
==================================================*/

.admission-info-section .section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#fff;

    backdrop-filter:blur(10px);

}

.admission-info-section .section-title{

    color:#fff;

}

.admission-info-section .section-description{

    color:rgba(255,255,255,.88);

}

.admission-info-section .title-border{

    background:#fff;

}

/*==================================================
CARDS
==================================================*/

.admission-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:40px 35px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    transition:all .4s ease;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

}

.admission-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:
        linear-gradient(
            90deg,
            var(--secondary-color,#20c997),
            #ffffff,
            var(--primary-color,#0d6efd)
        );

}

.admission-card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.14);

    box-shadow:
        0 25px 55px rgba(0,0,0,.28);

}

/*==================================================
ICON
==================================================*/

.card-icon{

    width:85px;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:24px;

    font-size:34px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--secondary-color,#20c997),
            var(--primary-color,#0d6efd)
        );

    box-shadow:
        0 15px 30px rgba(0,0,0,.18);

    transition:all .35s ease;

}

.admission-card:hover .card-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*==================================================
TEXT
==================================================*/

.admission-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.admission-card p{

    margin:0;

    color:rgba(255,255,255,.88);

    line-height:1.9;

}

/*==================================================
LIST
==================================================*/

.admission-list{

    list-style:none;

    margin:0;

    padding:0;

}

.admission-list li{

    position:relative;

    padding:10px 0 10px 30px;

    color:rgba(255,255,255,.90);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.admission-list li:last-child{

    border-bottom:none;

}

.admission-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:10px;

    color:#7dd3fc;

    font-weight:700;

}

/*==================================================
CTA
==================================================*/

/*==================================================
  CONTACT CTA
==================================================*/

.contact-cta{
    position:relative;
    overflow:hidden;
    z-index:1;

    padding:110px 0;

    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--primary-color) 10%, #ffffff),
            color-mix(in srgb, var(--secondary-color) 12%, #ffffff)
        );

    border-top:1px solid rgba(0,0,0,.05);
    border-bottom:1px solid rgba(0,0,0,.05);
}

/* Decorative Background */

.contact-cta::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-220px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255,255,255,.65),
            transparent 70%
        );

}

.contact-cta::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-150px;
    bottom:-180px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255,255,255,.45),
            transparent 70%
        );

}

.contact-cta .container{
    position:relative;
    z-index:2;
}

/*=============================================
CONTENT
=============================================*/

.cta-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.cta-content h2{

    color:var(--heading-color);

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}

.cta-content p{

    color:var(--text-color);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:0 auto 40px;

}

/*=============================================
BUTTONS
=============================================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary */

.cta-btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );

    box-shadow:
        0 18px 35px rgba(0,0,0,.12);

    transition:all .35s ease;

}

.cta-btn-primary:hover{

    color:#fff;

    transform:
        translateY(-5px);

    box-shadow:
        0 25px 45px rgba(0,0,0,.18);

}

/* Secondary */

.cta-btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    color:var(--primary-color);

    background:#fff;

    border:2px solid rgba(0,0,0,.05);

    transition:all .35s ease;

}

.cta-btn-secondary:hover{

    background:var(--primary-color);

    color:#fff;

    border-color:var(--primary-color);

    transform:
        translateY(-5px);

}

/*=============================================
MOBILE
=============================================*/

@media(max-width:768px){

    .contact-cta{

        padding:80px 0;

    }

    .cta-content h2{

        font-size:34px;

    }

    .cta-content p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-btn-primary,
    .cta-btn-secondary{

        width:100%;
        justify-content:center;

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .admission-info-section{

        padding:90px 0;

    }

    .admission-cta{

        padding:35px;

        text-align:center;

    }

}

@media(max-width:768px){

    .admission-card{

        padding:30px;

    }

    .card-icon{

        width:70px;

        height:70px;

        font-size:28px;

    }

    .admission-cta{

        padding:30px;

    }

    .admission-cta h3{

        font-size:28px;

    }

}


/*=================================
CAREER 
==================================*/

/* =====================================
   CAREER PAGE
===================================== */
/*==================================================
CAREER PAGE
==================================================*/

.career-hero{
    padding:100px 0;
    background:var(--light-bg);
    position:relative;
    overflow:hidden;
}

.career-hero::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    filter:blur(60px);
}

.career-hero::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(13,110,253,.05);

    filter:blur(50px);
}

.career-hero .container{
    position:relative;
    z-index:2;
}

/*==================================================
CAREER & JOB CARDS
==================================================*/

.career-card,
.job-card{

    position:relative;

    background:var(--card-bg);

    border:1px solid var(--border-color);

    border-radius:28px;

    padding:40px 35px;

    height:100%;

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:
        0 15px 35px rgba(0,0,0,.06);

}

.career-card::before,
.job-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );

}

.career-card:hover,
.job-card:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 45px rgba(0,0,0,.12);

}

/*==================================================
ICONS
==================================================*/

.career-card i{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:22px;

    font-size:34px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    box-shadow:
        0 12px 25px rgba(0,0,0,.15);

}

.career-card:hover i{

    transform:
        rotate(-8deg)
        scale(1.05);

    transition:.35s;

}

/*==================================================
TEXT
==================================================*/

.career-card h4,
.job-card h4{

    font-size:24px;

    font-weight:700;

    color:var(--heading-color);

    margin-bottom:18px;

}

.career-card p,
.job-card p{

    color:var(--text-muted);

    line-height:1.9;

    margin:0;

}

/*==================================================
CALL TO ACTION
==================================================*/

.career-cta{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

}

.career-cta::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-150px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    filter:blur(45px);

}

.career-cta::after{

    content:"";

    position:absolute;

    bottom:-200px;
    left:-150px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    filter:blur(55px);

}

.career-cta .container{

    position:relative;
    z-index:2;

}

/*==================================================
SECTION TAG
==================================================*/

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(var(--primary-rgb), .08);

    color:var(--primary-color);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .career-hero{

        padding:80px 0;

    }

    .career-card,
    .job-card{

        padding:30px;

    }

    .career-card i{

        width:70px;
        height:70px;

        font-size:30px;

    }

}

/*===========================================================\
GALLERY
============================================================*\
/*==================================================
GALLERY SECTION
==================================================*/

.gallery-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:var(--light-bg);

}

.gallery-section::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    filter:blur(60px);

}

.gallery-section::after{

    content:"";

    position:absolute;

    bottom:-180px;
    left:-180px;

    width:360px;
    height:360px;

    border-radius:50%;

    background:rgba(13,110,253,.05);

    filter:blur(55px);

}

.gallery-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
FILTER BUTTONS
==================================================*/

.gallery-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:50px;

}

.filter-btn{

    border:1px solid var(--border-color);

    padding:12px 30px;

    border-radius:50px;

    background:var(--card-bg);

    color:var(--heading-color);

    font-weight:600;

    transition:all .35s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,.05);

}

.filter-btn:hover,
.filter-btn.active{

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    color:#fff;

    border-color:transparent;

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.15);

}

/*==================================================
GALLERY CARD
==================================================*/

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:var(--card-bg);

    border:1px solid var(--border-color);

    cursor:pointer;

    transition:all .4s ease;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.15);

}

.gallery-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:transform .6s ease;

}

.gallery-card:hover img{

    transform:scale(1.1);

}

/*==================================================
OVERLAY
==================================================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:all .4s ease;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.25),
        transparent
    );

}

.gallery-card:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

    color:#fff;

}

.gallery-overlay p{

    margin:0;

    color:rgba(255,255,255,.88);

    line-height:1.7;

}

/*==================================================
ANIMATION
==================================================*/

.gallery-item{

    transition:all .35s ease;

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .gallery-section{

        padding:80px 0;

    }

    .gallery-filter{

        gap:10px;

    }

    .filter-btn{

        padding:10px 22px;

        font-size:14px;

    }

    .gallery-card{

        border-radius:22px;

    }

    .gallery-card img{

        height:240px;

    }

    .gallery-overlay{

        padding:20px;

    }

    .gallery-overlay h4{

        font-size:20px;

    }

}

/*===================================================
CONTACT
=================================================*
/*==================================================
CONTACT INFORMATION
==================================================*/

.contact-info-section{

    padding:100px 0;

    background:var(--light-bg);

    position:relative;

    overflow:hidden;

}

.contact-info-section::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(13,110,253,.05);

    filter:blur(60px);

}

.contact-info-section .container{

    position:relative;

    z-index:2;

}

.contact-card{

    height:100%;

    text-align:center;

    padding:45px 35px;

    background:var(--card-bg);

    border:1px solid var(--border-color);

    border-radius:28px;

    transition:all .35s ease;

    box-shadow:
        0 15px 35px rgba(0,0,0,.06);

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.12);

}

.contact-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    font-size:34px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

}

.contact-card h4{

    color:var(--heading-color);

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.contact-card p{

    color:var(--text-muted);

    line-height:1.8;

    margin:0;

}

/*==================================================
CONTACT FORM
==================================================*/

.contact-form-section{

    padding:120px 0;

    background:#fff;

}

.form-content{

    padding-right:50px;

}

.form-content h2{

    color:var(--heading-color);

    font-size:46px;

    font-weight:800;

    margin:20px 0;

}

.form-content p{

    color:var(--text-muted);

    line-height:1.9;

    font-size:17px;

}

.contact-form-box{

    padding:45px;

    background:var(--card-bg);

    border:1px solid var(--border-color);

    border-radius:30px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

}

.contact-form-box .form-control{

    height:58px;

    border-radius:16px;

    border:1px solid var(--border-color);

    background:var(--light-bg);

    color:var(--heading-color);

    padding:0 18px;

    transition:all .3s ease;

}

.contact-form-box textarea.form-control{

    height:170px;

    resize:none;

    padding-top:16px;

}

.contact-form-box .form-control:focus{

    border-color:var(--primary-color);

    background:#fff;

    box-shadow:0 0 0 .2rem rgba(var(--primary-rgb), .12);

}

.submit-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    font-weight:700;

    font-size:16px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    transition:all .35s ease;

}

.submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0,0,0,.18);

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:991px){

    .form-content{

        padding-right:0;

        margin-bottom:50px;

        text-align:center;

    }

}

@media(max-width:768px){

    .contact-info-section,
    .contact-form-section{

        padding:80px 0;

    }

    .contact-card{

        padding:35px 25px;

    }

    .contact-icon{

        width:70px;
        height:70px;

        font-size:28px;

    }

    .form-content h2{

        font-size:36px;

    }

    .contact-form-box{

        padding:30px;

    }

}

/* ==========================================================
   PREMIUM FOOTER
========================================================== */

.mega-footer{

    position:relative;

    overflow:hidden;

    color:#fff;

    background:
        radial-gradient(
            circle at top left,
            color-mix(in srgb, var(--primary-color) 18%, transparent),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            color-mix(in srgb, var(--secondary-color) 18%, transparent),
            transparent 40%
        ),

        var(--footer-bg);

}

/* ==========================================================
   GLASS OVERLAY
========================================================== */

.mega-footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.01)
        );

    backdrop-filter:blur(18px);

    pointer-events:none;

}

/* ==========================================================
   SUBTLE GRAIN
========================================================== */

.mega-footer::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:5px 5px;

    opacity:.15;

    pointer-events:none;

}

/* ==========================================================
   MAIN FOOTER
========================================================== */

.footer-main{

    position:relative;

    z-index:2;

    padding:90px 0 70px;

}

/* ==========================================================
   LOGO
========================================================== */

.footer-logo{

    font-size:36px;

    font-weight:800;

    letter-spacing:-1px;

    margin-bottom:22px;

    color:#fff;

}

.footer-logo span{

    color:var(--primary-color);

}

/* ==========================================================
   WIDGET
========================================================== */

.footer-widget{

    margin-bottom:30px;

}

.footer-widget p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    font-size:15px;

}

.footer-widget h4{

    position:relative;

    display:inline-block;

    font-size:21px;

    font-weight:700;

    margin-bottom:28px;

    color:#fff;

}

.footer-widget h4::after{

    content:"";

    display:block;

    width:65px;

    height:4px;

    margin-top:12px;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--primary-color),
            var(--secondary-color)
        );

}

/* ==========================================================
   LINKS
========================================================== */

.footer-widget ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-widget ul li{

    margin-bottom:15px;

}

.footer-widget ul li a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:all .35s ease;

}

.footer-widget ul li a::before{

    content:"›";

    color:var(--primary-color);

    font-size:18px;

    transition:.3s;

}

.footer-widget ul li a:hover{

    color:#fff;

    transform:translateX(8px);

}

.footer-widget ul li a:hover::before{

    color:var(--secondary-color);

}

/* ==========================================================
   SOCIAL ICONS
========================================================== */

.footer-social{

    display:flex;

    gap:14px;

    margin-top:32px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    transition:all .35s ease;

}

.footer-social a:hover{

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 18px 35px
        color-mix(in srgb, var(--primary-color) 35%, transparent);

}

/* ==========================================================
   CONTACT
========================================================== */

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:22px;

}

.contact-item i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

.contact-item span{

    color:rgba(255,255,255,.72);

    line-height:1.8;

    font-size:15px;

}

/* ==========================================================
   COPYRIGHT BAR
========================================================== */

.copyright-bar{

    position:relative;

    z-index:2;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

}

.copyright-bar p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:15px;

}

/* ==========================================================
   FOOTER LINKS
========================================================== */

.footer-bottom-links{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.65);

    text-decoration:none;

    transition:.35s ease;

}

.footer-bottom-links a:hover{

    color:var(--primary-color);

}

.designer{

    color:var(--primary-color);

    font-weight:700;

}

/* ==========================================================
   HOVER ANIMATION
========================================================== */

.footer-widget,
.contact-item,
.footer-social{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:991px){

    .footer-main{

        padding:80px 0 60px;

    }

    .footer-bottom-links{

        justify-content:center;

        margin-top:18px;

    }

    .copyright-bar{

        text-align:center;

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

    .footer-main{

        padding:65px 0 45px;

    }

    .footer-logo{

        font-size:30px;

    }

    .footer-widget{

        text-align:center;

    }

    .footer-widget h4{

        display:block;

    }

    .footer-widget h4::after{

        margin:12px auto 0;

    }

    .footer-social{

        justify-content:center;

    }

    .contact-item{

        justify-content:center;

        text-align:left;

    }

    .footer-bottom-links{

        gap:18px;

    }

}