﻿:root {
    --grad-strong: linear-gradient(90deg, #00b4ff 0%, #00ffa3 15%, #ffd84d 40%, #ffc300 70%, #ffae00 100%);
}

.ls-gradient {
    background: linear-gradient(90deg, #00b4ff 0%, #00ffa3 15%, #ffd84d 40%, #ffc300 70%, #ffae00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: "Outfit", sans-serif;*/
    background: #000;
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

/* ===================== HEADER ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000; /* Solid pure black */
    backdrop-filter: none; /* Remove the blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8%;
}

.logo img {
    height: 46px;
    display: block;
}

.nav-toggle {
    display: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Desktop menu */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

    .nav-menu > li {
        position: relative;
    }

        .nav-menu > li > a {
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            padding: 10px 0 12px;
            display: inline-block;
            position: relative;
            transition: color 0.25s ease;
        }

            .nav-menu > li > a:hover,
            .nav-menu > li.active > a {
                background: var(--grad-strong);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
            }

            .nav-menu > li > a::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 2px;
                background: var(--grad-strong);
                transition: width 0.3s ease;
            }

        .nav-menu > li:hover > a::before,
        .nav-menu > li.active > a::before {
            width: 100%;
        }


        /* Caret */
        .nav-menu > li.has-sub > a {
            padding-right: 16px;
        }

            .nav-menu > li.has-sub > a::after {
                content: "";
                position: absolute;
                top: 50%;
                right: -2px;
                width: 7px;
                height: 7px;
                border-right: 2px solid #fff;
                border-bottom: 2px solid #fff;
                transform: translateY(-50%) rotate(45deg);
                transition: transform 0.25s ease, border-color 0.25s ease;
            }

        .nav-menu > li.has-sub:hover > a::after {
            transform: translateY(-50%) rotate(225deg);
            border-color: #ddd;
        }

/* Submenu */
.mega {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: #0b0b0b;
    padding: 16px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.nav-menu li:hover > .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-strong);
    border-radius: 2px;
}

.mega a {
    display: block;
    width: 100%;
    padding: 10px 22px;
    font-size: 13px;
    color: #cfcfcf;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.6;
}

    .mega a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
    }

/* Mobile nav */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        gap: 14px;
        padding: 28px 20px;
        transition: right 0.3s ease;
    }

        .nav-menu.active {
            right: 0;
        }

    .mega {
        position: static;
        min-width: 0;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #0f0f0f;
    }

    .nav-menu li.open > .mega {
        display: block;
    }

    .nav-menu li.open.has-sub > a::after {
        transform: translateY(-50%) rotate(225deg);
    }
}

/* ============================= */
/*  MOBILE NAV MENU LEFT ALIGN   */
/* ============================= */
@media (max-width: 991px) {
    /* Menu container */
    .nav-menu {
        text-align: left !important;
        align-items: flex-start !important;
        padding-left: 28px !important;
    }

        /* Each top-level link */
        .nav-menu > li > a {
            text-align: left !important;
            justify-content: flex-start !important;
            width: 100% !important;
            padding: 10px 0 !important;
            font-weight: 600 !important;
            letter-spacing: 0.4px;
        }

        /* Dropdown (submenu) alignment */
        .nav-menu .mega {
            text-align: left !important;
            padding-left: 10px !important;
        }

            .nav-menu .mega a {
                text-align: left !important;
                justify-content: flex-start !important;
                padding: 8px 0 !important;
            }

        /* Remove any centering leftover */
        .nav-menu li,
        .nav-menu li a {
            display: block !important;
            text-align: left !important;
        }

        /* Caret arrow spacing fix */
        .nav-menu > li.has-sub > a::after {
            right: 12px !important;
        }
}

/* ============================= */
/*  MOBILE NAV CARET ALIGNMENT FIX */
/* ============================= */
@media (max-width: 991px) {
    .nav-menu > li.has-sub {
        position: relative;
    }

        .nav-menu > li.has-sub > a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between; /* keeps text left, arrow right */
            padding-right: 30px !important; /* space for caret */
        }

            .nav-menu > li.has-sub > a::after {
                right: 12px !important; /* moves arrow fully to right edge */
                top: 50% !important;
                transform: translateY(-50%) rotate(45deg) !important;
                border-color: rgba(255,255,255,0.85) !important;
            }

    /* When submenu is open, rotate caret correctly */
    .nav-menu li.open.has-sub > a::after {
        transform: translateY(-50%) rotate(225deg) !important;
    }
}


.mega a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 13px;
    color: #cfcfcf;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

    .mega a::after {
        content: " ⇾";
        font-weight: 600;
        font-size: 1.52rem;
        line-height: 1;
        opacity: 0;
        transform: translateY(2px) scale(0.9);
        background: var(--grad-strong);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.3s ease;
    }

    .mega a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
    }

        .mega a:hover::after {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

/* ensure hover icon also works in mobile tap */
@media (max-width: 991px) {
    .mega a:active::after {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
}

.logo-combo {
    display: flex;
    align-items: center;
    gap: 5px;
}



.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: lowercase;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: #fff;
}

    .logo-text .top {
        font-weight: 900; /* heavy bold */
        font-size: 26px;
        letter-spacing: 0.5px;
        font-family: "Poppins", sans-serif;
        font-weight: 900;
    }

    .logo-text .bottom {
        font-size: 26px;
        font-weight: 900;
        background: linear-gradient(90deg, #00c3ff, #ffd600, #ffd84d, #ffb200);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: "Poppins", serif;
        font-style: italic;
    }

.wave-logo {
    height: 48px;
    vertical-align: middle;
    width: 90px;
    animation: waveMotion 3.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes waveMotion {
    0% {
        transform: translateY(0) skewX(0deg) scaleX(1);
    }

    25% {
        transform: translateY(2px) skewX(1deg) scaleX(1.02);
    }

    50% {
        transform: translateY(0) skewX(-1deg) scaleX(0.98);
    }

    75% {
        transform: translateY(-2px) skewX(1deg) scaleX(1.02);
    }

    100% {
        transform: translateY(0) skewX(0deg) scaleX(1);
    }
}




.nav-toggle i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .nav-menu.active + .nav-toggle i,
    .nav-toggle i.fa-xmark {
        transform: rotate(180deg);
    }





/*hero */



body {
    font-family: "Outfit", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 8vw;
}

    /* ================= BACKGROUND ================= */


    /* ✅ FULL OVERLAY */
    .hero-section::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 120vw;
        height: 120vh;
        /*  background: linear-gradient(to right, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.3) 80%);*/
        z-index: 4;
        pointer-events: none;
    }

/* ================= CONTENT ================= */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 550px;
    text-align: left;
}

.hero-heading {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

    /* ✨ Gradient highlight text */
    .hero-heading .highlight {
        background: linear-gradient( 90deg, #06B6D4 0%, #00E0A0 25%, #FFD84D 50%, #D4AF37 75%, #06B6D4 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 300%;
        animation: gradientMove 8s ease-in-out infinite;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
    }

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.5;
}

/* ================= CTA BUTTONS ================= */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .cta-buttons a {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
    }

/* Primary Button - White */
.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

    .btn-primary:hover {
        box-shadow: 0 6px 14px rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }

/* Secondary Button - Glass outline */
.btn-outline {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

    .btn-outline:hover {
        background: rgba(0, 0, 0, 0.6);
        box-shadow: 0 6px 14px rgba(212, 175, 55, 0.35);
        transform: translateY(-3px);
    }

/* Gold arrow animation */
.cta-buttons a span.arrow {
    color: #D4AF37;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-buttons a:hover span.arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        padding-left: 0;
        height: 85vh;
    }

    .hero-content {
        text-align: center;
        max-width: 90%;
    }

    .cta-buttons {
        justify-content: center;
    }
}





.hero-section::before {
    content: "";
    position: absolute; /* ✅ changed from fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.3) 80%);*/
    z-index: 4;
    pointer-events: none;
}






/* header*/


:root {
    --topbar-h: 34px;
    --navbar-h: 40px;
}

/* Full width background */
.header-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    background: #000;
}



/* Topbar */
.header-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: var(--topbar-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

    .topbar-menu li a {
        color: #fff;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .topbar-menu li a:hover {
            color: #D4AF37;
        }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-h);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
}

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        height: var(--navbar-h);
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
    }

        .nav-menu > li > a:hover {
            background: linear-gradient(90deg, #00b4ff 0%, #00ffa3 15%, #ffd84d 40%, #ffc300 70%, #ffae00 100%);
            /*                linear-gradient( 90deg, #00b4ff 0%, #00ffa3 6%, #ffd84d 15%, #ffb300 35%, #ffae00 100% );
*/
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

/* Logo */
.logo-combo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.wave-logo {
    height: 35px;
    display: block;
    margin-right: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

    .logo-text .top {
        font-size: 16px;
        font-weight: 900;
    }

    .logo-text .bottom {
        font-size: 16px;
        font-weight: 900;
        background: linear-gradient(90deg, #00c3ff, #ffd600, #ffd84d, #ffb200);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: italic;
    }

/* Mobile - hide topbar */
@media (max-width: 768px) {
    .header-topbar {
        display: none;
    }

    .header-container {
        padding: 0 20px;
    }
}


/* Target the inner navbar row */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    background: #000;
    position: relative;
}

    /* Add a wrapper for menu so it aligns with topbar edge */
    .navbar .nav-menu {
        margin-left: auto; /* ✅ pushes menu fully to right */
    }

/* Optional: keep spacing consistent */
.header-container,
.header-topbar,
.navbar {
    width: 100%;
    padding: 0 clamp(16px, 3vw, 48px);
    box-sizing: border-box;
}










/* hero */




.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - (34px + 40px));
    display: flex;
    align-items: center;
    padding-left: 8vw;
    overflow: hidden;
}




✅ FULL OVERLAY
.hero-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 120vw;
    height: 120vh;
    /* background: linear-gradient(to right, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.3) 80%);*/
    z-index: 4;
    pointer-events: none;
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to right, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.3) 80%);*/
    z-index: 4;
    pointer-events: none;
}


.hero-section {
    position: relative;
    overflow: hidden;
}




================= CONTENT =================
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 550px;
    text-align: left;
}

.hero-heading {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

✨ Gradient highlight text
.hero-heading .highlight {
    background: linear-gradient( 90deg, #06B6D4 0%, #00E0A0 25%, #FFD84D 50%, #D4AF37 75%, #06B6D4 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300%;
    animation: gradientMove 8s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.5;
}

================= CTA BUTTONS =================
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

Primary Button - White
.btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 6px 14px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

Secondary Button - Glass outline
.btn-outline {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
}

Gold arrow animation
.cta-buttons a span.arrow {
    color: #D4AF37;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-buttons a:hover span.arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        padding-left: 0;
        height: 85vh;
    }

    .hero-content {
        text-align: center;
        max-width: 90%;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 40px);
        ✅ only navbar height on mobile padding-left: 0;
        margin: 0;
        justify-content: center;
    }
}















/* Base desktop logo */
.logo-combo {
    display: flex;
    align-items: center;
    height: 60px; /* match your navbar height */
}

.logo-text img {
    height: 40px; /* standard size for desktop */
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-text img {
        height: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-combo {
        height: 70px; /* give more breathing space */
    }

    .logo-text img {
        height: 50px; /* slightly larger on mobile */
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .logo-text img {
        height: 46px;
    }
}
/* ✅ Make navbar behave like a clean flex container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ✅ vertical center */
    height: 60px; /* fixed height on mobile */
    padding: 0 16px;
}

/* ✅ Logo sizing for mobile */
.logo-text img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ✅ Toggler styling — vertically centered */
.nav-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

/* ✅ Adjustments for small mobile */
@media (max-width: 480px) {
    .navbar {
        height: 55px; /* slightly smaller */
        padding: 0 12px;
    }

    .logo-text img {
        height: 36px;
    }

    .nav-toggle {
        font-size: 26px;
    }
}

.nav-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ✅ Hide toggler in desktop */
.nav-toggle {
    display: none; /* hidden by default */
}

/* ✅ Show toggler only on mobile */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        line-height: 1;
    }
}

/* ==== HEADER HEIGHT FIX (place at the very end) ==== */

/* 1) Single source of truth for row heights */
:root {
    --topbar-h: 34px;
    --navbar-h: 64px; /* desktop navbar height */
}

@media (max-width: 991px) {
    :root {
        --topbar-h: 0px; /* topbar hidden on mobile */
        --navbar-h: 56px; /* mobile navbar height */
    }
}

/* 2) Body offset always matches the fixed header */
body {
    padding-top: calc(var(--topbar-h) + var(--navbar-h)) !important;
}

/* 3) Normalize navbar sizing and kill old vertical padding */
.navbar {
    height: var(--navbar-h) !important;
    padding: 0 16px !important; /* no vertical padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1; /* prevents line-height from adding height */
}

/* 4) Make children fit the row instead of stretching it */
.logo-combo,
.nav-toggle {
    height: var(--navbar-h);
    display: flex;
    align-items: center;
}

/* 5) Logo sizing: slightly smaller than the row for breathing space */
.logo img,
.logo-text img,
.wave-logo {
    height: calc(var(--navbar-h) - 16px) !important; /* ~8px top/bottom padding */
    width: auto;
    display: block;
}

/* 6) REMOVE the rule that inflates the row on mobile */
@media (max-width: 768px) {
    /* override previous .logo-combo { height: 70px; } */
    .logo-combo {
        height: var(--navbar-h) !important;
    }

    /* keep the logo visually larger but inside the row */
    .logo img,
    .logo-text img,
    .wave-logo {
        height: calc(var(--navbar-h) - 12px) !important;
    }
}

/* 7) Ensure the hamburger doesn’t add extra height */
.nav-toggle {
    font-size: 28px;
    line-height: 1;
}

    .nav-toggle i {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* 8) Mobile menu panel starts exactly under the navbar */
@media (max-width: 991px) {
    .nav-menu {
        top: var(--navbar-h) !important;
    }
}

.nav-toggle {
    display: none !important; /* fully hidden by default */
}

/* Show only on tablets & mobile */
@media (max-width: 991px) {
    .nav-toggle {
        display: block !important;
        font-size: 28px;
    }
}
/* ✅ Toggler styling */
.nav-toggle {
    display: none !important;
}

/* Show only on mobile/tablet */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important; /* instead of block */
        align-items: center; /* vertically center */
        justify-content: center; /* horizontally center icon */
        height: var(--navbar-h); /* match navbar height */
        padding: 0 10px; /* left-right breathing space */
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

        .nav-toggle i {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: inherit;
        }
}

/* ============= MOBILE NAV — FINAL FIXES ============= */
@media (max-width: 991px) {
    /* Panel itself */
    .nav-menu {
        position: fixed;
        top: var(--navbar-h); /* sit right under the header */
        right: -100%;
        width: min(320px, 85vw);
        height: calc(100vh - var(--navbar-h)); /* 🟢 makes it scrollable */
        overflow-y: auto; /* 🟢 enable vertical scroll */
        -webkit-overflow-scrolling: touch;
        background: #111;
        padding: 16px 20px 40px; /* tighter padding inside */
        gap: 0; /* 🟢 removes huge gaps */
        z-index: 9999;
    }

        .nav-menu.active {
            right: 0;
        }

        /* Each top-level item */
        .nav-menu > li {
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

            .nav-menu > li:last-child {
                border-bottom: 0;
            }

            .nav-menu > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between; /* label left, caret right */
                width: 100%;
                padding: 14px 4px; /*  tighter row height */
                font-size: 15px;
            }

                /* Make sure non-parent items have NO caret */
                .nav-menu > li > a::after {
                    content: none;
                }

            /* Caret only for parents */
            .nav-menu > li.has-sub > a::after {
                content: "";
                width: 8px;
                height: 8px;
                border-right: 2px solid #fff;
                border-bottom: 2px solid #fff;
                transform: rotate(45deg); /* closed state */
                margin-left: 12px;
                flex-shrink: 0;
            }

        .nav-menu li.open.has-sub > a::after {
            transform: rotate(225deg); /* open state */
        }

    /* Submenu box inside the panel */
    .mega {
        position: static !important;
        display: none; /* collapsed by default */
        background: #0f0f0f;
        border: none;
        padding: 10px 12px 12px;
        margin: 6px 0 12px;
        box-shadow: 0 10px 24px rgba(0,0,0,.35);
    }

    .nav-menu li.open > .mega {
        display: block;
    }

    .mega a {
        padding: 10px 12px;
        font-size: 14px;
    }

        .mega a::after {
            content: none;
        }
    /* remove the hover arrow in mobile */
}

/* ============= TOGGLER VERTICAL CENTER ============= */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: var(--navbar-h); /* matches header row */
        padding: 0 10px;
        font-size: 28px;
        color: #fff;
        line-height: 1;
    }

        .nav-toggle i {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: inherit;
        }
}

/* Desktop: place submenu flush under its parent */
@media (min-width: 992px) {
    .nav-menu > li {
        position: relative;
    }
    /* already there, but safe */

    .mega {
        top: calc(100% + 2px); /* was 120% -> causes a big gap */
        margin-top: 0;
        transform: translateY(8px); /* small offset for animation when hidden */
    }

    .nav-menu li:hover > .mega {
        transform: translateY(0); /* animate in without extra spacing */
    }

    /* (optional) slightly increase clickable area without adding visual gap */
    .nav-menu > li > a {
        padding-bottom: 12px;
    }
}


/* ============= BODY OFFSET (prevents extra header gap) ============= */
/* Desktop: topbar + navbar height */
body {
    padding-top: calc(var(--topbar-h) + var(--navbar-h));
}
/* Mobile: only navbar height (removes initial extra space) */
@media (max-width: 768px) {
    body {
        padding-top: var(--navbar-h);
    }
}

.mega {
    display: grid;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 120%;
    left: 0;
    padding: 16px 0 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.mega-col-1 {
    grid-template-columns: 1fr;
    min-width: 260px;
}

.mega-col-2 {
    grid-template-columns: repeat(2, 1fr);
    min-width: 480px;
}

.mega-col-3 {
    grid-template-columns: repeat(3, 1fr);
    min-width: 720px;
}

.nav-menu li:hover > .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .mega {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        grid-template-columns: 1fr !important;
        background: #0f0f0f;
        padding: 10px 15px;
        border: none;
        box-shadow: none;
    }

    .nav-menu li.open > .mega {
        display: grid;
    }
}

.mega {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b0b0b;
    padding: 16px 0 18px;
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.nav-menu li:hover > .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .mega {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        grid-template-columns: 1fr !important;
        background: #0f0f0f;
        padding: 10px 15px;
        border: none;
        box-shadow: none;
    }

    .nav-menu li.open > .mega {
        display: grid;
    }

    .nav-menu > li.has-sub > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .nav-menu > li.has-sub > a::after {
            content: "";
            width: 8px;
            height: 8px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(45deg);
            transition: transform 0.25s ease;
        }

    .nav-menu li.open.has-sub > a::after {
        transform: rotate(225deg);
    }
}

@media (min-width: 992px) {
    .mega {
        display: grid;
        gap: 4px 24px;
        padding: 12px 20px 14px;
    }

        .mega a {
            padding: 6px 0;
            font-size: 13px;
            line-height: 1.4;
        }

            .mega a:hover {
                background: rgba(255, 255, 255, 0.05);
            }
}

.mega {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b0b0b;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: grid;
    gap: 12px 28px;
}

.nav-menu li:hover > .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

.mega-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mega-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mega-col h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mega-col a {
        color: #cfcfcf;
        text-decoration: none;
        font-size: 13px;
        line-height: 1.4;
        padding: 4px 0;
        transition: color 0.25s ease;
    }

        .mega-col a:hover {
            color: #fff;
        }

@media (max-width: 991px) {
    .mega {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        padding: 10px 16px;
        box-shadow: none;
        border: none;
    }

    .nav-menu li.open > .mega {
        display: grid;
    }
}


.mega-col a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    padding: 4px 0;
    transition: color 0.3s ease;
}

    .mega-col a:hover {
        color: #ffffff;
    }

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #0a0a0a;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 80px 20px 40px;
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu li {
            display: block;
            width: 100%;
        }


    .mega {
        display: none;
        position: static !important;
        background: none;
        box-shadow: none;
        padding: 0 0 10px;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .nav-menu li.open > .mega {
        display: block;
    }

    .mega {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }


        .mega a {
            display: block;
            padding: 10px 0;
            color: #fff;
            text-decoration: none;
        }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #0a0a0a;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 20px 20px 40px; /* ⬅️ reduced top padding */
    }
}

</style >
<style >
.header-wrapper {
    background: #000;
    color: #fff;
    width: 100%;
}

.header-container {
    display: grid;
    grid-template-columns: 300px auto; /* Logo + Right */
    align-items: center;
}

.header-left {
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
}

.header-logo img {
    max-height: 80px;
    width: auto;
}

.header-right {
    display: grid;
    grid-template-rows: auto auto;
}

.header-topbar {
    display: flex;
    justify-content: flex-end;
    padding: 5px 40px 0 0;
}

.topbar-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-toggle {
    display: none;
}

@media (max-width: 991px) {
    .header-container {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto;
    }

    .header-topbar {
        display: none;
    }

    .header-left {
        justify-content: flex-start;
    }

    .header-logo img {
        max-height: 60px;
    }

    .nav-toggle {
        display: block;
        color: #fff;
        font-size: 26px;
        cursor: pointer;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background: #000;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

        .nav-menu.open {
            display: flex;
        }
}

.header-right {
    display: grid;
    grid-template-rows: auto auto;
    justify-items: end;
    padding-right: 40px;
}

.header-topbar {
    padding: 5px 0 0 0; /* was: 5px 40px 0 0 */
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.navbar {
    padding: 0; /* was: 0 40px */
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}

.topbar-menu,
.nav-menu {
    margin: 0;
    padding: 0;
}

.mega {
    right: 0;
}

@media (max-width: 991px) {
    .header-topbar {
        display: none;
    }

    .header-right {
        padding-right: 20px;
    }
    /* optional tighter mobile padding */
}

#navToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-toggle {
    display: none;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        height: var(--navbar-h);
        padding: 0 12px;
        cursor: pointer;
        z-index: 99999;
    }

        .nav-toggle i {
            display: flex;
            align-items: center;
            justify-content: center;
        }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: var(--navbar-h);
        right: -100%;
        flex-direction: column;
        width: min(320px, 85vw);
        height: calc(100vh - var(--navbar-h));
        background: #111;
        padding: 20px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 9999;
    }

        .nav-menu.active {
            right: 0;
        }
}

.nav-toggle {
    display: none;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        height: var(--navbar-h);
        padding: 0 12px;
        top: 15px;
        cursor: pointer;
        position: relative;
        z-index: 10001;
    }

        .nav-toggle i {
            display: flex;
            align-items: center;
            justify-content: center;
        }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 38px;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: var(--navbar-h);
        right: -100%;
        flex-direction: column;
        width: min(320px, 85vw);
        height: calc(100vh - var(--navbar-h));
        background: #111;
        padding: 20px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 10000;
        gap: 18px;
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu > li > a {
            padding: 14px 0;
            display: flex;
            justify-content: space-between;
            color: #fff;
            text-decoration: none;
        }
}

.mobile-icons {
    display: none;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translateY(-50%);
}

    .mobile-icons button {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
    }

@media (max-width: 992px) {
    .mobile-icons {
        display: flex;
    }

    .header-topbar {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding-top: 100px;
        transition: right 0.35s ease;
        z-index: 9999;
    }

        .navbar.active {
            right: 0;
        }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

        .nav-menu li {
            border-top: 1px solid #222;
        }

            .nav-menu li a {
                padding: 14px 20px;
                font-size: 15px;
            }

    .mega {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s ease;
        grid-template-columns: 1fr !important;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0 0 10px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

body.menu-open {
    overflow: hidden;
}

.mega a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .mega a:hover {
        color: #ffffff;
    }

@media (max-width: 992px) {
    .mega a {
        display: block;
        padding: 10px 0;
        color: #cfcfcf;
    }

        .mega a:hover {
            color: #ffffff;
            background: #111;
        }
}

.header-topbar .search-btn {
    background: none;
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 12px;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

    .header-topbar .search-btn i {
        font-size: 16px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-topbar .search-btn:focus {
        outline: none;
        box-shadow: none;
    }

    .header-topbar .search-btn:hover {
        color: #ffae00;
    }

@media (max-width: 992px) {

    .nav-menu li {
        border-top: none;
        border-bottom: 1px solid #222;
        margin: 0;
        padding: 0;
    }

        .nav-menu li a {
            display: block;
            padding: 12px 20px;
            line-height: 1.4;
        }

    .nav-menu {
        padding: 0;
        margin: 0;
        list-style: none;
    }


        .nav-menu li:last-child {
            border-bottom: none; /* remove last separator */
        }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed !important;
        top: 81px !important;
        right: -100% !important;
        height: calc(100vh - 81px) !important;
        background: #000;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        transition: right 0.35s ease;
        z-index: 9999;
    }

        .nav-menu.active {
            right: 0 !important;
        }
}

.mega h4,
.mega .submenu-heading {
    color: #ffffff;
    font-weight: 600;
    margin: 8px 0 6px;
    text-transform: uppercase;
}

.mega a {
    color: #cfcfcf;
    font-weight: 400;
    display: block;
    padding: 6px 0;
    transition: color 0.25s ease;
}

    .mega a:hover {
        color: #ffffff;
    }

@media (max-width: 992px) {
    .mega h4,
    .mega .submenu-heading {
        padding-top: 10px;
        font-size: 15px;
    }

    .mega a {
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .mega {
        position: static;
        background: none;
        border: 0;
        box-shadow: none;
        grid-template-columns: 1fr !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        padding: 0;
    }

    .nav-menu li.open > .mega .mega-col {
        padding: 10px 0;
    }
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 10px;
    margin-top: 15px;
}

.route-btn {
    background: #f2f2f2;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
}

    .route-btn:hover {
        background: #6a1bb9;
        color: #fff;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 15px;
}

    .gallery-grid img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
    }

.announcement-bar {
    width: 100%;
    background: linear-gradient(90deg,#ffae00,#ffd84d);
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 10px;
    flex-wrap: wrap;
}

/* text */
.announce-text {
    font-size: 15px;
    text-align: center;
}

/* divider */
.divider {
    margin: 0 6px;
}

/* button */
.announce-btn {
    background: #000;
    color: #fff;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

    .announce-btn:hover {
        background: #333;
    }

/* ---------- TABLET ---------- */
@media(max-width:992px) {
    .announcement-bar {
        gap: 12px;
        padding: 10px;
    }

    .announce-text {
        font-size: 14px;
    }
}

/* ---------- MOBILE ---------- */
@media(max-width:600px) {

    .announcement-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .announce-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .announce-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    .divider {
        display: none;
    }
}
/* Apply button pulse */
.announce-btn {
    background: #000;
    color: #fff;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    position: relative;
    animation: pulseGlow 2s infinite;
}

/* Glow animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0,0,0,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* stop animation on hover */
.announce-btn:hover {
    animation: none;
    background: #222;
}

.announcement-bar {
    width: 100%;
    background: #ffae00;
}

/* MATCH HEADER LEFT/RIGHT SPACING */
.announcement-inner {
    width: 100%;
    padding-left: 60px; /* adjust to header spacing */
    padding-right: 60px; /* adjust to header spacing */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 26px;
    font-weight: 600;
}

/* LEFT */
.announce-left {
    color: #000;
    font-size: 15px;
}

/* RIGHT */
.announce-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CODE */
.college-code {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
}

/* BUTTON */
.announce-btn {
    background: #000;
    color: #fff;
    padding: 7px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

    .announce-btn:hover {
        background: #222;
    }

/* HIDE ON MOBILE */
@media(max-width:768px) {
    .announcement-bar {
        display: none;
    }
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*background: url('https://res.cloudinary.com/dc3ijuowd/image/upload/v1764577278/SVPEC11_iio3t1.png') no-repeat center center/cover !important;*/

    background: url('IMG/banner.png') no-repeat center center/cover !important;
    background: url('IMG/banner.png') no-repeat center center/cover !important;
    /*background: url('img/buile.png') no-repeat center center/cover !important;*/
    z-index: 1;
    filter: none !important;
    opacity: 1 !important;
}

.hero-section, .hero-bg {
    background-blend-mode: normal !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}



.hero-section {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* Dark overlay for better text visibility */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

/* Desktop → show video, hide image */
.hero-video {
    display: block;
}

.hero-mobile-img {
    display: none;
}

/* Mobile → hide video, show image */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero-mobile-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile → hide video, show image */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero-mobile-img {
        display: block;
        position: absolute; /* ← add this */
        top: 0; /* ← add this */
        left: 0; /* ← add this */
        width: 100%;
        height: 100%;
        object-fit: cover; /* ← fills without stretching */
        object-position: center center; /* ← center the image */
        z-index: 0; /* ← behind content */
    }
}