/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0px;
    left: 0;
    /* width: calc(100% - 80px); */
    width: 100%;
    /* background: rgba(15, 23, 42, 0.04); */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid var(--glass-border); */
    /* border-radius: 32px; */
    padding: 0px !important;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        top: 0;
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--glass-border);
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }

/* ===== TOP ROW: Brand + Swiper + CTA ===== */
.navbar-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    gap: 24px;
    padding-inline: 40px;
}

/* Brand + Event Info */
.navbar-brand-wrapper {
    display: flex;
    align-items: end;
    gap: 16px;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    margin: 0 !important;
}

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

.event-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.event-date {
    color: var(--accent-gold);
    font-size: 17px;
    font-weight: 800;
    font-family: 'Inter', system-ui, sans-serif;
    /* letter-spacing: 0.5px; */
}

.event-venue {
    color: var(--accent-gold);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Swiper Slider */
.navbar-swiper-wrapper {
    flex: 1;
    max-width: 600px;
    min-width: 200px;
    overflow: hidden;
    text-align: center;
}

    .navbar-swiper-wrapper p {
        font-size: 14px;
        color: var(--text-secondary);
        margin-bottom: 4px;
    }

.navbar-swiper {
    width: 100%;
    height: 95px;
}

    .navbar-swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 10px;
        width: auto !important;
        aspect-ratio: 1 / 1;
        min-width: 120px;
        background: #fff;
        padding: 5px;
        border-radius: 10%;
        overflow: hidden;
        transition: all 0.3s ease;
        font-size: 14px;
    }

        .navbar-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .navbar-swiper .swiper-slide span {
            color: var(--text-primary);
            font-size: 9px;
            font-weight: 600;
            font-family: 'Inter', system-ui, sans-serif;
            white-space: nowrap;
        }

/* CTA Button */
.navbar-cta-wrapper {
    flex-shrink: 0;
}

.btn-book-stand {
    padding: 12px 28px !important;
    border-radius: 24px !important;
    font-size: 14px !important;
    white-space: nowrap;
}

/* ===== BOTTOM ROW: Navigation Menu ===== */
.navbar-bottom-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 0;
    position: relative;
    padding-inline: 40px;
    background: #162f66;
}

    .navbar-bottom-row .event-date {
        color: var(--accent-gold);
    }

    .navbar-bottom-row .event-venue {
        color: #fff;
    }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-link {
        color: #ffffff !important;
        font-size: 18px;
        font-weight: 500;
        font-family: 'Inter', system-ui, sans-serif;
        padding: 8px 12px !important;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus,
        .navbar-nav .nav-link.active {
            color: var(--accent-gold) !important;
        }

    .navbar-nav .dropdown-toggle::after {
        border: solid var(--text-muted);
        border-width: 0 1.5px 1.5px 0;
        transform: rotate(45deg);
        width: 6px;
        height: 6px;
        margin-left: 6px;
        vertical-align: 2px;
        transition: transform 0.3s ease;
        border-top: none;
        border-left: none;
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(225deg);
        vertical-align: -2px;
    }

/* Dropdown Menu - Level 1 */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px !important;
    padding: 8px 0 !important;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-top: 0px !important;
}

.dropdown-item {
    color: var(--text-secondary) !important;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', system-ui, sans-serif;
    padding: 10px 24px !important;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--primary-green) !important;
        background: var(--glass-bg) !important;
    }

.dropdown-divider {
    border-color: var(--glass-border) !important;
    margin: 8px 16px !important;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Submenu - Level 2 */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-item::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border: solid var(--text-muted);
        border-width: 0 1.5px 1.5px 0;
        transform: rotate(-45deg);
        margin-left: 8px;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -8px;
        margin-left: 4px;
        display: none;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

/* Nav CTA Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    padding: 14px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;    
}

.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: #ffffff;
}

    .btn-nav-primary:hover {
        background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--glow-green);
        color: var(--text-primary);
    }

.btn-nav-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

    .btn-nav-outline:hover {
        background: var(--glass-bg);
        border-color: var(--glass-border-hover);
        color: var(--text-primary);
    }

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px 12px !important;
    margin-left: auto;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    padding: 6px;
    color: #ffffff;
    filter: invert(1);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1199px) {
    .navbar {
        width: 100%;
        /* padding: 0 20px !important; */
    }

    .navbar-top-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 40px;
    }

    .navbar-brand-wrapper {
        flex: 1;
        min-width: 0;
    }

    .navbar-swiper-wrapper {
        max-width: 100%;
        width: 100%;
        min-width: 250px;
    }



    .navbar-bottom-row {
        padding: 4px 56px;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 16px;
        border: 1px solid var(--glass-border);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

        .navbar-nav .nav-item {
            width: 100%;
        }

    .nav-item.dropdown:hover > .dropdown-menu {
        display: none;
    }

        .nav-item.dropdown:hover > .dropdown-menu.show {
            display: block;
        }

    .dropdown-submenu:has(.dropdown-item.dropdown-toggle.show) .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:has(.dropdown-item.dropdown-toggle) .dropdown-menu {
        display: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid var(--glass-border);
        color: var(--text-secondary) !important;
        font-size: 15px;
        font-weight: 500;
        font-family: 'Inter', system-ui, sans-serif;
        text-decoration: none;
        justify-content: center;
    }

    .dropdown-item {
        justify-content: center;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: var(--glass-bg) !important;
        border: none !important;
        box-shadow: none;
        padding-left: 16px !important;
        width: 100%;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        display: none;
        margin: 0;
        padding-left: 16px !important;
        width: 100%;
    }

    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

    .nav-cta {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        width: 100%;
    }

    .btn-nav {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .event-info {
        /* Hide venue text on very small screens */
    }

    .navbar-top-row .navbar-brand-wrapper {
        gap: 8px;
        justify-content: center;
    }

    .navbar-swiper-wrapper {
        max-width: 100%;
        width: 100%;
        min-width: 150px;
    }
}

/* footer csss start here */

.site-footer {
    padding: 80px 40px 0px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
    backdrop-filter: blur(3px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    /* max-width: 220px; */
}

    .footer-brand img {
        height: 70px;
    }

.footer-brand-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

    .footer-brand-text .power {
        color: var(--text-primary);
        font-size: 20px;
        font-weight: 600;
    }

    .footer-brand-text .elec {
        color: var(--primary-green);
        font-size: 20px;
        font-weight: 600;
    }

    .footer-brand-text .india {
        color: var(--accent-gold);
        font-size: 15px;
        font-weight: 500;
    }

.footer-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a,
    .footer-links li {
        font-size: 15px;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

.footer-contact p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

    .footer-bottom p {
        font-size: 15px;
        color: var(--text-muted);
    }

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 30px;
    }

        .site-footer * {
            place-content: center;
            text-align: center;
        }

        .site-footer p {
            width: 100%;
            max-width: 100%;
            text-align: center;
        }

    .footer-links a,
    .footer-links li {
        text-align: center;
    }
}
