body {
  margin: 0;
  font-family: Roboto, sans-serif;
  background: #f5f5f5;
}


.top-header {
    background: linear-gradient(to right, #57698f, #f1f0f1, #4c5d8d);
    background-size: cover;
    padding: 10px 20px 30px;
    width:100%;
    position: relative;
    text-align: center;
    min-height: 120px;
}

.text-content h1 {
    font-size: 30px;
    color: #5e5c5c;
    margin-bottom: 5px;
}

.text-content h2 {
    font-size: 20px;
    color: #4d4b4b;
    margin-bottom: 5px;
}

.text-content h3 {
    font-size: 18px;
    color: #4d4b4b;
    margin-bottom: 5px;
}


.text-content h4 {
    font-size: 15px;
    color: #192d46;
}

/* ISO Image Styling */
.image-content img {
    max-width: 70px;     /* image size control */
    height: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .image-content img {
        max-width: 90px;
        margin-top: 10px;
    }
}


/* Container for three images */
.top-left-images {
    position: absolute;
    top: 90px;
    left: 25px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

/* Images styling */
.top-left-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;               /* Circle images */
    border: 2px solid #574b2c;        /* Saffron border */
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* Hover effect */
.top-left-images img:hover {
    transform: scale(1.1);
}

/* Center text */
.header-text h1 {
    margin: 0;
    font-size: 32px;
    color: #0D47A1;
    font-weight: 700;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
}


.logo {
  height: 70px;
  margin-right: 15px;
}

.top-care{
    position: fixed;              /* Top right fix */
    top: 12px;
    right: 18px;
    z-index: 9999;

    background: transparent;      /* Transparent */
    padding: 6px 16px;

    font-weight: 600;
    font-size: 14px;
    color: #ffffff;

    border: 2px solid #ffffff;    /* Decorative border */
    border-radius: 25px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    backdrop-filter: blur(4px);   /* Glass effect (modern) */
}

/* Hover effect */
.top-care:hover{
    background: rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-care{
        font-size: 12px;
        padding: 5px 12px;
        top: 8px;
        right: 10px;
    }
}


/* Mobile responsive */
@media (max-width: 768px) {
    .helpline {
        font-size: 13px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}


.image-container {
  position: absolute;      /* Place anywhere */
  top: 90px;               /* Distance from top */
  right: 20px;             /* Distance from right */
  display: flex;
  gap: 10px;
  z-index: 1000;
}

/* Circular images */
.icon-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;      /* Makes circle */
  object-fit: cover;
  border: 2px solid #fff3e0;   /* Saffron border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

/* Hover effect */
.icon-img:hover {
  transform: scale(1.1);
}




.navbar {
  background: #344352;
  display: flex;
  justify-content: center;   /* ⬅ Center all items */
  align-items: center;
  gap: 10px;
  padding: 08px 20px;
  padding-bottom: 0;
}

/* All links */
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover effect */
.navbar a:hover {
  background: #ebb87e;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  display: inline-flex;
  align-items: center;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 50%;                /* ⬅ Center dropdown */
  transform: translateX(-50%);
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(37, 37, 37, 0.2);
  display: none;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #1e2838;
  padding: 12px 18px;
  display: block;
  text-align: left;
}

/* Dropdown hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Navbar */
nav {
  background: #0D47A1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Nav links */
nav a {
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover for normal links */
nav a:hover {
  background: #2d3e57;
}

/* Dropdown */
.dropdown {
  position: relative;
}

/* Button */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow */
.arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

/* Dropdown box */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #162844;
  padding: 12px 18px;
  display: block;
  font-weight: 500;
}

/* Hover inside dropdown */
.dropdown-content a:hover {
  background: #E3F2FD;
  color: #F57C00;
}

/* Show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.lang-switcher {
  position: relative;
  cursor: pointer;
}

.lang-icon {
  font-size: 25px;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;
  min-width: 140px;
  z-index: 999;
}

.lang-dropdown div {
  padding: 10px;
  font-size: 14px;
}

.lang-dropdown div:hover {
  background: #f5f5f5;
}

.lang-dropdown.show {
  display: block;
}





.hero {
 background: linear-gradient(
    to right,
    #2b2a2a
    #FFFFFF,
    #242424
  );
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 60px 20px;
}

.hero h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #F57C00;
  margin: 15px auto 0;
  border-radius: 2px;
}




/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans Devanagari", "Segoe UI", sans-serif;
    background-color: #eef1f4;
    color: #2f2f2f;
}

/* Container */
.container {
    max-width: 1250px;
    margin: 35px auto;
    padding: 0 20px;
}

/* Title Box */
.title-box {
    background-color: #1f4e79;
    color: #ffffff;
    text-align: center;
    padding: 22px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-bottom: 4px solid #143a5c;
}

.title-box h2 {
    font-size: 2.1rem;
    line-height: 1.4;
}

/* Info Box */
.info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #d8dde3;
}

/* Committee Grid */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

/* Member Card */
.committee-member {
    background-color: #ffffff;
    border: 1px solid #d8dde3;
    border-radius: 6px;
    padding: 20px 15px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.committee-member:hover {
    border-color: #1f4e79;
}

/* Image Center */
.text-center {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

/* Member Image */
.person-avatar1 {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1f4e79;
}

/* Member Name */
.committee-member h2 {
    font-size: 1.15rem;
    color: #1f4e79;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Member Role */
.committee-member p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .title-box h2 {
        font-size: 1.7rem;
    }

    .person-avatar1 {
        width: 115px;
        height: 115px;
    }
}


/* ================= FOOTER MAIN ================= */
footer {
    background-image: url("Images/back6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* ---------- TOP FOOTER ---------- */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 25px;
    padding: 30px 40px;
    max-width: 1400px;
    margin: auto;
     margin-bottom: 8px;
}

/* Footer columns */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD54F; /* soft saffron */
    border-bottom: 2px solid #FFD54F;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* ---------- LOGO COLUMN ---------- */
.footer-logo img {
    width: 90px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}

.footer-logo p {
    margin-bottom: 15px;
}

/* Contact info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #FFD54F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ---------- LINKS ---------- */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD54F;
    padding-left: 4px;
}

/* ---------- BOTTOM FOOTER ---------- */
.footer-bottom {
    background: transparent;
    text-align: center;
    padding: 12px;
    margin-top: -20px;
    border-top: 2px solid #FFD54F;
}

.footer-bottom p {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    color: #ffffff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FFD54F;
    color: #0D47A1;
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .footer-col h3 {
        font-size: 18px;
    }
}


/* ================= MOBILE RESPONSIVE @760px ================= */
@media (max-width: 760px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* ================= HEADER ================= */
    .top-header {
        padding: 12px 10px 20px;
        min-height: auto;
        text-align: center;
    }

    .header-text h1 {
        font-size: 22px;
    }

    .header-text p {
        font-size: 14px;
    }

    /* Top-left and right images */
    .top-left-images,
    .image-container {
        position: static !important;
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    }

    .top-left-images img,
    .icon-img {
        width: 50px !important;
        height: 50px !important;
        border: 2PX solid #2e2f30;
    }

    /* Customer care center */
  .top-care {
    position: static !important;
    display: block;
    margin: 12px auto;
    text-align: center;
    width: fit-content;
    color: #2e2f30;
    border: 2PX solid #2e2f30;
  }

    /* ================= NAVBAR ================= */
    /* ----- Navbar ----- */
    .navbar,
    nav {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 5px 10px;
        margin-top: 10px;
    }

    .navbar a,
    nav a {
        font-size: 13px;
        padding: 5px 10px;
    }

    nav::-webkit-scrollbar,
    .navbar::-webkit-scrollbar {
        display: none;
    }

    .dropdown-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        margin-top: 5px;
    }

    /* ================= HERO ================= */
    .hero {
        padding: 35px 15px;
    }

    .hero h2 {
        font-size: 18px;
    }

    /* ================= CONTAINER / TITLE ================= */
    .container {
        margin: 35px 10px;
        padding: 0 10px;
    }

    .title-box {
        padding: 18px;
        font-size: 1rem;
    }

    .title-box h2 {
        font-size: 1.7rem;
    }

    /* Info box & committee grid */
    .info-box {
        padding: 20px;
    }

    .committee-grid {
        grid-template-columns: 1fr; /* Stack members vertically */
        gap: 15px;
    }

    .person-avatar1 {
        width: 115px;
        height: 115px;
    }

    /* ================= FOOTER ================= */
    .footer-top {
        grid-template-columns: 1fr !important;
        padding: 25px 15px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }
}










