﻿/* =========================
   TOP BAR
========================= */

:root{
    --primary:#1E4E9D;
    --secondary:#F7941D;
    --accent:#FFD54F;
    --dark:#1A1A1A;
    --white:#fff;
}

.topbar{
    background:#f5ee7f;
    color:#fff;
   
    position:relative;
    overflow:hidden;
    z-index:999;
    height:50px;
    display:flex;
    align-items:center;
    position:relative;
    z-index:9999;
}

.topbar::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    animation:shine 6s linear infinite;
}

@keyframes shine{
    100%{
        left:100%;
    }
}

.topbar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.topbar-left a{
    color:#1E4E9D;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.topbar-left a:hover{
    color:#FFD54F;
}

.topbar-left i{
    color:#F7941D;
    font-size:14px;
}

.admission-badge{
    background:linear-gradient(135deg,#F7941D,#FFB347);
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 8px 20px rgba(247,148,29,.35);
    animation:pulse 2s infinite;
}

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

.social-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-icons a{
    width:34px;
    height:34px;
    border-radius:50%;
    color:#1E4E9D;
    background:rgba(255,255,255,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
    text-decoration:none;
    backdrop-filter:blur(10px);
}

.social-icons a:hover{
   background:#F7941D;
   color:#fff;
    transform:translateY(-4px);
}

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

@media(max-width:991px){

    .topbar{
        padding:12px 0;
    }

    .topbar-wrapper{
        flex-direction:column;
        gap:12px;
    }

    .topbar-left,
    .topbar-right{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

}

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

@media(max-width:576px){

    .topbar-left{
        flex-direction:column;
        gap:10px;
    }

    .topbar-left a{
        font-size:13px;
    }

    .admission-badge{
        font-size:12px;
        padding:7px 14px;
    }

    .social-icons a{
        width:32px;
        height:32px;
        font-size:13px;
    }

}

/*------------------------------------------------header----------------------------------------*/

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

.main-header{
   
    left:0;
    width:100%;
    transition:all .4s ease;
    background:#072C63;
    position:relative;
    z-index:999;
}

.main-header.sticky{
    position:fixed;
    top:0;
    left:0;
    background:#ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    animation:headerSlide .4s ease;
}

@keyframes headerSlide{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

.navbar-custom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:85px;
    
     min-height:80px;
}

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

.logo{
    flex-shrink:0;
     min-width:280px;
}



.logo img{
    height:100px;
    width:auto;
    display:block;
    margin-left: 62px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo-text h4{
    margin:0;
    font-size:20px;
    line-height:1.1;
    font-weight:700;
    color:#fff;
}

.logo-text span{
    font-size:12px;
     color:#dfe9ff;
}

.main-header.sticky .logo-text h4{
    color:#1E4E9D;
}

.main-header.sticky .logo-text span{
    color:#666;
}

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

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    margin:0;
    padding:0;
    list-style:none;

}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.nav-menu li a:hover{
    color:#FFD54F;
}

.main-header.sticky .nav-menu li a{
    color:#222;
}

.main-header.sticky .nav-menu li a:hover{
    color:#F7941D;
}


.container{
    width:97%;
    max-width:1320px;
    margin:0 auto;
    padding:0 15px;
}
/* ==========================================
   MEGA MENU
========================================== */

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    width:900px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.mega-parent:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

.mega-column h5{
    font-size:18px;
    color:#1E4E9D;
    margin-bottom:15px;
    font-weight:700;
}

.mega-column a{
    display:block;
    color:#555 !important;
    padding:8px 0;
    text-decoration:none;
    transition:.3s;
}

.mega-column a:hover{
    color:#F7941D !important;
    padding-left:8px;
}

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

.admission-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#F7941D,#ffb13d);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 25px rgba(247,148,29,.35);
}

.admission-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

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

.mobile-toggle{
    display:none;
    width:32px;
    cursor:pointer;
}

.mobile-toggle span{
    display:block;
    width:100%;
    height:3px;
    margin:6px 0;
    background:#fff;
    border-radius:20px;
    transition:.3s;
}

.main-header.sticky .mobile-toggle span{
    background:#222;
}

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

@media(max-width:1199px){

    .logo-text h4{
        font-size:20px;
    }

    .nav-menu{
        gap:20px;
    }

    .mega-menu{
        width:700px;
    }

}

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

@media(max-width:991px){

    .navbar-custom{
        min-height:80px;
    }

    .header-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .logo-text h4{
        font-size:18px;
    }

    .logo-text span{
        font-size:11px;
    }

    .nav-menu{
        position:fixed;
        top:132px;
        left:-100%;
        width:300px;
        height:calc(100vh - 132px);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:25px;
        gap:18px;
        transition:.4s;
        overflow-y:auto;
        box-shadow:0 0 30px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        left:0;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        color:#222 !important;
        display:block;
        width:100%;
    }

    .mega-menu{
        position:static;
        width:100%;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border-radius:12px;
        padding:15px;
        grid-template-columns:1fr;
        margin-top:10px;
        background:#f8f9fa;
    }

    .mega-parent.active .mega-menu{
        display:grid;
    }

}

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

@media(max-width:576px){

    .logo img{
        height:45px;
    }

    .logo-text h4{
        font-size:16px;
    }

    .logo-text span{
        display:none;
    }

    .nav-menu{
        width:100%;
    }

}
.mobile-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}



/*-----------------------------------------------------hero-------------------------------*/
.hero-section{
    background:#072c63;
    position:relative;
    overflow:hidden;
    padding:10px 0 48px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('../img/hero.png') center/cover;
        /*opacity: .18;*/
        
    }

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
}

.hero-content h1{
    font-size:72px;
    line-height:1;
    color:#072c63;
    font-weight:800;
    margin-bottom:10px;
}

.hero-content h1 span{
    color:#FDBB2D;
    display:block;
}

.hero-content h2{
    font-size:50px;
    color:#2d5caa;
     font-family: 'Allura', cursive;
    margin-bottom:25px;
}

.hero-content p{
    color:#151414;
    font-size:17px;
    line-height:1.8;
    max-width:650px;
}

.hero-image{
    text-align:right;
}

.hero-image img{
    max-width:100%;
    height:auto;
}
.hero-features{
    position:relative;
    z-index:3;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.feature-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    display:flex;
    min-height:220px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.feature-card img{
    width:40%;
    object-fit:cover;
}

.feature-card div{
    padding:25px;
}

.feature-card h4{
    color:#0a2f6d;
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}
@media(max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content h1{
    font-size:52px;
}

.hero-content h2{
    font-size:38px;
}

.hero-image{
    margin-top:40px;
    text-align:center;
}

.hero-features{
    grid-template-columns:1fr;
}

.feature-card{
    flex-direction:column;
}

.feature-card img{
    width:100%;
    height:220px;
}

}
.hero-content,
.hero-image{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.hero-content.show,
.hero-image.show{
    opacity:1;
    transform:translateY(0);
    text-align: start;
    margin-left: 42px;
}

.feature-card{
    opacity:0;
    transform:translateY(40px);
    transition:.7s;
}

.feature-card.active{
    opacity:1;
    transform:translateY(0);
}

/* Ripple */

.btn-primary{
    position:relative;
    overflow:hidden !important;
    z-index:1;
}

.btn-primary::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.2);
    transition:.5s;
    z-index:-1;
}

.btn-primary:hover::before{
    left:100%;
}
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#FDBB2D;
    color:#072c63;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 25px rgba(253,187,45,.25);
}

.btn-primary:hover{
    background:#ffffff;
    color:#072c63;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.btn-primary::after{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:50px;
    height:100%;
    background:rgba(255,255,255,.5);
    transform:skewX(-25deg);
    transition:.7s;
}

.btn-primary:hover::after{
    left:130%;
}
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 35px;
    border:2px solid #072c63;
    color:#072c63;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:all .4s ease;
}

.btn-outline:hover{
    background:#072c63;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

/*------------------------------------------------------about------------------------------*/


.about-section{
    padding:80px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.experience-badge{
    position:absolute;
   top: -1px;
  right: 1px;
  width: 152px;
  height: 127px;
    background:#0A2558;
    border-radius:20px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.experience-badge span{
    font-size:54px;
    font-weight:800;
    color:#FDBB2D;
    line-height:1;
}

.experience-badge small{
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-tag{
    color:#F7941D;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    display:block;
    margin-bottom:15px;
}

.about-content h2{
    font-size:58px;
    line-height:1.1;
    color:#0A2558;
    margin-bottom:25px;
    font-weight:800;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.about-features div{
    font-weight:600;
    color:#222;
}

.about-features i{
    color:#FDBB2D;
    margin-right:8px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    background:#FDBB2D;
    color:#072C63;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 10px 25px rgba(253,187,45,.25);
}

.about-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60px;
    height:100%;
    background:rgba(255,255,255,.4);
    transform:skewX(-25deg);
    transition:.7s;
}

.about-btn:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 20px 40px rgba(253,187,45,.45);
    background:#ffca3a;
}

.about-btn:hover::before{
    left:130%;
}

.about-btn i{
    transition:.4s ease;
}

.about-btn:hover i{
    transform:translateX(6px);
}
.about-btn:hover{
    animation:pulseGlow 1.5s infinite;
}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(253,187,45,.5);
    }

    50%{
        box-shadow:
        0 0 25px rgba(253,187,45,.6),
        0 0 50px rgba(253,187,45,.3);
    }

    100%{
        box-shadow:0 0 0 rgba(253,187,45,.5);
    }

}
@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content h2{
        font-size:42px;
    }

    .experience-badge{
        width:130px;
        height:130px;
        right:15px;
        top:15px;
    }

    .experience-badge span{
        font-size:40px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .about-section{
        padding:80px 0;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }
}
.about-image{
    opacity:0;
    transform:translateX(-80px);
    transition:1s ease;
}

.about-content{
    opacity:0;
    transform:translateX(80px);
    transition:1s ease;
}

.about-section.active .about-image{
    opacity:1;
    transform:translateX(0);
}

.about-section.active .about-content{
    opacity:1;
    transform:translateX(0);
    text-align:start;
}


/*-------------------------------------------------why--------------------------------------*/

.why-us-section{
    padding:60px 0;
    background:#fff;
}

.why-us-grid{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:50px;
    align-items:center;
}

.section-tag{
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.why-left h2{
    font-family:'Poppins',sans-serif;
    font-size:48px;
    font-weight:800;
    color:#0A2558;
    margin:15px 0;
}

.why-left p{
    font-family:'Roboto',sans-serif;
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    margin-bottom:18px;
    font-weight:600;
}

.why-list i{
    width:38px;
    height:38px;
    background:#F9A949;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:38px;
    margin-right:12px;
}

.counter-box{
    background:#0A2558;
    padding:20px 35px;
    border-radius:20px;
}

.counter-item{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.counter-item:last-child{
    border-bottom:none;
}

.counter-item h3{
    font-size:48px;
    color:#FFD54F;
    font-weight:800;
    margin-bottom:5px;
}

.counter-item p{
    color:#fff;
    margin:0;
}
/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .why-us-section{
        padding:60px 0;
    }

    .why-us-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .why-left h2{
        font-size:38px;
        line-height:1.2;
    }

    .counter-box{
        width:100%;
    }

}

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

@media (max-width:767px){

    .why-us-section{
        padding:50px 0;
    }

    .why-left{
        text-align:center;
    }

    .section-tag{
        font-size:13px;
    }

    .why-left h2{
        font-size:30px;
        margin:10px 0 15px;
    }

    .why-left p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .why-list{
        text-align:left;
        max-width:320px;
        margin:0 auto;
    }

    .why-list li{
        font-size:15px;
        margin-bottom:15px;
    }

    .why-list i{
        width:34px;
        height:34px;
        line-height:34px;
        margin-right:10px;
    }

    .counter-box{
        padding:15px 20px;
        border-radius:16px;
    }

    .counter-item{
        padding:18px 0;
    }

    .counter-item h3{
        font-size:34px;
    }

    .counter-item p{
        font-size:14px;
    }

}

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

@media (max-width:480px){

    .why-us-section{
        padding:40px 0;
    }

    .why-left h2{
        font-size:26px;
    }

    .why-left p{
        font-size:14px;
    }

    .counter-box{
        padding:12px 15px;
    }

    .counter-item h3{
        font-size:28px;
    }

    .counter-item p{
        font-size:13px;
    }

}

/*-------------------------------------------------Our Academic Excellence---------------------------------*/
/* ===================================
   CATEGORIES SECTION
=================================== */

.categories-section{
    padding:45px 0;
    background:#fff;
    overflow:hidden;
}

.section-header{
    text-align:center;
    margin-bottom:45px;
}

.section-header span{
    display:inline-block;
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-header h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    font-weight:800;
    color:#1E4E9D;
    margin-bottom:15px;
    line-height:1.2;
}

.section-header p{
    max-width:650px;
    margin:0 auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ===================================
   SWIPER
=================================== */

.categorySwiper{
    padding-bottom:60px;
}

.categorySwiper .swiper-slide{
    height:auto;
}

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

.category-card{
    background:#e8ecf5;
    border:1px solid #e8ecf5;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    min-height:240px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    z-index:1;
}

/* Top Orange Line */

.category-card::before{
    /*content:'';*/
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#F7941D;
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
    z-index:5;
}

.category-card:hover::before{
    transform:scaleX(1);
}

/* Background Image */

.category-card::after{
    content:'';
    position:absolute;
    inset:0;
    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;
    opacity:0;
    transform:scale(1);
    transition:all .6s ease;
    z-index:0;
}

/* Overlay */

.category-card .card-overlay{
    position:absolute;
    inset:0;
    background:rgba(30, 78, 157, 0.28);
    opacity:0;
    transition:.5s;
    z-index:1;
}

/* Hover Effects */

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

.category-card:hover::after{
    opacity:.85;
    transform:scale(1.08);
}

.category-card:hover .card-overlay{
    opacity:1;
}

/* Content Above Image */

.category-icon,
.category-card h4,
.category-card p{
    position:relative;
    z-index:3;
}

/* Academics */

.academic-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/m1.png');
}

/* STEM */

.stem-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/m3.png');
}

/* Sports */

.sports-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/m5.png');
}

/* Arts */

.arts-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/m2.png');
}

/* Leadership */

.leadership-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/s3.jpg');
}

/* Innovation */

.innovation-card::after{
    background:
    linear-gradient(rgba(30,78,157,.35),rgba(30,78,157,.35)),
    url('../img/s6.jpeg');
}
/* ===================================
   ICON
=================================== */

.category-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .5s ease;
}

.category-icon i{
    font-size:32px;
    color:#F7941D;
    transition:all .5s ease;
}



.category-card:hover .category-icon i{
    transform:scale(1.15);
    color:#1E4E9D;
}

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

.category-card h4{
    font-family:'Poppins',sans-serif;
    font-size:22px;
    font-weight:700;
    color:#1E4E9D;
    margin-bottom:10px;
    transition:.4s;
}

.category-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
    transition:.4s;
}

.category-card:hover h4,
.category-card:hover p{
    color:#fff;
}

/* ===================================
   PAGINATION
=================================== */

.categorySwiper .swiper-pagination{
    bottom:0 !important;
}

.categorySwiper .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#1E4E9D;
    opacity:.3;
    transition:.3s;
}

.categorySwiper .swiper-pagination-bullet-active{
    background:#F7941D;
    opacity:1;
    width:30px;
    border-radius:20px;
}

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

@media(max-width:991px){

    .categories-section{
        padding:60px 0;
    }

    .section-header h2{
        font-size:34px;
    }

    .category-card{
        min-height:220px;
        padding:25px 18px;
    }

    .category-icon{
        width:70px;
        height:70px;
    }

    .category-icon i{
        font-size:28px;
    }

}

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

@media(max-width:767px){

    .categories-section{
        padding:50px 0;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:14px;
        line-height:1.7;
        padding:0 10px;
    }

    .category-card{
        min-height:200px;
        padding:22px 15px;
    }

    .category-icon{
        width:65px;
        height:65px;
        margin-bottom:15px;
    }

    .category-icon i{
        font-size:24px;
    }

    .category-card h4{
        font-size:18px;
    }

    .category-card p{
        font-size:14px;
    }

}

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

@media(max-width:480px){

    .section-header h2{
        font-size:24px;
    }

    .section-header span{
        font-size:12px;
    }

    .category-card{
        min-height:190px;
        border-radius:16px;
    }

    .category-icon{
        width:60px;
        height:60px;
    }

    .category-icon i{
        font-size:22px;
    }

    .category-card h4{
        font-size:17px;
    }

}

.swiper{
    padding: 18px!important;
    margin-top: -58px!important;
}


/*-------------------------------------------------------programs---------------------------------*/

.programs-section{
    padding:52px 0;
    background:#081B3A;
    overflow:hidden;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header span{
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin:15px 0;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.program-card{
    position:relative;
    height:330px;
    border-radius:22px;
    overflow:hidden;
    transition:.5s ease;
    cursor:pointer;
}

.program-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s ease;
}

.program-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(8,27,58,.95) 10%,
    rgba(8,27,58,.55) 50%,
    rgba(8,27,58,.15) 100%);
    z-index:1;
}

.program-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:2;
}

.program-tag{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:12px;
}

.program-content h3{
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
    font-family:'Poppins',sans-serif;
}

.program-content p{
    color:rgba(255,255,255,.85);
    font-size:14px;
    line-height:1.7;
    margin-bottom:15px;
}

.program-content a{
    color:#FFD54F;
    text-decoration:none;
    font-weight:600;
}

.program-card:hover{
    transform:translateY(-12px);
}

.program-card:hover img{
    transform:scale(1.12);
}

.program-card:hover::before{
    background:linear-gradient(
    to top,
    rgba(30,78,157,.95),
    rgba(30,78,157,.65),
    rgba(30,78,157,.15));
}

/* Scroll Animation */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
@media(max-width:991px){

    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .programs-section{
        padding:60px 0;
    }

    .program-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:28px;
    }

    .program-card{
        height:280px;
    }

    .program-content h3{
        font-size:20px;
    }

}

/*-----------------------------------------------FAQ-------------------------------------*/

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

.faq-section{
    padding:25px  0;
    background:#fff;
    position:relative;
}

.faq-header{
    text-align:center;

}

.faq-header span{
    display:inline-block;
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:-30px;
}

.faq-header h2{
    color:#1B3868;
    font-family:'Poppins',sans-serif;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.faq-header p{
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.4s ease;
}

.faq-item.active{
    border-color:#F7941D;
}

.faq-question{
    padding:22px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    color:#fff;
    font-weight:600;
    font-size:17px;
    background-color: #f5921c;
}

.faq-question i{
    color:#1B3868;
    transition:.4s ease;
}

.faq-item.active .faq-question{
    background:#F7941D;
    color:#081B3A;
}

.faq-item.active .faq-question i{
    color:#081B3A;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:25px;
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin:0;
    background-color: rgb(8, 27, 58);
}

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

@media(max-width:991px){

    .faq-section{
        padding:70px 0;
    }

    .faq-header h2{
        font-size:34px;
    }

}

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

@media(max-width:767px){

    .faq-section{
        padding:60px 0;
    }

    .faq-header{
        margin-bottom:35px;
    }

    .faq-header h2{
        font-size:28px;
    }

    .faq-header p{
        font-size:14px;
        padding:0 10px;
    }

    .faq-question{
        padding:18px;
        font-size:15px;
    }

    .faq-answer p{
        padding:18px;
        font-size:14px;
    }

}

/*-----------------------------------------------Our Faculty-------------------------------*/

/*==========================
    FACULTY SECTION
==========================*/

.faculty-section{
    padding:90px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#F7941D;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom: -18px;
}

.section-title h2{
    font-size:42px;
    color:#1E4E9D;
    font-weight:800;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.faculty-row{
    display:grid;
    grid-template-columns:1fr 1fr 1.3fr;
    gap:30px;
}

.faculty-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.faculty-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.faculty-image{
    height:300px;
    overflow:hidden;
}

.faculty-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.faculty-card:hover img{
    transform:scale(1.08);
}

.faculty-content{
    padding:30px;
}

.faculty-content h3{
    font-size:24px;
    color:#1E4E9D;
    margin-bottom:8px;
}

.faculty-content h5{
    color:#F7941D;
    margin-bottom:15px;
    font-size:16px;
}

.faculty-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.faculty-btn{
    display:inline-block;
    background:#1E4E9D;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.faculty-btn:hover{
    background:#F7941D;
    color:#fff;
}

/* Teachers Card */

.teachers-card{
    min-height:100%;
    background:url('images/faculty-group.jpg') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.teachers-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    135deg,
    rgba(30,78,157,.95),
    rgba(8,27,58,.95)
    );
}

.teachers-card .faculty-content{
    position:relative;
    z-index:2;
}

.teachers-card h3,
.teachers-card p{
    color:#fff;
}

.teacher-icon{
    width:90px;
    height:90px;
    background:#F7941D;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.teacher-icon i{
    color:#fff;
    font-size:35px;
}

.teachers-card .faculty-btn{
    background:#F7941D;
}

.teachers-card .faculty-btn:hover{
    background:#fff;
    color:#1E4E9D;
}

/* Highlight Cards */

.correspondent-card{
    border-top:5px solid #F7941D;
}

.principal-card{
    border-top:5px solid #FFD54F;
}

/* Responsive */

@media(max-width:991px){

    .faculty-row{
        grid-template-columns:1fr;
    }

    .teachers-card{
        min-height:450px;
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .faculty-section{
        padding:70px 0;
    }

    .faculty-image{
        height:250px;
    }

    .faculty-content{
        padding:25px;
    }

    .section-title h2{
        font-size:28px;
    }

}

/*-----------------------------------------------Admission Process ---------------------------------*/


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

.admission-process-section{
    padding:50px 0;
    background:#fff;
    position:relative;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#F7941D;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-header h2{
    font-size:42px;
    color:#0A2558;
    margin:12px 0;
    font-weight:800;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.process-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-line{
    position:absolute;
    top:45px;
    left:8%;
    width:84%;
    height:2px;
    background:#d9d9d9;
    z-index:1;
}

.process-step{
    text-align:center;
    position:relative;
    z-index:2;
    transition:.4s ease;
}

.step-icon{
    width:90px;
    height:90px;
    background:#fff;
    border:2px solid #e8e8e8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    transition:.5s ease;
    position:relative;
}

.step-icon::after{
    /*content:'';*/
    position:absolute;
    width:18px;
    height:18px;
    background:#fff;
    border:3px solid #F7941D;
    border-radius:50%;
    bottom:-10px;
}

.step-icon i{
    font-size:30px;
    color:#1E4E9D;
    transition:.5s;
}

.process-step h4{
    color:#1E4E9D;
    font-size:20px;
    margin-bottom:12px;
    font-weight:700;
}

.process-step p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    padding:0 10px;
}

/* Hover Effect */

.process-step:hover{
    transform:translateY(-12px);
}

.process-step:hover .step-icon{
    background:#1E4E9D;
    border-color:#1E4E9D;
    box-shadow:0 20px 40px rgba(30,78,157,.25);
}

.process-step:hover .step-icon i{
    color:#fff;
    transform:rotateY(180deg);
}

.process-step:hover h4{
    color:#F7941D;
}

/* Button */

.process-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.process-btn{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.process-btn:hover{
    background:#1E4E9D;
    color:#fff;
}

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

@media(max-width:991px){

    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .process-line{
        display:none;
    }

    .section-header h2{
        font-size:34px;
    }
}

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

@media(max-width:576px){

    .admission-process-section{
        padding:70px 0;
    }

    .process-wrapper{
        grid-template-columns:1fr;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-header h2{
        font-size:28px;
    }

    .step-icon{
        width:80px;
        height:80px;
    }

    .step-icon i{
        font-size:26px;
    }
}
.process-step.show{
    opacity:1 !important;
    transform:translateY(0) !important;
}

/*--------------------------------------------------------vedio--------------------------*/

/*========================================
    MARSHALL HERO VIDEO SHOWCASE
========================================*/

.mhs-campus-showcase{
    position:relative;
    width:100%;
    height:75vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Video Background */

.mhs-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Overlay */

.mhs-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,27,58,.60);
    z-index:2;
}

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

.mhs-showcase-content{
    position:relative;
    z-index:10;
    max-width:750px;
    text-align:center;
    padding:20px;
    animation:mhsTextLoop 20s infinite;
}

.mhs-subtitle{
    display:block;
    color:#F7941D;
    font-size:18px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.mhs-main-title{
    color:#fff;
    font-size:55px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.mhs-description{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.mhs-explore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 40px;
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.mhs-explore-btn:hover{
    background:#fff;
    color:#1E4E9D;
    transform:translateY(-4px);
}

/*========================================
        FLOATING IMAGES
========================================*/

.mhs-floating-img{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    border:8px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    z-index:5;
    opacity:0;
}

.mhs-floating-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.mhs-floating-img:hover img{
    transform:scale(1.1);
}

/*========================================
        POSITIONING
========================================*/

.mhs-img-top-right{
    top:8%;
    right:8%;
    animation:
    mhsShow1 20s infinite,
    mhsFloat1 6s ease-in-out infinite;
}

.mhs-img-top-left{
    top:10%;
    left:8%;
    animation:
    mhsShow2 20s infinite,
    mhsFloat2 7s ease-in-out infinite;
}

.mhs-img-bottom-left{
    bottom:8%;
    left:10%;
    animation:
    mhsShow3 20s infinite,
    mhsFloat3 8s ease-in-out infinite;
}

.mhs-img-bottom-right{
    bottom:8%;
    right:10%;
    animation:
    mhsShow4 20s infinite,
    mhsFloat4 9s ease-in-out infinite;
}

/*========================================
        APPEAR SEQUENCE
========================================*/

@keyframes mhsShow1{

    0%,5%{
        opacity:0;
        transform:scale(.5);
    }

    10%,80%{
        opacity:1;
        transform:scale(1);
    }

    90%,100%{
        opacity:0;
    }
}

@keyframes mhsShow2{

    0%,15%{
        opacity:0;
        transform:scale(.5);
    }

    20%,80%{
        opacity:1;
        transform:scale(1);
    }

    90%,100%{
        opacity:0;
    }
}

@keyframes mhsShow3{

    0%,25%{
        opacity:0;
        transform:scale(.5);
    }

    30%,80%{
        opacity:1;
        transform:scale(1);
    }

    90%,100%{
        opacity:0;
    }
}

@keyframes mhsShow4{

    0%,35%{
        opacity:0;
        transform:scale(.5);
    }

    40%,80%{
        opacity:1;
        transform:scale(1);
    }

    90%,100%{
        opacity:0;
    }
}

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

@keyframes mhsFloat1{
    50%{ transform:translateY(-20px); }
}

@keyframes mhsFloat2{
    50%{ transform:translateY(-25px); }
}

@keyframes mhsFloat3{
    50%{ transform:translateY(-18px); }
}

@keyframes mhsFloat4{
    50%{ transform:translateY(-22px); }
}

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

@keyframes mhsTextLoop{

    0%,40%{
        opacity:0;
        transform:translateY(50px);
    }

    45%,80%{
        opacity:1;
        transform:translateY(0);
    }

    90%,100%{
        opacity:0;
        transform:translateY(-40px);
    }
}

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

@media(max-width:991px){

    .mhs-main-title{
        font-size:48px;
    }

    .mhs-floating-img{
        width:160px;
        height:160px;
    }
}

@media(max-width:767px){

    .mhs-campus-showcase{
        height:850px;
    }

    .mhs-main-title{
        font-size:32px;
    }

    .mhs-description{
        font-size:15px;
    }

    .mhs-floating-img{
        width:110px;
        height:110px;
        border-width:5px;
    }

    .mhs-img-top-left{
        left:4%;
    }

    .mhs-img-top-right{
        right:4%;
    }

    .mhs-img-bottom-left{
        left:4%;
    }

    .mhs-img-bottom-right{
        right:4%;
    }
}

/*=========================================
            FOOTER AREA
=========================================*/

.mhs-footer-area{
    background:#081B3A;
    position:relative;
    overflow:hidden;
    text-align: start;
}

.mhs-footer-container{
    max-width:1320px;
    margin:auto;
    padding:19px 15px 25px;
}

.mhs-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.mhs-footer-logo{
    max-width:100px;
    margin-bottom:20px;
}

.mhs-footer-about{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:25px;
}

.mhs-footer-heading{
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.mhs-footer-heading:after{
    content:'';
    width:45px;
    height:3px;
    background:#F7941D;
    position:absolute;
    left:0;
    bottom:-10px;
}

.mhs-footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.mhs-footer-menu li{
    margin-bottom:14px;
}

.mhs-footer-menu li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.4s;
}

.mhs-footer-menu li a:hover{
    color:#F7941D;
    padding-left:8px;
}

.mhs-contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.mhs-contact-list li{
    color:rgba(255,255,255,.75);
    margin-bottom:18px;
    line-height:1.8;
}

.mhs-contact-list i{
    color:#F7941D;
    margin-right:10px;
}

.mhs-social-links{
    display:flex;
    gap:12px;
}

.mhs-social-links a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
}

.mhs-social-links a:hover{
    background:#F7941D;
    transform:translateY(-5px);
}

.mhs-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:20px;
}

.mhs-footer-bottom p{
    color:rgba(255,255,255,.7);
    margin:0;
}

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

@media(max-width:991px){

    .mhs-footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media(max-width:767px){

    .mhs-footer-container{
        padding:60px 15px 30px;
    }

    .mhs-footer-grid{
        grid-template-columns:1fr;
    }

    .mhs-footer-heading{
        font-size:20px;
    }

}
.mhs-footer-visible{
    opacity:1 !important;
    transform:translateY(0) !important;
}