/* Ã°Å¸â€â€™ 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;
}

.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: 100px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;   /* Ã°Å¸â€Â¥ space between National Emblem & 75 Years */
}

.navbar {
    display: flex;
    gap: 10px;
    padding: 15px 30px;
    align-items: center;
    margin-left: 40px;
}

.navbar a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 10px;
    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-content {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-top: 4px solid #ffcc00; /* Ã°Å¸â€Â¶ dropdown line */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 100;
}

.dropdown-content a {
    color: #003e80;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #f1f5ff;
}

/* Show dropdown on hover */
.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: -20px;
                margin-bottom: 10px;
            }

            .icon-img {
                height: 45px; /* reduce size on mobile */
            }
        }

        /* Very small screens */
        @media (max-width: 400px) {
            .icon-img {
                height: 35px;
            }
        }

    .slider {
            font-family: "Poppins", sans-serif;
            white-space: nowrap;
            font-size: 24px;
            font-weight: 600;
            padding: 0 15px;
            animation: scroll-left 5m linear infinite;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Smooth text glow */
        }

    .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.3); /* 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%); }
    }
    /* =========================
   TABLET RESPONSIVE (991px)
========================= */
@media (max-width: 991px) {

    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 8px 15px;
        gap: 5px;
        text-align: center;
    }

    .top-bar .left-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .logo img {
        height: 90px;
    }

    .navbar {
        margin-left: 0;
        padding: 10px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .navbar a {
        font-size: 15px;
    }

    .scroll-left {
        height: 55px;
    }

    .scroll-left p {
        font-size: 18px;
    }
}


/* =========================
   MOBILE RESPONSIVE (600px)
========================= */
@media (max-width: 600px) {

    body {
        padding-top: 280px;
    }

    .top-bar {
        font-size: 12px;
    }

    .logo img {
        height: 70px;
    }

    .logo-group {
        flex-direction: row;
        gap: 8px;
    }

    .navbar a {
        font-size: 14px;
        box-shadow: none; /* remove heavy shadow on mobile */
    }

    .dropdown-content {
        position: absolute;
        box-shadow: none;
        border-top: none;
    }

    .scroll-left {
        height: 50px;
    }

    .scroll-left p {
        font-size: 16px;
    }

    .container h2 {
        font-size: 28px;
        margin-top: 80px;
    }

    .container h2::after {
        width: 30%;
    }
}


/* =========================
   SMALL MOBILE (400px)
========================= */
@media (max-width: 400px) {

    body {
        padding-top: 250px;
    }

    .logo img {
        height: 60px;
    }

    .scroll-left p {
        font-size: 14px;
    }

    .navbar a {
        font-size: 13px;
    }
}

.contact-section {
            max-width: 1200px;
            margin: 80px auto;
            background: #fff;
            padding: 40px;
            display: flex;
            gap: 40px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border-radius: 6px;
            margin-bottom: 20px;
            margin-top: 120px;
            
        }

        /* LEFT SIDE */
        .contact-info {
            width: 40%;
        }

        .contact-info h2 {
            color: #0b2a6f;
            margin-bottom: 10px;
        }

        .contact-info p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .contact-info h3 {
            margin-top: 30px;
            color: #0b2a6f;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #333;
            font-size: 15px;
        }

        .info-item i {
            color: #0b2a6f;
            margin-right: 10px;
            width: 20px;
        }

        .opening {
            margin-top: 25px;
            color: #555;
        }

        .social-icons {
            margin-top: 25px;
            margin-left: 20px;
            gap: 20px;
            display: flex;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            margin-right: 8px;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
        }

        .twitter { background: #1DA1F2; }
        .facebook { background: #1877F2; }
        .youtube { background: #FF0000; }
        .instagram {
            background: linear-gradient(45deg,
                #f58529,
                #dd2a7b,
                #8134af,
                #515bd4
            );
        }

        /* RIGHT SIDE FORM */
        .contact-form {
            width: 60%;
        }

        .contact-form h2 {
            color: #0b2a6f;
            margin-bottom: 25px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            width: 100%;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
            border-radius: 4px;
        }

        .form-group textarea {
            height: 140px;
            resize: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0b2a6f;
        }

        .submit-btn {
            background: #0b2a6f;
            color: #fff;
            border: none;
            padding: 14px 35px;
            font-size: 15px;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #0b2a6f;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .contact-section {
                flex-direction: column;
            }
            .contact-info,
            .contact-form {
                width: 100%;
            }
        }

iframe{
    border-radius: 10px;
    display: flex;
    margin: 60px auto;
}


/* Full Footer */
.big-footer {
    background: #0a1f44;
    color: #ffffff;
    padding: 40px;
    font-family: sans-serif;
}

/* 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;
}

@media (max-width: 600px) {
    .footer-logo img
    {
        margin: 0 auto;
    }
}

.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;
    }
}