/* --- UPDATED HEADER.CSS (h2 matches h1 style) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1a4e6e, #112345, #061629);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid #00ffd5;
    color: #c0fff7;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* 1. TOP BAR Layout */
.header-content-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 20px;
    min-height: 50px;
    box-sizing: border-box;
}

/* h1 और h2 दोनों के लिए एक जैसा स्टाइल */
header h1 {
    margin: 0;
    color: #00ffd5;
    /* सेम फिरोजी रंग */
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 8px #00ffd5a8;
    /* सेम ग्लो इफ़ेक्ट */
    user-select: none;
    font-family: inherit;
    font-size: 1.4rem;
}

header h2 {
    margin: 0;
    color: #00ffd5;
    /* सेम फिरोजी रंग */
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 8px #00ffd5a8;
    /* सेम ग्लो इफ़ेक्ट */
    user-select: none;
    font-family: inherit;
    font-size: 1.1rem;
    /* साइज थोड़ा कम ताकि बैलेंस बना रहे */
    flex-grow: 1;
    text-align: center;
}


/* Social Icons Container */
.image-nav-container ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.image-nav-container li {
    margin-left: 15px;
}

.image-nav-container li a i {
    color: #00ffd5;
    font-size: 1.4rem;
    display: block;
    transition: color 0.3s, text-shadow 0.3s;
}

.image-nav-container li a:hover i {
    color: #f0fffb;
    text-shadow: 0 0 10px #00ffd5;
}

/* 2. SECONDARY MENU */
.secondary-menu {
    background-color: rgba(0, 0, 0, 0.15);
    width: 100%;
    border-top: 1px solid rgba(0, 255, 213, 0.2);
    padding: 4px 20px;
}

.secondary-menu ul {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-start;
}

.secondary-menu ul li a {
    color: #c0fff7;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 4px 8px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    border-radius: 5px;
}

.secondary-menu ul li a:hover {
    background: #04c2a3;
    color: #f0fffb;
    box-shadow: 0 0 10px #00ffd5;
}

/* 🚀 MOBILE OPTIMIZATION 🚀 */
@media (max-width: 600px) {
    .header-content-bar {
            min-height: 40px;
        padding: 4px 10px;
    }

    header h1 {
        font-size: 1.1rem;
    }

    header h2 {
        font-size: 0.85rem;
        /* मोबाइल पर जगह कम होती है */
        letter-spacing: 0.02em;
    }

    .image-nav-container li a i {
        font-size: 1rem;
    }

    .secondary-menu {
        padding: 3px 3px;
    }

    .secondary-menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    .secondary-menu ul li a {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}