/* Header Styles */
/* --- Original Desktop Styles (Same) --- */
:root {
    --primary: #050c18;
    --accent: #00d4ff;
    --glass: rgba(5, 12, 24, 0.7); 
    --text-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

.hero-header {
    height: 65vh;
    background: linear-gradient(rgba(5, 12, 24, 0.6), rgba(5, 12, 24, 0.8)), 
                url('/images/banner.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 2000; /* Increased z-index */
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-logo { height: 50px; width: auto; }
.nav-links { display: flex; list-style: none; align-items: center; }

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link.active-tab {
    border: 1px solid var(--accent) !important;
    background: rgba(0, 212, 255, 0.1) !important;
    color: var(--accent) !important;
}

/* --- Mobile Menu & X Animation Fixes --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2001; /* Highest z-index */
    padding: 5px;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: var(--text-white);
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .menu-toggle { display: flex; }

    /* X Animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; /* Navbar ke theek niche */
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 2px solid var(--accent);
        z-index: 1999;
    }

    .nav-links.mobile-active { display: flex; }

    .nav-links li { width: 100%; text-align: center; margin: 15px 0; }
    
    .hero-text-container h1 { font-size: 1.6rem; }
    .highlight { font-size: 1.6rem; display: block; margin-left: 0; }
}
/* --- Desktop Styles (Unchanged) --- */

/* Hover effect for luxury feel */
.nav-link:hover:not(.active-tab) {
    color: var(--accent);
    opacity: 0.8;
}

.nav-links li a:hover {
    color: var(--accent);
    border: 1px solid var(--accent);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.nav-cta {
    border: 1px solid var(--accent) !important;
    background: rgba(0, 212, 255, 0.1) !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

/* Hero Content Styling */
.hero-overlay {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; 
}

/* Badge Fix: Upar khiskaya */
.badge {
    display: inline-block;
    color: var(--accent);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    background: rgba(0, 212, 255, 0.1);
    /* In lines se badge upar jayega */
    margin-top: 0px; 
    margin-bottom: 15px;
}

/* Heading Fix: Ek hi row mein aur space kam */
.hero-text-container h1 {
    font-size: 2.0rem;
    color: white;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 5px;
}

.highlight {
    color: var(--accent);
    text-transform: uppercase;
    display: inline-block; 
    font-size: 2.0rem; /* Size h1 ke barabar rakha row balance karne ke liye */
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    margin-left: 10px;
}

.hero-text-container p {
    color: #cbd5e0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 5px auto 20px;
}


/* Footer Styles */
.main-footer {
    background: #050d1a; /* Slightly darker than nav for depth */
    color: #cbd5e0;
    padding: 60px 8% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white if it has dark text */
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1a2a41;
    font-size: 0.85rem;
}