/* ==================================================
   RESET / BASE
================================================== */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#008b29;
    --primary-dark:#006b1f;
    --gold:#facc15;
    --gold-dark:#eab308;
    --white:#ffffff;
    --dark:#0f172a;
    --text:#1f2937;
    --muted:#94a3b8;
    --light:#f8fafc;
    --shadow:0 10px 30px rgba(0,0,0,.12);
    --radius:18px;
    --transition:all .3s ease;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

/* body{
    font-family:Arial, Inter, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:var(--text);
    background:var(--primary);
    min-height:100vh;
} */

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

/* ==================================================
   HERO BACKGROUND
================================================== */
.global-hero{
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;
    z-index:-2;
    overflow:hidden;
}

.slide-bg{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;
}

.slide.active{
    opacity:1;
}

/* ==================================================
   TOP BAR
================================================== */
.top-bar-fixed{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:var(--gold);
    color:#1e293b;
    z-index:3000;
    border-bottom:1px solid rgba(0,0,0,.08);
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.top-bar-container{
    max-width:1280px;
    margin:auto;
    padding:7px 18px;
    display:flex;
    align-items:center;
    gap:10px;
}

.marquee-wrapper{
    flex:1;
    overflow:hidden;
}

.marquee-content{
    white-space:nowrap;
    display:inline-block;
    padding-left:100%;
    animation:marquee 22s linear infinite;
    font-size:.85rem;
}

.marquee-wrapper:hover .marquee-content{
    animation-play-state:paused;
}

@keyframes marquee{
    from{transform:translateX(0);}
    to{transform:translateX(-100%);}
}

.close-topbar{
    font-size:1.1rem;
    color:#1e293b;
    padding:0 6px;
}

/* ==================================================
   NAVBAR
================================================== */
#navbar{
    position:sticky;
    top:38px;
    width:100%;
    background:var(--primary);
    z-index:2500;
    box-shadow:var(--shadow);
}

.container.nav-iner{
    max-width:1280px;
    margin:auto;
    padding:12px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.logo img{
    height:52px;
    width:auto;
}

/* Desktop Menu */
.nav_menu{
    display:flex;
    align-items:center;
    gap:1.2rem;
}

.nav_menu li{
    position:relative;
}

.nav_link{
    color:var(--white);
    font-size:1rem;
    font-weight:600;
    padding:6px 0;
    transition:var(--transition);
    white-space:nowrap;
}

.nav_link:hover{
    color:var(--gold);
}

/* Dropdown */
.dropdown-menu{
    position:absolute;
    top:110%;
    left:0;
    min-width:220px;
    background:var(--white);
    border-radius:14px;
    box-shadow:0 18px 28px rgba(0,0,0,.12);
    padding:8px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:var(--transition);
}

.dropdown-menu a{
    display:block;
    padding:10px 16px;
    color:#111827;
    font-size:.95rem;
}

.dropdown-menu a:hover{
    background:#f3f4f6;
    color:var(--primary);
}

.nav_menu li:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Right */
.nav_right{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav_cta{
    background:var(--gold);
    color:#111827;
    padding:10px 18px;
    border-radius:40px;
    font-size:.92rem;
    font-weight:700;
    transition:var(--transition);
}

.nav_cta:hover{
    background:var(--gold-dark);
}

/* Hamburger */
.humburger{
    display:none;
    flex-direction:column;
    gap:5px;
}

.humburger span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:4px;
}

/* ==================================================
   MOBILE MENU
================================================== */
.mobile_menu{
    display:none;
    background:var(--primary);
    padding:14px 18px;
    border-top:1px solid rgba(255,255,255,.12);
}

.mobile_menu.active{
    display:block;
}

.mobile_menu li{
    margin-bottom:10px;
}

.mobile_menu .nav_link{
    display:block;
    font-size:1rem;
    padding:8px 0;
}

.mobile-dropdown-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.arrow{
    font-size:.8rem;
    transition:var(--transition);
}

.mobile-dropdown-toggle.active .arrow{
    transform:rotate(180deg);
}

.dropdown-submenu{
    display:none;
    padding-left:14px;
    margin-top:6px;
}

.dropdown-submenu.active{
    display:block;
}

/* ==================================================
   MAIN CONTENT
================================================== */
.page-content{
    position:relative;
    z-index:20;
    max-width:1200px;
    margin:120px auto 0 auto;
    background:rgba(255,255,255,.96);
    border-radius:28px 28px 0 0;
    padding:28px;
    min-height:70vh;
    box-shadow:var(--shadow);
}

.hero-overlay{
    background:rgba(0,0,0,.35);
    color:#fff;
    padding:40px 20px;
    border-radius:18px;
    text-align:center;
    margin-bottom:25px;
}

.hero-overlay h1{
    font-size:2.4rem;
    line-height:1.2;
    margin-bottom:12px;
}

.hero-overlay p{
    max-width:700px;
    margin:auto;
    font-size:1.05rem;
}

/* Generic sections */
section{
    margin-bottom:24px;
}

/* ==================================================
   FOOTER
================================================== */
.footer{
    position:relative;
    z-index:20;
    width:100%;
    background:var(--dark);
    color:var(--muted);
    padding:50px 0 20px;
    margin-top:0;
}

.footer_container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.footer_col h3,
.footer_col h4{
    color:#fff;
    font-size:1.1rem;
    margin-bottom:14px;
}

.footer_col p,
.footer_col a{
    color:var(--muted);
    font-size:.95rem;
}

.footer_col li{
    margin-bottom:8px;
}

.footer_col a:hover{
    color:var(--gold);
}

.footer_bottom{
    max-width:1200px;
    margin:28px auto 0;
    padding:18px 20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    font-size:.85rem;
}

/* ==================================================
   LAPTOP / TABLET
================================================== */
@media (max-width:992px){

    .nav_menu{
        gap:.9rem;
    }

    .nav_link{
        font-size:.92rem;
    }

    .nav_cta{
        padding:8px 14px;
        font-size:.85rem;
    }

    .page-content{
        width:95%;
        padding:24px;
    }

    .hero-overlay h1{
        font-size:2rem;
    }

    .footer_container{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ==================================================
   TABLET / MOBILE
================================================== */
@media (max-width:768px){

    .top-bar-container{
        padding:6px 12px;
    }

    .marquee-content{
        font-size:.72rem;
        animation-duration:16s;
    }

    #navbar{
        top:34px;
    }

    .container.nav-iner{
        padding:10px 12px;
    }

    .logo img{
        height:42px;
    }

    .nav_menu,
    .nav_cta{
        display:none;
    }

    .humburger{
        display:flex;
    }

    .mobile_menu{
        padding:14px 12px;
    }

    .page-content{
        width:100%;
        margin:88px 0 0 0;
        border-radius:0;
        padding:18px 14px;
        min-height:auto;
    }

    .hero-overlay{
        padding:28px 14px;
        border-radius:14px;
    }

    .hero-overlay h1{
        font-size:1.6rem;
    }

    .hero-overlay p{
        font-size:.96rem;
    }

    .footer{
        padding:38px 0 18px;
    }

    .footer_container{
        grid-template-columns:1fr;
        text-align:center;
        gap:24px;
        padding:0 14px;
    }

    .footer_bottom{
        padding:16px 14px 0;
    }

    /* Better mobile hero background */
    .global-hero{
        position:absolute;
        height:45vh;
    }
}

/* ==================================================
   SMALL PHONES
================================================== */
@media (max-width:480px){

    .top-bar-container{
        padding:5px 10px;
    }

    .marquee-content{
        font-size:.65rem;
    }

    #navbar{
        top:30px;
    }

    .container.nav-iner{
        padding:9px 10px;
    }

    .logo img{
        height:36px;
    }

    .page-content{
        margin-top:78px;
        padding:14px 12px;
    }

    .hero-overlay h1{
        font-size:1.35rem;
    }

    .hero-overlay p{
        font-size:.9rem;
    }

    .footer_col h3,
    .footer_col h4{
        font-size:1rem;
    }

    .footer_col p,
    .footer_col a,
    .footer_bottom{
        font-size:.85rem;
    }
}

/* ==================================================
   EXTRA LARGE SCREENS
================================================== */
@media (min-width:1400px){

    .page-content,
    .footer_container,
    .footer_bottom,
    .top-bar-container,
    .container.nav-iner{
        max-width:1320px;
    }
}