/* 🔒 FIXED HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

/* Prevent content hiding under header */
body {
    padding-top: 170px;  /* adjust based on header height */
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    background: #f2f7ff;
    color: #000000;
    margin: 0;
}

/* 🟦 Main Header */
.main-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    height: 150px;
}

.top-bar {
    background: #031a3b;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar .left-info span {
    margin-right: 20px;
}

.social-icons i {
    color: #fff;
    margin-left: 12px;
    cursor: pointer;
    font-size: 17px;
}

.social-icons i:hover {
    opacity: 0.7;
}
/* 🔵 Top Bar */
.top-bar {
    background: #031a3b;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    height: 50px;
}

.top-bar .left-info span {
    margin-right: 20px;
}

.social-icons {
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    gap: 20px;
    margin-top: 3px;
}

.social-icons i:hover {
    opacity: 0.7;
}

.logo img {
    height: 120px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;   /* 🔥 space between National Emblem & 75 Years */
}

.navbar {
    display: flex;
    gap: 25px;
    padding: 15px 30px;
    align-items: center;
    margin-left: 70px;
}

.navbar a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-radius: 10px;
}

/* Underline animation */
.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: -5px;
    background: #ffcc00;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* Make hover area continuous */
.dropdown > a {
    display: inline-block;
}

/* Dropdown box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;             /* FIX: attach dropdown directly below menu */
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-top: 4px solid #ffcc00;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 100;
}

/* Links */
.dropdown-content a {
    color: #003e80;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}

/* Hover on links */
.dropdown-content a:hover {
    background: #f1f5ff;
}

/* Hover trigger (now stable) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Default (Desktop View) */
        .image-container {
            display: flex;
            justify-content: center;
            gap: 5px;
            position: absolute;
            top: 60px;
            right: 30px;
        }

        .icon-img {
            height: 70px;
            border-radius: 8px;
        }

        /* Tablet View */
        @media (max-width: 991px) {
            .icon-img {
                height: 70px;
            }

            .image-container {
                top: 15px;
                right: 10px;
            }
        }

        /* Mobile View */
        @media (max-width: 600px) {
            .image-container {
                position: static; /* remove absolute for better responsiveness */
                justify-content: center;
                margin-top: 5px;
            }

            .icon-img {
                height: 45px; /* reduce size on mobile */
            }
        }

        /* Very small screens */
        @media (max-width: 400px) {
            .icon-img {
                height: 35px;
            }
        }


    .scroll-left {
        width: 100%;
        height: 60px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;

        background: linear-gradient(to right, #003e80, #007bff); /* Modern gradient */
        color: #fff; /* Text color white */
        border: none;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5); /* Soft shadow */
    }

    .scroll-left p {
        position : absolute;
        white-space: nowrap;
        font-size: 22px;
        font-weight: 600;
        padding: 0 15px;
        animation: scroll-left 10s linear infinite;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Smooth text glow */
    }

    /* Hover â†’ pause */
    .scroll-left:hover p {
        animation-play-state: paused;
    }

    /* Keyframes */
    @keyframes scroll-left {
        0%   { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }

    @keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
    }

.tax-payment-section {
    background: #f6f7fb;
    padding: 60px 20px;
}

.tax-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.section-title {
    text-align: center;
    color: #0b2a6f;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.payment-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.qr-box {
    width: 40%;
    text-align: center;
}

.qr-box img {
    width: 220px;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
}

.qr-box h3 {
    margin-bottom: 15px;
    color: #0b2a6f;
}

.note {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

.payment-details {
    width: 60%;
}

.payment-details h3 {
    margin-bottom: 20px;
    color: #0b2a6f;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 15px;
}

.detail-row span {
    width: 150px;
    color: #555;
}

.detail-row strong {
    color: #000;
}

.warning {
    margin-top: 25px;
    color: #d84315;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-box {
        flex-direction: column;
        text-align: center;
    }

    .qr-box,
    .payment-details {
        width: 100%;
    }

    .detail-row {
        justify-content: center;
    }
}

.tax-payment-section {
    background: #f6f7fb;
    padding: 60px 20px;
}

.tax-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.section-title {
    text-align: center;
    color: #0b2a6f;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.payment-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.qr-box {
    width: 40%;
    text-align: center;
}

.qr-box img {
    width: 220px;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
}

.qr-box h3 {
    margin-bottom: 15px;
    color: #0b2a6f;
}

.note {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

.payment-details {
    width: 60%;
}

.payment-details h3 {
    margin-bottom: 20px;
    color: #0b2a6f;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 15px;
}

.detail-row span {
    width: 150px;
    color: #555;
}

.detail-row strong {
    color: #000;
}

.warning {
    margin-top: 25px;
    color: #d84315;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-box {
        flex-direction: column;
        text-align: center;
    }

    .qr-box,
    .payment-details {
        width: 100%;
    }

    .detail-row {
        justify-content: center;
    }
}


/* 🔵 Full Footer */
.big-footer {
    background: #0a1f44;
    color: #ffffff;
    padding: 40px;
    font-family: sans-serif;
}

iframe{
    border-radius: 10px;
    display: flex;
    margin: 60px auto;
}   

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo Section */
.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
    mix-blend-mode: multiply;
    background: transparent;   /* remove background */
    display: block;
}

.footer-logo p {
    margin: 8px 0 15px 0;
    line-height: 1.5;
}

/* Lists */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Bottom Row */
.footer-bottom {
    border-top: 1px solid #ffffff33;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
    gap: 20px;
    margin-top: 3px;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Social Icons */
.footer-social i {
    margin: 0 10px;
    font-size: 22px;
    background: #fff;
    color: #0a1f44;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-social i:hover {
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social i {
        margin-top: 10px;
    }
}
