﻿
body {
    /* ────────────────────────────────────────────────
     Government / NIC Bihar inspired Header Style
     Clean, accessible, professional - white bg + teal accent
  ──────────────────────────────────────────────── */
    .gov-header

{
    background-color: #ffffff;
    border-bottom: 4px solid #005566; /* Official Bihar/GoI teal-green tone */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    font-family: Arial, Helvetica, sans-serif;
}

.gov-container {
    /* max-width: 1307px;*/
    margin: 0 auto;
    padding: 2px 60px 2px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left brand */
.gov-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gov-logo img {
    height: 70px; /* Adjust if your logo needs different size */
    width: auto;
    vertical-align: middle;
}

.dept-name {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #003366; /* Dark blue - common in gov portals */
    line-height: 1.25;
}

/* Right CM section */
.gov-cm-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cm-photo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cm-details {
    text-align: left;
}

.cm-name {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #8B0000; /* Dark red as in your original design */
    margin-bottom: 2px;
}

.cm-designation {
    display: block;
    font-size: 0.95rem;
    font-weight: bold;
    color: #8B0000;
}

/* Bottom accessibility / tagline bar (common in NIC/GoI sites) */
.gov-access-bar {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #555;
    /*padding: 6px 0;*/
    text-align: center;
}

/* Responsive design */
@media (max-width: 992px) {
    .gov-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .gov-brand {
        justify-content: center;
    }

    .gov-cm-section {
        justify-content: center;
    }

    .cm-details {
        text-align: center;
    }

    .dept-name {
        font-size: 1.45rem;
    }
}

@media (max-width: 480px) {
    .cm-photo img {
        width: 60px;
        height: 60px;
    }

    .dept-name {
        font-size: 1.3rem;
    }
}
}
