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

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

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


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

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

.title-box {
            text-align: center;
            background: rgb(49, 49, 49);
            color: white;
           
            border-radius: 6px;
            margin-bottom: 15px;
            max-width: 960px;
            margin: auto;
           
            gap: 40;
            padding: 35px 50px;
            margin-top: 100px;
        }

            .title-box h2 {
                margin: 0;
                font-size: 32px;
            }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 12px rgba(255, 165, 94, 0.6);}
    100% { box-shadow: 0 0 25px rgba(255, 165, 94, 1);}
  }

  main {
    max-width: 960px;
    margin: 50px auto 40px;
    background: #fff;
    padding: 45px 50px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(77, 76, 76, 0.4);
    animation: fadeInUp 1.3s ease forwards;
    opacity: 0;
  }

  p.intro {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #404040;
  }

  .info-box {
    background: #fff4e6;
    border-left: 7px solid #ff7b43;
    padding: 22px 28px;
    margin-bottom: 45px;
    font-size: 17px;
    color: #d35400;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 3px 6px 18px rgba(255, 123, 67, 0.15);
  }

  .responsibilities {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: 32px;
  }

  .card {
    background: #fff7f0;
    border-radius: 24px;
    padding: 30px 34px;
    box-shadow:
      5px 5px 15px rgba(255, 150, 80, 0.25),
      -5px -5px 15px #fff;
    transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.45s ease;
    cursor: default;
    user-select: none;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

  .card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -60%;
    width: 180%;
    height: 160%;
    background: radial-gradient(circle at center, #ff9b57 0%, transparent 80%);
    opacity: 0.18;
    transition: opacity 0.5s ease;
    z-index: 0;
  }

  .card:hover::before {
    opacity: 0.35;
  }

  .card:hover {
    transform: translateY(-15px);
    box-shadow:
      8px 12px 40px rgba(255, 140, 60, 0.5),
      -8px -8px 25px #fff;
    border-color: #ff964f;
  }

  .card h3 {
    margin-top: 0;
    font-weight: 700;
    color: #bf3e00;
    font-size: 24px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

  .card p {
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
    position: relative;
    z-index: 1;
  }

  .more-info {
    margin-top: 55px;
    padding: 22px 28px;
    background: #ffe9d6;
    border-radius: 15px;
    border-left: 8px solid #ff7b43;
    font-size: 17px;
    color: #b24300;
    font-weight: 600;
    box-shadow: 4px 8px 20px rgba(255, 123, 67, 0.2);
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
  }


/* ðŸ”µ 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;
    }
}
