/*==========================================================
                DON BOSCO SCHOOL WEBSITE
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#0B2E6F;
    --secondary:#F5B400;
    --white:#ffffff;
    --dark:#222;
    --light:#f4f6fa;
    --shadow:0 10px 25px rgba(0,0,0,.12);

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:min(1320px,92%);
    margin:auto;

}

/*==========================================================
                DESKTOP NAVBAR
==========================================================*/

.desktop-navbar{

    width:100%;
    height:90px;

    background:var(--primary);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 45px;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:var(--shadow);

}

/* Logo */

.logo-section{

    display:flex;

    align-items:center;

    color:white;

    transition:all .4s ease;

}

.logo-section img{

    width:65px;

    height:65px;

    margin-right:16px;

    transition:all .45s ease;

    border-radius:50%;

}
.logo-section:hover img{

    transform:scale(1.12) rotate(8deg);

    box-shadow:
        0 0 15px rgba(255,213,79,.6),
        0 0 30px rgba(255,213,79,.35);

}

.school-name{

    display:flex;
    flex-direction:column;

}

.school-name h1{

    color:white;

    font-size:30px;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.school-name span{

    color:#FFD54F;

    font-size:13px;

    margin-top:4px;

    transition:.35s;

}
.logo-section:hover h1{

    color:#FFD54F;

    letter-spacing:2px;

}

.logo-section:hover span{

    color:white;

    transform:translateX(5px);

}
/* Menu */

.nav-right{

    display:flex;
    height:100%;

}

.nav-item{

    width:120px;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;

    transition:all .3s ease;

    border-left:1px solid rgba(255,255,255,.18);

    position:relative;

    overflow:hidden;

}

.nav-item:last-child{

    border-right:1px solid rgba(255,255,255,.18);

}

.nav-item i{

    font-size:22px;

    margin-bottom:8px;

    transition:.3s;

}

.nav-item span{

    font-size:12px;

    font-weight:600;

    transition:.3s;

}

.nav-item:hover{

    background:#163F8D;

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.nav-item:hover i{

    transform:scale(1.25);

}

.nav-item:hover span{

    letter-spacing:1px;

}
.nav-item::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.6s;

}

.nav-item:hover::before{

    left:140%;

}
.nav-item:active{

    transform:scale(.92);

}

.nav-item:last-child{

    border-right:1px solid rgba(255,255,255,.18);

}

.nav-item i{

    font-size:22px;
    margin-bottom:8px;

}

.nav-item span{

    font-size:12px;
    font-weight:600;

}

.nav-item:hover{

    background:#163F8D;

}

/*==========================================================
            MOBILE NAVBAR
==========================================================*/

.mobile-navbar{

    display:none;

    width:100%;
    height:72px;

    background:var(--primary);

    justify-content:space-between;
    align-items:center;

    padding:0 20px;

}

.mobile-logo{

    display:flex;

    align-items:center;

    color:white;

    flex:1;

    transition:.4s;

}

.mobile-logo img{

    width:50px;

    height:50px;

    margin-right:12px;

    border-radius:50%;

    transition:.4s;

}
.mobile-logo:hover img{

    transform:rotate(10deg) scale(1.1);

    box-shadow:
        0 0 12px rgba(255,213,79,.6),
        0 0 22px rgba(255,213,79,.35);

}

.mobile-logo:hover h1{

    color:#FFD54F;

}

.mobile-logo:hover span{

    color:white;

}

.mobile-logo h1{

    font-size:18px;

    line-height:1;

}
.mobile-logo span{

    color:#FFD54F;
    font-size:11px;

}


.menu-btn{

    width:45px;

    height:45px;

    border:none;

    background:none;

    color:white;

    font-size:28px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*==========================================================
            BOTTOM NAVIGATION
==========================================================*/

.bottom-nav{

    display:none;

}
/*==========================================================
                ANNOUNCEMENT BAR
==========================================================*/

.announcement{

    width:100%;
    height:45px;

    display:flex;
    align-items:center;

    background:var(--secondary);

    overflow:hidden;

}

.announcement-title{

    width:230px;
    height:100%;

    background:var(--primary);

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;
    font-size:14px;

    flex-shrink:0;

}

.announcement marquee{

    flex:1;

    padding-left:20px;

    color:#222;

    font-size:14px;

    font-weight:600;

}

/*==========================================================
                    HERO SECTION
==========================================================*/

.hero{

    position:relative;

    width:100%;

    overflow:hidden;

    background:white;

}

.hero-slider{

    position:relative;

    width:100%;

    overflow:hidden;

}

.slide{

    display:none;

    width:100%;

    animation:fadeHero .8s ease;

}

.slide.active{

    display:block;

}

.slide img{

    width:100%;

    display:block;

    height:auto;

}

/*==========================================================
                HERO BUTTONS
==========================================================*/

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;
    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    color:var(--primary);

    font-size:22px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    z-index:100;

}

.slider-btn:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-50%) scale(1.08);

}

.prev{

    left:25px;

}

.next{

    right:25px;

}

/*==========================================================
                HERO OVERLAY
==========================================================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.08)
    );

    pointer-events:none;

    z-index:2;

}

.hero-slider{

    position:relative;

    z-index:1;

}

/*==========================================================
                    SLIDER DOTS
==========================================================*/

.slider-dots{

    position:absolute;

    left:50%;

    bottom:18px;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    z-index:120;

}

.slider-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.5);

    cursor:pointer;

    transition:.3s;

}

.slider-dots span.active{

    background:white;

    transform:scale(1.3);

}

/*==========================================================
                HERO ANIMATION
==========================================================*/

@keyframes fadeHero{

    from{

        opacity:0;

        transform:scale(1.04);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==========================================================
                MOBILE HERO
==========================================================*/

@media(max-width:992px){

.hero{

    margin:0;

}

.slider-btn{

    width:48px;

    height:48px;

    font-size:18px;

}

.prev{

    left:15px;

}

.next{

    right:15px;

}

}

@media(max-width:768px){

.slide img{

    min-height:260px;

    object-fit:cover;

}

.slider-btn{

    width:42px;

    height:42px;

}

.announcement{

    height:38px;

}

.announcement-title{

    width:170px;

    font-size:12px;

}

.announcement marquee{

    font-size:12px;

}

}

@media(max-width:576px){

.slide img{

    min-height:190px;

}

.slider-btn{

    display:none;

}

.announcement-title{

    display:none;

}

}
/* ==========================================================
                RESPONSIVE NAVBAR
========================================================== */

@media screen and (max-width:992px){

    /* Hide Desktop */

    .desktop-navbar{

        display:none;

    }

    /* Show Mobile */

    .mobile-navbar{

        display:flex;

    }

    /* Show Bottom Nav */

   .bottom-nav{

    display:flex;

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:72px;

    justify-content:space-around;

    align-items:center;

    background:rgba(11,46,111,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-top:1px solid rgba(255,255,255,.08);

    box-shadow:0 -8px 25px rgba(0,0,0,.18);

    z-index:9999;

}
.bottom-nav a{

    position:relative;

    flex:1;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    overflow:hidden;

    transition:all .35s ease;

}

.bottom-nav i{

    font-size:22px;

    margin-bottom:4px;

    transition:all .35s ease;

}

.bottom-nav span{

    font-size:11px;

    font-weight:500;

    transition:all .35s ease;

}

/* Hover */

.bottom-nav a:hover{

    color:#FFD54F;

    transform:translateY(-8px);

}

.bottom-nav a:hover i{

    transform:scale(1.25);

}

.bottom-nav a:hover span{

    letter-spacing:.8px;

}

/* Click */

.bottom-nav a:active{

    transform:scale(.92);

}

/* Glow */

.bottom-nav a::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:0;

    height:3px;

    background:#FFD54F;

    border-radius:20px;

    transition:.3s;

}

.bottom-nav a:hover::before{

    width:70%;

}

/* Shine */

.bottom-nav a::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

    transition:.6s;

}

.bottom-nav a:hover::after{

    left:150%;

}
    body{

        padding-bottom:70px;

    }

}
/* =========================
        MOBILE MENU
========================= */
/* =====================================
        MOBILE SIDE MENU
===================================== */

.mobile-menu{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:#0B2E6F;

    display:flex;

    flex-direction:column;

    padding-top:90px;

    transition:.45s cubic-bezier(.22,1,.36,1);

    box-shadow:-10px 0 35px rgba(0,0,0,.35);

    z-index:99999;

}

.mobile-menu.show{

    right:0;

}

/* Menu Links */

.mobile-menu a{

    position:relative;

    color:white;

    text-decoration:none;

    padding:18px 30px;

    font-size:17px;

    font-weight:500;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:all .35s ease;

    overflow:hidden;

}

/* Hover Animation */

.mobile-menu a:hover{

    background:#163F8D;

    color:#FFD54F;

    padding-left:42px;

}

/* Gold Side Indicator */

.mobile-menu a::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:4px;

    height:0;

    background:#FFD54F;

    transition:.3s;

}

.mobile-menu a:hover::before{

    height:70%;

}

/* Shine Effect */

.mobile-menu a::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;

}

.mobile-menu a:hover::after{

    left:150%;

}

/* =====================================
        MENU OVERLAY
===================================== */

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;

}

.menu-overlay.show{

    opacity:1;

    visibility:visible;

}
@keyframes floatLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-4px);

    }

    100%{

        transform:translateY(0);

    }

}

.logo-section img{

    animation:floatLogo 3s ease-in-out infinite;

}

.mobile-logo img{

    animation:floatLogo 3s ease-in-out infinite;

}
/*==========================================================
                PRINCIPAL'S MESSAGE
==========================================================*/

.principal-section{

    padding:100px 8%;

    background:#ffffff;

}

.principal-container{

    max-width:1300px;

    margin:auto;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:#F5B400;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-heading h2{

    margin-top:10px;

    font-size:42px;

    color:#0B2E6F;

    font-weight:700;

}

.heading-line{

    width:90px;

    height:4px;

    background:#F5B400;

    margin:18px auto;

    border-radius:20px;

}

/*=====================================
        CONTENT
=====================================*/

.principal-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

/*=====================================
        IMAGE
=====================================*/

.principal-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.principal-image img{

    width:100%;

    max-width:420px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.45s;

}

.principal-image img:hover{

    transform:translateY(-10px) scale(1.03);

    box-shadow:0 25px 55px rgba(0,0,0,.22);

}

/*=====================================
        MESSAGE CARD
=====================================*/

.principal-content{

    flex:1.3;

    background:white;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

}

.principal-content:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}
/*==========================================================
            RESPONSIVE - PRINCIPAL'S MESSAGE
==========================================================*/

@media (max-width:992px){

    .principal-section{

        padding:70px 6%;

    }

    .principal-container{

        flex-direction:column;

        gap:40px;

        text-align:center;

    }

    .section-heading{

        margin-bottom:40px;

    }

    .section-heading h2{

        font-size:34px;

    }

    .principal-image{

        width:100%;

    }

    .principal-image img{

        max-width:320px;

        width:100%;

    }

    .principal-content{

        width:100%;

        padding:35px;

    }

    .principal-content h3{

        font-size:26px;

    }

}

@media (max-width:768px){

    .principal-section{

        padding:60px 20px;

    }

    .section-heading span{

        font-size:13px;

        letter-spacing:2px;

    }

    .section-heading h2{

        font-size:30px;

    }

    .heading-line{

        width:70px;

    }

    .principal-image img{

        max-width:260px;

        border-radius:18px;

    }

    .principal-content{

        padding:28px;

        border-radius:18px;

    }

    .principal-content h3{

        font-size:22px;

    }

    .principal-content p{

        font-size:15px;

        line-height:1.8;

    }

}

@media (max-width:576px){

    .principal-section{

        padding:50px 18px;

    }

    .section-heading{

        margin-bottom:30px;

    }

    .section-heading h2{

        font-size:26px;

    }

    .principal-image img{

        max-width:220px;

    }

    .principal-content{

        padding:22px;

    }

    .principal-content h3{

        font-size:20px;

    }

    .principal-content p{

        font-size:14px;

        line-height:1.7;

    }

    .principal-btn{

        width:100%;

        justify-content:center;

        padding:14px 20px;

    }

    .principal-sign{

        margin-top:25px;

    }

    .principal-sign h4{

        font-size:18px;

    }

    .principal-sign span{

        font-size:13px;

    }

}
/*==========================================================
                WHY CHOOSE US
==========================================================*/

.why-section{

    padding:100px 8%;
    background:#f8fafc;

}

.why-section .container{

    max-width:1300px;
    margin:auto;

}

/*==========================================================
                    HEADING
==========================================================*/

.why-section .section-heading{

    text-align:center;
    margin-bottom:70px;

}

.why-section .section-heading span{

    display:inline-block;

    color:var(--secondary);

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.why-section .section-heading h2{

    font-size:42px;

    margin:12px 0;

    color:var(--primary);

}

.why-section .section-heading p{

    max-width:720px;

    margin:20px auto 0;

    line-height:1.9;

    color:#666;

}

.heading-line{

    width:90px;

    height:4px;

    margin:18px auto;

    background:var(--secondary);

    border-radius:30px;

}

/*==========================================================
                    DESKTOP GRID
==========================================================*/

.desktop-why{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-slider{

    display:none;

}

/*==========================================================
                    CARD
==========================================================*/

.why-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 12px 28px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

    position:relative;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.why-card:hover::before{

    transform:scaleX(1);

}

/*==========================================================
                    ICON
==========================================================*/

.why-icon{

    width:85px;

    height:85px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--primary),#18408A);

    color:#fff;

    font-size:34px;

    transition:.35s;

}

.why-card:hover .why-icon{

    background:linear-gradient(135deg,var(--secondary),#ffd54f);

    color:var(--primary);

    transform:rotate(10deg) scale(1.08);

}

/*==========================================================
                    TEXT
==========================================================*/

.why-card h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

/* Floating Icon */

@keyframes iconFloat{

    0%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0);}

}

.why-icon{

    animation:iconFloat 3s ease-in-out infinite;

}
/*==========================================================
            TABLET RESPONSIVE
==========================================================*/

@media (max-width:992px){

    .desktop-why{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}

/*==========================================================
            MOBILE SLIDER
==========================================================*/

@media (max-width:768px){

    .why-section{

        padding:70px 20px;

    }

    .why-section .section-heading{

        margin-bottom:40px;

    }

    .why-section .section-heading h2{

        font-size:30px;

    }

    .why-section .section-heading p{

        font-size:15px;

        line-height:1.8;

    }

    /* Hide Desktop Grid */

    .desktop-why{

        display:none;

    }

    /* Show Mobile Slider */

    .why-slider{

        display:block;

        position:relative;

        overflow:hidden;

        width:100%;

    }

    .why-track{

        display:flex;

        transition:transform .5s ease;

    }

    .why-slide{

        min-width:100%;

        flex-shrink:0;

        padding:5px;

    }

    .why-slide .why-card{

        max-width:340px;

        margin:auto;

        padding:35px 28px;

    }

    .why-slide .why-icon{

        width:75px;

        height:75px;

        font-size:30px;

        margin:0 auto 22px;

    }

    .why-slide h3{

        font-size:22px;

    }

    .why-slide p{

        font-size:15px;

        line-height:1.8;

    }

    /* Dots */

    .why-dots{

        display:flex;

        justify-content:center;

        align-items:center;

        gap:10px;

        margin-top:25px;

    }

    .why-dots span{

        width:10px;

        height:10px;

        border-radius:50%;

        background:#d0d0d0;

        transition:.3s;

        cursor:pointer;

    }

    .why-dots span.active{

        width:24px;

        border-radius:20px;

        background:var(--primary);

    }

}

/*==========================================================
            SMALL PHONES
==========================================================*/

@media (max-width:480px){

    .why-section{

        padding:60px 15px;

    }

    .why-section .section-heading h2{

        font-size:26px;

    }

    .why-section .section-heading p{

        font-size:14px;

    }

    .why-slide .why-card{

        max-width:100%;

        padding:28px 20px;

        border-radius:18px;

    }

    .why-slide .why-icon{

        width:65px;

        height:65px;

        font-size:26px;

    }

    .why-slide h3{

        font-size:20px;

    }

    .why-slide p{

        font-size:14px;

        line-height:1.7;

    }

}
/*==========================================================
                    OUR FACILITIES
==========================================================*/

.facilities-section{

    padding:110px 8%;

    background:#f8fafc;

}

.facilities-section .container{

    max-width:1400px;

    margin:auto;

}

/*=========================
        Heading
=========================*/

.facilities-section .section-heading{

    text-align:center;

    margin-bottom:70px;

}

.facilities-section .section-heading span{

    display:inline-block;

    color:#F5B400;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.facilities-section .section-heading h2{

    font-size:42px;

    margin:15px 0;

    color:#0B2E6F;

    font-weight:700;

}

.facilities-section .section-heading p{

    max-width:720px;

    margin:auto;

    color:#666;

    font-size:16px;

    line-height:1.9;

}

/*=========================
        GRID
=========================*/

.facility-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*=========================
        CARD
=========================*/

.facility-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s ease;

    position:relative;

    cursor:pointer;

}

.facility-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}

/* Gold Border Animation */

.facility-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#F5B400;

    transform:scaleX(0);

    transition:.4s;

    z-index:10;

}

.facility-card:hover::before{

    transform:scaleX(1);

}

/*=========================
        IMAGE
=========================*/

.facility-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.6s;

}

.facility-card:hover img{

    transform:scale(1.08);

}

/*=========================
        CONTENT
=========================*/

.facility-content{

    padding:28px;

    position:relative;

}

.facility-content i{

    position:absolute;

    top:-35px;

    left:28px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0B2E6F;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.4s;

}

.facility-card:hover .facility-content i{

    background:#F5B400;

    color:#0B2E6F;

    transform:rotate(10deg) scale(1.08);

}

.facility-content h3{

    margin-top:22px;

    color:#0B2E6F;

    font-size:24px;

    font-weight:700;

}

.facility-content p{

    margin-top:12px;

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/* Floating Animation */

@keyframes facilityFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-5px);

    }

    100%{

        transform:translateY(0);

    }

}

.facility-content i{

    animation:facilityFloat 3s ease-in-out infinite;

}

/* Hidden on Desktop */

.facility-dots{

    display:none;

}
/*==========================================================
            FACILITIES RESPONSIVE
==========================================================*/
/*==========================================================
            FACILITIES RESPONSIVE
==========================================================*/

/* Hide Mobile Slider on Desktop */

.facility-slider{

    display:none;

}

.facility-dots{

    display:none;

}

/*=========================
        Tablet
=========================*/

@media (max-width:992px){

    .facility-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

}

/*=========================
        Mobile
=========================*/

@media (max-width:768px){

    .facilities-section{

        padding:70px 18px;

    }

    .facilities-section .section-heading{

        margin-bottom:45px;

    }

    .facilities-section .section-heading h2{

        font-size:30px;

    }

    .facilities-section .section-heading p{

        font-size:14px;

        line-height:1.8;

    }

    /* Hide Desktop */

    .desktop-facilities{

        display:none;

    }

    /* Show Slider */

    .facility-slider{

    display:block;

    width:100%;

    overflow:hidden;

    position:relative;

}
.facility-track{

    display:flex;

    width:100%;

    transition:transform .5s ease;

}
    .facility-slide{

    flex:0 0 100%;

    width:100%;

    max-width:100%;

    box-sizing:border-box;

}

    .facility-slide .facility-card{

        width:100%;

        margin:0;

    }

    .facility-card img{

        height:220px;

    }

    .facility-content{

        padding:24px;

    }

    .facility-content i{

        width:60px;

        height:60px;

        left:24px;

        top:-30px;

        font-size:24px;

    }

    .facility-content h3{

        margin-top:18px;

        font-size:22px;

    }

    .facility-content p{

        font-size:14px;

        line-height:1.7;

    }

    /* Dots */

    .facility-dots{

        display:flex;

        justify-content:center;

        align-items:center;

        gap:10px;

        margin-top:25px;

    }

    .facility-dots span{

        width:10px;

        height:10px;

        border-radius:50%;

        background:#d6d6d6;

        transition:.3s;

        cursor:pointer;

    }

    .facility-dots span.active{

        width:28px;

        border-radius:20px;

        background:#0B2E6F;

    }

}

/*=========================
        Small Phones
=========================*/

@media (max-width:480px){

    .facilities-section{

        padding:60px 15px;

    }

    .facilities-section .section-heading h2{

        font-size:26px;

    }

    .facility-card img{

        height:190px;

    }

    .facility-content{

        padding:20px;

    }

    .facility-content h3{

        font-size:20px;

    }

    .facility-content p{

        font-size:13px;

    }

}
/*==========================================================
                SCHOOL UPDATES
==========================================================*/

.updates-section{

    padding:100px 8%;

    background:#ffffff;

}

.updates-section .container{

    max-width:1400px;

    margin:auto;

}

.updates-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:40px;

    align-items:start;

}

/*==================================
        Common Heading
==================================*/

.column-header{

    margin-bottom:35px;

}

.column-header span{

    display:inline-block;

    color:#F5B400;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.column-header h2{

    margin:12px 0;

    color:#0B2E6F;

    font-size:36px;

    font-weight:700;

}

.column-header p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}
/*==================================
        Notice Cards
==================================*/

.notice-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.notice-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border-left:5px solid #0B2E6F;

}

.notice-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.notice-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;

}

.badge{

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    color:#fff;

}

.badge.important{

    background:#d62828;

}

.badge.holiday{

    background:#2a9d8f;

}

.badge.event{

    background:#184A9E;

}

.new{

    background:#F5B400;

    color:#0B2E6F;

    padding:5px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:700;

}

.notice-card h3{

    color:#0B2E6F;

    font-size:22px;

    margin-bottom:12px;

}

.notice-card p{

    color:#666;

    line-height:1.8;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}
.notice-bottom{

    margin-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.notice-bottom span{

    color:#777;

    font-size:14px;

}

.notice-bottom i{

    color:#F5B400;

    margin-right:6px;

}

.notice-bottom button{

    background:none;

    border:none;

    color:#184A9E;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.notice-bottom button:hover{

    color:#F5B400;

}

.view-all-btn{

    margin-top:30px;

    width:100%;

    padding:15px;

    border:none;

    border-radius:15px;

    background:#0B2E6F;

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.view-all-btn:hover{

    background:#F5B400;

    color:#0B2E6F;

}
/*==========================================================
                LATEST NEWS / POSTS
==========================================================*/

.article-column{

    display:flex;

    flex-direction:column;

}

.posts-wrapper{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/*=========================
        POST CARD
=========================*/

.post-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.post-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*=========================
        HEADER
=========================*/

.post-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 22px;

}

.post-profile{

    display:flex;

    align-items:center;

    gap:15px;

}

.post-profile img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #F5B400;

}

.post-profile h4{

    color:#0B2E6F;

    font-size:18px;

    margin-bottom:4px;

}

.post-profile span{

    font-size:13px;

    color:#777;

}

.post-category{

    background:#F5B400;

    color:#0B2E6F;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

/*=========================
        IMAGE
=========================*/

.post-image{

    width:100%;

    overflow:hidden;

}

.post-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.45s;

}

.post-card:hover .post-image img{

    transform:scale(1.05);

}

/*=========================
        CONTENT
=========================*/

.post-content{

    padding:22px;

}

.post-content h3{

    color:#0B2E6F;

    font-size:24px;

    margin-bottom:12px;

}

.post-content p{

    color:#666;

    line-height:1.8;

    font-size:15px;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

/*=========================
        FOOTER
=========================*/

.post-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 22px;

    border-top:1px solid #eee;

}

.like-btn{

    border:none;

    background:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:8px;

    color:#666;

    font-size:15px;

    transition:.3s;

}

.like-btn:hover{

    color:#d62828;

}

.read-btn{

    background:#0B2E6F;

    color:#fff;

    border:none;

    padding:10px 18px;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.read-btn:hover{

    background:#F5B400;

    color:#0B2E6F;

}

.view-all-posts{

    margin-top:30px;

    width:100%;

    padding:15px;

    border:none;

    border-radius:15px;

    background:#0B2E6F;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.view-all-posts:hover{

    background:#F5B400;

    color:#0B2E6F;

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .updates-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .updates-section{

        padding:70px 20px;

    }

    .column-header{

        text-align:center;

        margin-bottom:30px;

    }

    .column-header h2{

        font-size:30px;

    }

    .column-header p{

        font-size:14px;

    }

    .post-profile img{

        width:48px;

        height:48px;

    }

    .post-profile h4{

        font-size:16px;

    }

    .post-category{

        display:none;

    }

    .post-image img{

        height:220px;

    }

    .post-content{

        padding:20px;

    }

    .post-content h3{

        font-size:21px;

    }

    .post-content p{

        font-size:14px;

    }

    .post-footer{

        padding:18px 20px;

    }

    .read-btn{

        padding:10px 15px;

        font-size:14px;

    }

}

/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .updates-section{

        padding:60px 15px;

    }

    .column-header h2{

        font-size:26px;

    }

    .post-image img{

        height:190px;

    }

    .post-profile{

        gap:10px;

    }

    .post-profile img{

        width:42px;

        height:42px;

    }

    .post-profile h4{

        font-size:15px;

    }

    .post-profile span{

        font-size:12px;

    }

    .post-content h3{

        font-size:19px;

    }

    .post-content p{

        font-size:13px;

    }

    .post-footer{

        flex-direction:column;

        gap:15px;

    }

    .like-btn,

    .read-btn{

        width:100%;

        justify-content:center;

    }

    .read-btn{

        text-align:center;

    }

}
/*==========================================================
                        FOOTER
=======================
/*==========================================================
                        FOOTER
==========================================================*/
.footer-wave{

    line-height:0;

    margin-bottom:-2px;

}

.footer-wave svg{

    display:block;

    width:100%;

    height:80px;

}

.footer{

    margin-top:-2px;

    padding:45px 0 30px;

    background:linear-gradient(135deg,#071F4D,#0B2E6F,#123C88);

}

/*==================================
        CONTAINER
==================================*/

.footer .container{

    max-width:1400px;

    margin:auto;

    padding:45px 8% 30px;

}

/*==================================
        TOP
==================================*/

.footer-top{

    text-align:center;

    margin-bottom:15px;

}

.footer-top img{

    width:95px;

    height:95px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #F5B400;

    background:#fff;

    padding:8px;

    display:block;

    margin:0 auto 20px;

    transition:.35s;

}

.footer-top img:hover{

    transform:scale(1.08) rotate(5deg);

}

.footer-top h2{

    font-size:36px;

    margin-bottom:8px;

    font-weight:700;

}

.footer-top p{

    color:#d9d9d9;

    font-size:16px;

}

.footer-top span{

    display:inline-block;

    margin-top:10px;

    color:#F5B400;

    font-style:italic;

    letter-spacing:1px;

}

/*==================================
        DIVIDER
==================================*/

.footer-divider{

    width:100%;

    height:1px;

    background:rgba(255,255,255,.12);

    margin:40px 0;

}

/*==================================
        GRID
==================================*/

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px;

}

.footer-box h3{

    color:#F5B400;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#F5B400;

    padding-left:8px;

}

.footer-box p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box span{

    color:#fff;

    font-weight:500;

}

.footer-box i{

    width:24px;

    color:#F5B400;

}

/*==================================
        SOCIAL
==================================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:40px 0;

}

.footer-social a{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.footer-social a:hover{

    background:#F5B400;

    color:#0B2E6F;

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(245,180,0,.35);

}

/*==================================
        BACK TO TOP
==================================*/

.back-top{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:0 auto 40px;

    padding:15px 32px;

    border:none;

    border-radius:50px;

    background:#F5B400;

    color:#0B2E6F;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.back-top:hover{

    background:#fff;

    transform:translateY(-4px);

}

/*==================================
        COPYRIGHT
==================================*/

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:25px;

}

.footer-bottom p{

    margin:8px 0;

    color:#ddd;

    line-height:1.8;

    font-size:15px;

}

.footer-bottom strong{

    color:#F5B400;

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .footer-wave svg{

        height:60px;

    }

    .footer .container{

        padding:35px 20px 25px;

    }

    .footer-top img{

        width:80px;

        height:80px;

    }

    .footer-top h2{

        font-size:28px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

        gap:35px;

    }

    .footer-box i{

        display:block;

        margin:0 auto 8px;

    }

    .footer-box ul li a:hover{

        padding-left:0;

    }

    .footer-social{

        gap:15px;

    }

    .footer-social a{

        width:48px;

        height:48px;

        font-size:20px;

    }

    .back-top{

        width:100%;

    }

}

/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .footer-wave svg{

        height:50px;

    }

    .footer .container{

        padding:30px 15px 20px;

    }

    .footer-top h2{

        font-size:24px;

    }

    .footer-top p{

        font-size:14px;

    }

    .footer-top span{

        font-size:14px;

    }

    .footer-bottom p{

        font-size:13px;

    }

}
/*==========================================================
                    ABOUT HERO
==========================================================*/

.about-hero{

    position:relative;

    min-height:85vh;

    background:url("/images/about/about-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/*=========================
        Overlay
=========================*/

.about-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(6,22,54,.75),
        rgba(11,46,111,.75)
    );

}

/*=========================
        Container
=========================*/

.about-hero .container{

    position:relative;

    z-index:2;

    max-width:1400px;

    width:100%;

    margin:auto;

    padding:0 8%;

}

/*=========================
        Breadcrumb
=========================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:35px;

    color:#fff;

    font-size:15px;

}

.breadcrumb a{

    color:#F5B400;

    text-decoration:none;

    transition:.3s;

}

.breadcrumb a:hover{

    color:#fff;

}

.breadcrumb i{

    font-size:12px;

}

/*=========================
        Content
=========================*/

.about-hero-content{

    max-width:720px;

    animation:heroFade 1s ease;

}

.hero-tag{

    display:inline-block;

    background:rgba(245,180,0,.18);

    border:1px solid rgba(245,180,0,.35);

    color:#F5B400;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.about-hero-content h1{

    color:#fff;

    font-size:60px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.about-hero-content p{

    color:#f3f3f3;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

}

/*=========================
        Buttons
=========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.primary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    border-radius:50px;

    background:#F5B400;

    color:#0B2E6F;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.primary-btn:hover{

    background:#fff;

    transform:translateY(-4px);

}

.secondary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#0B2E6F;

}

/*=========================
        Animation
=========================*/

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .about-hero{

        min-height:75vh;

    }

    .about-hero-content h1{

        font-size:48px;

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .about-hero{

        min-height:70vh;

        text-align:center;

    }

    .about-hero .container{

        padding:0 20px;

    }

    .breadcrumb{

        justify-content:center;

        margin-bottom:25px;

    }

    .about-hero-content{

        margin:auto;

    }

    .about-hero-content h1{

        font-size:36px;

    }

    .about-hero-content p{

        font-size:15px;

    }

    .hero-buttons{

        justify-content:center;

        margin-top:35px;

    }

}

/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .about-hero{

        min-height:65vh;

    }

    .about-hero-content h1{

        font-size:30px;

    }

    .hero-tag{

        font-size:12px;

        padding:8px 16px;

    }

    .primary-btn,

    .secondary-btn{

        width:100%;

        padding:15px;

    }

}
/*==========================================================
                    ABOUT STORY
==========================================================*/

.about-story{

    padding:110px 8%;

    background:#ffffff;

}

.about-story .container{

    max-width:1400px;

    margin:auto;

}

/*=========================
        Grid
=========================*/

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/*=========================
        Image
=========================*/

.story-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.story-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.story-image:hover img{

    transform:scale(1.08);

}

/*=========================
        Content
=========================*/

.story-content span{

    display:inline-block;

    color:#F5B400;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.story-content h2{

    font-size:42px;

    color:#0B2E6F;

    margin-bottom:25px;

    line-height:1.3;

}

.story-content p{

    color:#666;

    font-size:16px;

    line-height:1.9;

    margin-bottom:20px;

}

/*=========================
        Features
=========================*/

.story-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#0B2E6F;

}

.feature-item i{

    color:#F5B400;

    font-size:20px;

}

/*=========================
        Stats
=========================*/

.story-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:40px;

}

.stat-card{

    background:#f8fafc;

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.stat-card:hover{

    background:#0B2E6F;

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:34px;

    color:#F5B400;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#555;

    font-weight:600;

}

.stat-card:hover p{

    color:#fff;

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .story-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .story-content{

        text-align:center;

    }

    .story-features{

        justify-content:center;

    }

    .story-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .about-story{

        padding:70px 20px;

    }

    .story-content h2{

        font-size:30px;

    }

    .story-content p{

        font-size:15px;

    }

    .story-features{

        grid-template-columns:1fr;

        text-align:left;

        margin:30px 0;

    }

    .story-stats{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .stat-card{

        padding:20px;

    }

    .stat-card h3{

        font-size:28px;

    }

}

/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .story-stats{

        grid-template-columns:1fr;

    }

    .story-content h2{

        font-size:26px;

    }

    .story-content p{

        font-size:14px;

    }

}
/*==========================================================
                MISSION & VISION
==========================================================*/

.mission-section{

    padding:110px 8%;

    background:#f8fafc;

}

.mission-section .container{

    max-width:1400px;

    margin:auto;

}

/*=========================
        Grid
=========================*/

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

/*=========================
        Card
=========================*/

.mission-card{

    background:#fff;

    padding:45px 35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.mission-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#F5B400;

    transform:scaleX(0);

    transition:.35s;

}

.mission-card:hover::before{

    transform:scaleX(1);

}

/*=========================
        Icon
=========================*/

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0B2E6F;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.mission-card:hover .mission-icon{

    background:#F5B400;

    color:#0B2E6F;

    transform:rotate(8deg) scale(1.05);

}

/*=========================
        Content
=========================*/

.mission-card h3{

    font-size:28px;

    color:#0B2E6F;

    margin-bottom:18px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .mission-grid{

        grid-template-columns:1fr;

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .mission-section{

        padding:70px 20px;

    }

    .mission-card{

        padding:35px 25px;

    }

    .mission-card h3{

        font-size:24px;

    }

    .mission-icon{

        width:75px;

        height:75px;

        font-size:28px;

    }

}
/*==========================================================
                    CONTACT HERO
==========================================================*/

.contact-hero{

    position:relative;

    min-height:65vh;

    background:url("/images/contact/contact-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(7,31,77,.75),rgba(11,46,111,.75));

}

.contact-hero .container{

    position:relative;

    z-index:2;

    max-width:1400px;

    width:100%;

    margin:auto;

    padding:0 8%;

}

.contact-hero-content{

    max-width:700px;

}

.contact-hero-content span{

    display:inline-block;

    color:#F5B400;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.contact-hero-content h1{

    font-size:60px;

    color:#fff;

    margin-bottom:20px;

}

.contact-hero-content p{

    color:#f5f5f5;

    font-size:18px;

    line-height:1.9;

}


/*==========================================================
                    CONTACT SECTION
==========================================================*/

.contact-section{

    padding:100px 8%;

    background:#f8fafc;

}

.contact-section .container{

    max-width:1400px;

    margin:auto;

}

.contact-grid{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

}


/*==========================================================
                    CONTACT INFO
==========================================================*/

.contact-info{

    display:grid;

    gap:25px;

}

.info-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.info-card i{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#0B2E6F;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:28px;

    margin-bottom:20px;

    transition:.35s;

}

.info-card:hover i{

    background:#F5B400;

    color:#0B2E6F;

}

.info-card h3{

    color:#0B2E6F;

    margin-bottom:12px;

}

.info-card p{

    color:#666;

    line-height:1.7;

}


/*==========================================================
                    CONTACT FORM
==========================================================*/

.contact-form-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form-card h2{

    color:#0B2E6F;

    margin-bottom:30px;

}

.contact-form-card form{

    display:grid;

    gap:20px;

}

.contact-form-card input,

.contact-form-card textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:15px;

    outline:none;

    transition:.3s;

    font-family:Poppins,sans-serif;

}

.contact-form-card input:focus,

.contact-form-card textarea:focus{

    border-color:#F5B400;

    box-shadow:0 0 0 4px rgba(245,180,0,.15);

}

.contact-form-card textarea{

    resize:none;

}

.contact-form-card button{

    padding:18px;

    border:none;

    border-radius:50px;

    background:#0B2E6F;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form-card button:hover{

    background:#F5B400;

    color:#0B2E6F;

}


/*==========================================================
                    MAP
==========================================================*/

.location-section{

    padding:100px 8%;

    background:#fff;

}

.location-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

    max-width:1400px;

    margin:auto;

}

.map-card,

.office-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.map-card h2,

.office-card h2{

    color:#0B2E6F;

    margin-bottom:25px;

}

.map-card iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:18px;

}

.office-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.office-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#F5B400;

    color:#0B2E6F;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.office-item h4{

    color:#0B2E6F;

    margin-bottom:5px;

}

.office-item p{

    color:#666;

}

.direction-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    background:#0B2E6F;

    color:#fff;

    transition:.35s;

}

.direction-btn:hover{

    background:#F5B400;

    color:#0B2E6F;

}


/*==========================================================
                    FAQ
==========================================================*/

.faq-section{

    padding:100px 8%;

    background:#f8fafc;

}

.faq-section .container{

    max-width:1100px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    padding:30px;

    margin-top:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

}

.faq-item h3{

    color:#0B2E6F;

    margin-bottom:15px;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}


/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .location-grid{

        grid-template-columns:1fr;

    }

}


/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .contact-hero{

        min-height:55vh;

        text-align:center;

    }

    .contact-hero-content h1{

        font-size:38px;

    }

    .contact-hero-content p{

        font-size:15px;

    }

    .contact-section,

    .location-section,

    .faq-section{

        padding:70px 20px;

    }

    .contact-form-card{

        padding:30px;

    }

    .map-card iframe{

        height:300px;

    }

}


/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .contact-hero-content h1{

        font-size:30px;

    }

    .info-card{

        padding:25px;

    }

    .contact-form-card{

        padding:25px;

    }

    .direction-btn{

        width:100%;

        justify-content:center;

    }

}
/*==========================================================
                        GALLERY HERO
==========================================================*/

.gallery-hero{

    position:relative;

    min-height:65vh;

    background:url("/images/gallery/gallery-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(7,31,77,.78),rgba(11,46,111,.78));

}

.gallery-hero .container{

    position:relative;

    z-index:2;

    max-width:1400px;

    width:100%;

    margin:auto;

    padding:0 8%;

}

.gallery-hero-content{

    max-width:720px;

}

.gallery-hero-content span{

    color:#F5B400;

    font-weight:700;

    letter-spacing:2px;

}

.gallery-hero-content h1{

    font-size:60px;

    color:#fff;

    margin:20px 0;

}

.gallery-hero-content p{

    color:#f5f5f5;

    line-height:1.9;

    font-size:18px;

}

/*==========================================================
                        ALBUMS
==========================================================*/

.albums-section{

    padding:100px 8%;

    background:#f8fafc;

}

.album-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.album-card{

    position:relative;

    height:280px;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    transition:.4s;

}

.album-card:hover{

    transform:translateY(-10px);

}

.album-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.album-card:hover img{

    transform:scale(1.1);

}

.album-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.75));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

}

.album-overlay i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#F5B400;

    color:#0B2E6F;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:20px;

}

.album-overlay h3{

    font-size:26px;

    margin-bottom:8px;

}

.album-overlay span{

    color:#ddd;

}

.album-card.active{

    outline:5px solid #F5B400;

}

/*==========================================================
                    GALLERY IMAGES
==========================================================*/

.gallery-images{

    padding:100px 8%;

    background:#fff;

}

.gallery-header{

    text-align:center;

    margin-bottom:60px;

}

.gallery-header h2{

    font-size:42px;

    color:#0B2E6F;

    margin-bottom:15px;

}

.gallery-header p{

    color:#666;

}

.photo-grid{

    columns:4 280px;

    column-gap:20px;

}

.photo-item{

    margin-bottom:20px;

    break-inside:avoid;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.photo-item img{

    width:100%;

    display:block;

    transition:.5s;

}

.photo-item:hover img{

    transform:scale(1.08);

}

/*==========================================================
                        BUTTON
==========================================================*/

.gallery-button{

    text-align:center;

    margin-top:50px;

}

.gallery-button button{

    padding:18px 40px;

    border:none;

    border-radius:50px;

    background:#0B2E6F;

    color:#fff;

    font-size:16px;

    cursor:pointer;

    transition:.35s;

}

.gallery-button button:hover{

    background:#F5B400;

    color:#0B2E6F;

}

/*==========================================================
                        LIGHTBOX
==========================================================*/

.gallery-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.gallery-lightbox img{

    max-width:90%;

    max-height:85%;

    border-radius:15px;

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

}

/*==========================================================
                    TABLET
==========================================================*/

@media(max-width:992px){

    .album-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==========================================================
                    MOBILE
==========================================================*/

@media(max-width:768px){

    .gallery-hero{

        min-height:50vh;

        text-align:center;

    }

    .gallery-hero-content h1{

        font-size:38px;

    }

    .gallery-hero-content p{

        font-size:15px;

    }

    .albums-section,

    .gallery-images{

        padding:70px 20px;

    }

    .album-grid{

        grid-template-columns:1fr;

    }

    .album-card{

        height:240px;

    }

    .gallery-header h2{

        font-size:30px;

    }

    .photo-grid{

        columns:2 150px;

    }

}

/*==========================================================
                SMALL PHONES
==========================================================*/

@media(max-width:480px){

    .gallery-hero-content h1{

        font-size:30px;

    }

    .photo-grid{

        columns:1;

    }

    .album-overlay h3{

        font-size:22px;

    }

}