/*=========================================
GOOGLE FONT
=========================================*/

:root{

    --primary:#C59D3F;
    --secondary:#111111;
    --white:#ffffff;
    --light:#f8f9fc;
    --text:#555555;
    --border:#ececec;
    --shadow:0 15px 45px rgba(0,0,0,.08);

    --radius:14px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:92%;
    max-width:1320px;
    margin:auto;

}

/*=========================================
Announcement
=========================================*/

.announcement-bar{

    background:#111;
    color:#fff;
    height:45px;

}

.announcement-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:45px;

}

.announcement-left{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:600;

}

.announcement-left i{

    color:var(--primary);

}

.announcement-center{

    flex:1;
    padding:0 25px;
    font-size:14px;

}

.announcement-center marquee{

    line-height:45px;

}

.announcement-right a{

    background:var(--primary);
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    transition:.35s;

}

.announcement-right a:hover{

    background:#000;

}

/*=========================================
Topbar
=========================================*/

.topbar{

    background:#fff;
    border-bottom:1px solid var(--border);

}

.topbar-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:52px;

}

.topbar-left{

    display:flex;
    gap:25px;
    align-items:center;

}

.topbar-left a,
.topbar-left span{

    color:#555;
    font-size:14px;

}

.topbar-left i{

    color:var(--primary);
    margin-right:7px;

}

.topbar-right{

    display:flex;
    gap:12px;

}

.topbar-right a{

    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f4f4;
    color:#444;
    transition:.35s;

}

.topbar-right a:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);

}

/*=========================================
HEADER
=========================================*/

#header{

    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:.4s;

}

#header.scrolled{

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/*=========================================
NAVBAR
=========================================*/

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo img{

    height:72px;
    transition:.35s;

}

/*=========================================
MENU
=========================================*/

.nav-menu{

    display:flex;
    align-items:center;
    gap:38px;

}

.nav-menu>li{

    position:relative;

}

.nav-menu>li>a{

    color:#222;
    font-size:15px;
    font-weight:600;
    transition:.35s;
    display:flex;
    align-items:center;
    gap:6px;

}

.nav-menu>li>a:hover{

    color:var(--primary);

}

.nav-menu>li>a.active{

    color:var(--primary);

}

.nav-menu>li>a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.35s;

}

.nav-menu>li>a:hover::after{

    width:100%;

}

/*=========================================
RIGHT BUTTONS
=========================================*/

.nav-actions{

    display:flex;
    align-items:center;
    gap:14px;

}

.search-btn{

    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    cursor:pointer;
    transition:.35s;
    font-size:17px;

}

.search-btn:hover{

    background:var(--primary);
    color:#fff;

}

.login-btn{

    padding:13px 24px;
    border-radius:50px;
    background:#f5f5f5;
    color:#222;
    font-weight:600;
    transition:.35s;

}

.login-btn:hover{

    background:#111;
    color:#fff;

}

.admission-btn{

    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#d4af37,#b8860b);
    color:#fff;
    font-weight:700;
    box-shadow:0 10px 25px rgba(197,157,63,.35);
    transition:.35s;

}

.admission-btn:hover{

    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(197,157,63,.45);

}
/*====================================================
MEGA MENU
====================================================*/

.mega-parent{
    position:relative;
}

.mega-menu{

    position:absolute;

    top:120%;

    left:50%;

    transform:translateX(-50%) translateY(25px);

    width:650px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    padding:35px;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    border-top:4px solid var(--primary);

    z-index:9999;

}

.mega-parent:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

.mega-column h4{

    margin-bottom:20px;

    font-size:18px;

    color:#111;

    border-bottom:2px solid #eee;

    padding-bottom:10px;

}

.mega-column a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:12px;

    margin-bottom:8px;

    border-radius:10px;

    color:#444;

    transition:.3s;

}

.mega-column a:hover{

    background:#FFF8E7;

    color:var(--primary);

    transform:translateX(6px);

}

.mega-column a i{

    width:40px;

    height:40px;

    border-radius:10px;

    background:#f5f5f5;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

}

/*====================================================
SEARCH POPUP
====================================================*/

.search-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.search-popup.active{

    opacity:1;

    visibility:visible;

}

.search-box{

    width:650px;

    max-width:92%;

    background:#fff;

    border-radius:70px;

    overflow:hidden;

    display:flex;

    align-items:center;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.search-box input{

    flex:1;

    border:none;

    padding:22px;

    font-size:17px;

}

.search-box input:focus{

    outline:none;

}

.search-box button{

    width:70px;

    height:70px;

    border:none;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    font-size:20px;

}

.close-search{

    width:70px;

    text-align:center;

    cursor:pointer;

    font-size:22px;

    color:#666;

}

/*====================================================
MOBILE SIDEBAR
====================================================*/

.mobile-sidebar{

    position:fixed;

    top:0;

    right:-360px;

    width:340px;

    height:100vh;

    background:#fff;

    box-shadow:-10px 0 40px rgba(0,0,0,.12);

    transition:.4s;

    z-index:99999;

    overflow-y:auto;

}

.mobile-sidebar.active{

    right:0;

}

.sidebar-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:20px;

    border-bottom:1px solid #eee;

}

.sidebar-header img{

    height:60px;

}

.close-sidebar{

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

}

.mobile-sidebar ul{

    padding:25px;

}

.mobile-sidebar ul li{

    margin-bottom:15px;

}

.mobile-sidebar ul li a{

    display:block;

    padding:15px;

    border-radius:10px;

    color:#222;

    font-weight:600;

    transition:.3s;

}

.mobile-sidebar ul li a:hover{

    background:#f8f8f8;

    color:var(--primary);

}

.sidebar-buttons{

    padding:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

}

/*====================================================
HAMBURGER
====================================================*/

.mobile-toggle{

    display:none;

    width:46px;

    height:46px;

    cursor:pointer;

    flex-direction:column;

    justify-content:center;

    gap:6px;

}

.mobile-toggle span{

    width:28px;

    height:3px;

    background:#111;

    border-radius:10px;

    transition:.35s;

}

.mobile-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.mobile-toggle.active span:nth-child(2){

    opacity:0;

}

.mobile-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*====================================================
FLOATING BUTTONS
====================================================*/

.whatsapp,
.call-btn{

    position:fixed;

    right:25px;

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

    z-index:999;

    animation:floatIcon 2.2s infinite;

}

.whatsapp{

    bottom:100px;

    background:#25D366;

}

.call-btn{

    bottom:28px;

    background:#d62828;

}

@keyframes floatIcon{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

/*====================================================
SCROLL PROGRESS
====================================================*/

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:4px;

    z-index:100000;

    background:transparent;

}

#progress{

    display:block;

    width:0;

    height:100%;

    background:linear-gradient(90deg,#d4af37,#ffda6b);

}

/*====================================================
OVERLAY
====================================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9990;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1100px){

    .nav-menu,
    .nav-actions{

        display:none;

    }

    .mobile-toggle{

        display:flex;

    }

}

@media(max-width:768px){

    .announcement-center{

        display:none;

    }

    .topbar{

        display:none;

    }

    .navbar{

        height:78px;

    }

    .logo img{

        height:58px;

    }

    .mobile-sidebar{

        width:300px;

    }

}

@media(max-width:480px){

    .mobile-sidebar{

        width:100%;

    }

    .whatsapp,
    .call-btn{

        width:52px;

        height:52px;

        font-size:20px;

    }

}