        .nav-link {
            color: #333;
            font-weight: 500;
            transition: 0.3s;
        }
        
        .nav-link:hover {
            color: #007bff;
        }
        
        .nav-link.active {
            color: #2357ae !important;
        }
        /* ================= LOGO HEADER ================= */
        
        .header-top{
            background:#fcb92c;
            padding:15px 0;
            text-align:center;
            border-bottom:1px solid #eee;
        }
        
        .logo-center img{
            height:90px;
            width:auto;
        }
        
        /* ================= NAV HEADER ================= */
        
        .header-main{
            background:#f8f8f8;
            padding:10px 0;
        }
        
        .header-wrapper{
            display:flex;
            align-items:center;
            justify-content:space-around;
        }
        
        /* Navigation */
        
        .main-nav ul{
            display:flex;
            gap:30px;
            list-style:none;
            margin:0;
            padding:0;
        }
        
        .main-nav ul li a{
            text-decoration:none;
            font-size:16px;
            font-weight:500;
            color:#333;
            transition:0.3s;
            font-family: 'Oswald', sans-serif;
        }
        
        .main-nav ul li a:hover{
            color:#fcb92c;
        }
        
        .main-nav ul li a.active{
            color:#fcb92c;
        }
        
        /* Admission Button */
        
        .admission-btn{
            background:#fcb92c;
            color:#fff;
            padding:10px 20px;
            border-radius:4px;
            text-decoration:none;
            font-weight:500;
        }
        
        .admission-btn:hover{
            background: #2357ae;
            color: white;
        }
        
        /* Mobile Menu */
        
        .menu-btn{
            display:none;
            flex-direction:column;
            cursor:pointer;
            margin-left:209px;
        }
        
        .menu-btn span{
            height:3px;
            width:22px;
            background:#333;
            margin:3px 0;
        }
        
        /* ================= RESPONSIVE ================= */
        
        @media (max-width:991px){
        
            .main-nav ul{
                display:none;
            }
            
            .menu-btn{
                display:flex;
            }
            
        }
        
        .top-marquee-bar{
            width:100%;
            background:#fff;
            overflow:hidden;
            padding:8px 0;
            font-weight:600;
        }
        
        .marquee-wrapper{
            display:flex;
            width:200%;
            animation: marqueeMove 15s linear infinite;
        }
        
        .marquee-content{
            display:flex;
            white-space:nowrap;
        }
        
        .marquee-content span{
            margin-right:80px;
            font-size:15px;
            color: #2357ae;
        }
        
        @keyframes marqueeMove{
            0%{
                transform: translateX(0);
            }
            100%{
                transform: translateX(-50%);
            }
        }
        
        .banner-bg-image{
            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            height:100vh;
        }
        
        .banner-text{
            max-width:700px;
            margin:auto;
        }
        
         /* Full screen white background */
        #preloader {
            position: fixed;
            inset: 0;
            background: #ffffff;
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Circle container */
        .loader-circle {
            position: relative;
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Fixed grey circle */
        .loader-circle::before {
            content: "";
            position: absolute;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid #e5e5e5;
        }
        
        /* Rotating yellow border */
        .rotating-border {
            position: absolute;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top: 4px solid #f2b914;
            border-right: 4px solid #f2b914;
            animation: rotate 1.2s linear infinite;
        }
        
        /* Logo inside */
        .loader-circle img {
            width: 70px;
            height: auto;
            position: relative;
            z-index: 2;
        }
        
        /* Animation */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .whatsapp-float{
            position: fixed;
            right: 25px;
            bottom: 110px; /* keeps space from scroll-to-top button */
            width: 50px;
            height: 50px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            line-height: 50px;
            z-index: 99999; /* very important */
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: 0.3s;
        }
        
        .whatsapp-float:hover{
            transform: scale(1.1);
            background:#1ebe5d;
        }
        
        .modal-content{
        border-radius:10px;
        }
        
        .modal-header{
        padding:15px 25px;
        }
        
        .modal-body{
        font-size:15px;
        }
        
        .modal-body ul{
        padding-left:18px;
        }
        
        .banner-area-four{
            position: relative;
        }
        
        .banner-form-left{
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
            width: 420px;
            background: #f4e7e9;
            padding: 25px;
            border-radius: 12px;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .banner-form-left h4{
            text-align: center;
            color:#b8002c;
            font-weight:700;
            margin-bottom:20px;
        }
        
        .banner-form-left label{
            font-size:13px;
            font-weight:600;
        }
        
        .banner-form-left input,
        .banner-form-left select{
            width:100%;
            height:38px;
            border:1px solid #ccc;
            border-radius:6px;
            padding:5px 10px;
            margin-bottom:10px;
        }
        
        .banner-form-left button{
            width:100%;
            height:38px;
            border:none;
            background:#fcb92c;
            color:white;
            border-radius:6px;
            font-weight:600;
        }
        
           /* Make banner full screen height */
    #customBannerOverlay .banner-wrapper-four {
        position: relative;
        height: 120vh; /* Changed from 130vh */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Overlay */
    #customBannerOverlay .banner-wrapper-four::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #2357ad;
        opacity: 0.65;
        z-index: 1;
    }
    
     #customBannerOverlay .banner-text {
        transform: translateY(-60px); /* Adjust this value */
    }

    /* Center content */
    #customBannerOverlay .banner-bg-image {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;   /* Vertical center */
        justify-content: start; /* Horizontal center */
        text-align: left;
        z-index: 2;
        padding-right: 50px;
        
    }

    /* Text container */
    #customBannerOverlay .banner-text {
        max-width: 900px;
        margin: 0 auto;
    }

    /* Subtitle */
    #customBannerOverlay .sub-title {
        color: #f2b914;
        font-size: 18px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Main Heading */
    #customBannerOverlay .main-title {
        color: #ffffff;
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    /* Description */
    #customBannerOverlay .banner-desc {
        color: #ffffff;
        font-size: 18px;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 768px) {
        #customBannerOverlay .main-title {
            font-size: 32px;
        }

        #customBannerOverlay .banner-desc {
            font-size: 15px;
        }
    }
    body.modal-open {
        overflow: hidden;
    }
    
    .admission-left-panel{
        position: relative;
        z-index: 1;
    }
    
    .admission-left-panel::before{
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55); /* overlay color */
        z-index: -1;
    }
    
        
    @media (max-width: 768px){
    
        .banner-form-left{
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            width: 100%;
            margin-top: 20px;
            box-shadow: none;
        }
        
        .admission-btn{
            display: none;
        }
        
        .testimonials-section{
            background: linear-gradient(135deg, #fcb92c, #fcb92c); 
            border-radius: 20px; 
            padding: 20px 20px !important;
        }
       
        .abt-img{
            height: 100% !important;
        }
    
    }
        
    .single-input-modal{
    width: 100%;
    padding: 4px 24px;
    border-width: 2px 5px 5px 2px;
    border-style: solid;
    border-color: var(--color-heading-1);
    }
    
    .abt-img{
        height: 660px;
    }
    
    .active-menu {
        color: #f4b400 !important;
        font-weight: 600;
    }
    
    
    .banner-slide{
        background-size:cover;
        background-position:center;
        position:relative;
        z-index:1;
    }
    
    .banner-height{
        min-height:650px;
    }
    
    /* DARK OVERLAY */
    .banner-slide::before{
        content:"";
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background:rgba(0,0,0,0.45);
        z-index:-1;
    }
    
    .banner-content-two{
        position:relative;
        color:#fff;
    }
    
    .banner-desc{
        font-size:18px;
        margin-top:10px;
    }
    
    .banner-form-box{
        background:#fff;
        padding:30px;
        border-radius:10px;
        box-shadow:0 10px 25px rgba(0,0,0,0.2);
    }
    
    .banner-form-box input,
    .banner-form-box select{
        width:100%;
        padding:10px;
        margin-top:5px;
        margin-bottom:15px;
        border:1px solid #ddd;
        border-radius:5px;
    }
    
    .submit-btn{
        background:#f5a623;
        border:none;
        padding:12px;
        width:100%;
        color:#fff;
        font-weight:600;
        border-radius:6px;
    }
    
    .banner-arrow{
        color:#fff;
    }
    
    @media (max-width:991px){
    
        .banner-height{
            min-height:auto;
            padding:80px 0;
        }
    
        .banner-content-two{
            text-align:center;
            margin-bottom:30px;
        }
    
        .banner-content-two h1{
            font-size:28px;
            line-height:38px;
        }
    
        .banner-desc{
            font-size:15px;
        }
    
        .banner-form-box{
            padding:20px;
        }
    
        .banner-form-box h4{
            font-size:20px;
            text-align:center;
            margin-bottom:15px;
        }
    
        /* Inputs full width */
        .banner-form-box .col-6{
            width:100%;
        }
    
        .banner-form-box input,
        .banner-form-box select{
            font-size:14px;
            padding:10px;
        }
    
        .submit-btn{
            padding:12px;
            font-size:16px;
        }
        
        .swiper-button-next{
            display: none;
        }
        
        .swiper-button-prev{
            display: none;
        }
    
    }
    
    
    .about-card {
        perspective: 1000px;
        height: 100%;
    }
    
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 250px;
        transition: transform 0.7s;
        transform-style: preserve-3d;
    }
    
    .about-card:hover .card-inner {
        transform: rotateY(180deg);
    }
    
    .card-front,
    .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 35px 30px;
        border-radius: 16px;
        text-align: center;
        backface-visibility: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    /* FRONT SIDE */
    .card-front {
        background: #fff;
    }
    
    .card-front .title {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .card-front ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .card-front ul li {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 8px;
    }
    
    .card-front .icon {
        margin-top: 25px;
    }
    
    .card-front .icon img {
        width: 70px;
    }
    
    /* BACK SIDE */
    .card-back {
        background: #2357ae;
        color: #fff !important;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .card-back .title {
        color: #fff;
        margin-bottom: 15px;
    }
    
     .card-back-font{
        color: #fff;
        
     }
    
            
        
    /*.section-inner{*/
        /*background: #fcb92b;*/
    /*    border-radius: 20px;*/
    /*    padding: 200px 50px;*/
    /*}*/
        
        