body {
  margin: 0;
  font-family: Roboto, sans-serif;
  background: #f5f5f5;
}


.top-header {
    background: url("Images/backgroundfooter.png");
    padding: 10px 20px 30px;
    width:100%;
    position: relative;
    text-align: center;
    min-height: 120px;
}

.text-content h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 5px;
}

.text-content h2 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px;
}

.text-content h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}


.text-content h4 {
    font-size: 15px;
    color: #F57C00;
}

/* 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);
}


.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;
}


/* ---------- NOTICE MARQUEE ---------- */
.notice-marquee {
    width: 100%;
    background: #fff;           /* light formal background */
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-family: 'Roboto', sans-serif;
}

/* Notice title */
.notice-title {
    background: #F57C00;
    color: #fff;
    padding: 6px 14px;
    font-weight: 700;
    margin-right: 10px;
    white-space: nowrap;
}

/* Marquee text */
.notice-marquee marquee {
    color: #0b1b31;
    font-size: 15px;
    font-weight: 500;
}


/* ================= IMAGE SLIDER ================= */
/* ===================== SLIDER CONTAINER ===================== */
.slider-container {
    position: relative;
    width: 100%;
    max-height: 500px;   /* Adjust slider height */
    overflow: hidden;
}

/* Slides */
.slider .slide {
    display: none;
    position: relative;
    width: 100%;
    height: 500px;   /* Same as container */
    text-align: center;
}

.slider .slide.active {
    display: block;
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/* Slide Images */
.slider img {
    width: 100%;
    height: 500px;      /* Cover container */
    object-fit: cover;
}

/* Caption Box */
.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.95);
    background: rgba(0,0,0,0.35);
    padding: 15px 25px;
    border-radius: 10px;
}

.slide-caption h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #FFCC33;
}

.slide-caption p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
}

.btn-link {
    text-decoration: none;
    background: #F57C00;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-link:hover {
    background: #FF9933;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}


/* Responsive */
@media (max-width: 768px) {
  #simpleSlider {
    height: 320px;
  }

  .slide-caption {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .slide-caption h2 {
    font-size: 26px;
  }

  .slide-caption p {
    font-size: 16px;
  }
}


/* ===================== MAIN CONTAINER ===================== */
.container {
  width: 95%;               /* Almost full screen */
  max-width: 1400px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  gap: 10px;                /* Reduced horizontal gap */
  flex-wrap: wrap;
}

/* ===================== MAIN CONTENT ===================== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* Two columns */
  gap: 15px 20px;                  /* Reduced vertical and horizontal gap */
  width: 100%;
}

/* ===================== CARD STYLE ===================== */
.sidebar .card,
.main-area .card {
  width: 100%;              
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  padding: 15px;               /* Slightly reduced padding */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar .card:hover,
.main-area .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* ===================== ALTERNATING LEFT-RIGHT ===================== */
/* ===================== MAIN CONTENT GRID ===================== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* Two columns: left | right */
  width: 100%;
  column-gap: 0px;               /* Horizontal space between left and right */

}

/* ===================== LEFT COLUMN ===================== */
.main-content-left {
  display: flex;
  flex-direction: column;
  gap: 35px; 
  height: 700px;                     /* Vertical space between left boxes */
}

/* ===================== RIGHT COLUMN ===================== */
/* ===================== RIGHT COLUMN ===================== */
.main-content-right {
  display: flex;
  flex-direction: column;
  gap: 15px;                  /* Space between right boxes */
  align-items: flex-end;       /* Align right boxes to right */
}

/* Make right-side cards bigger */
.main-content-right .card {
  width: 400px;                /* Increase width */
  padding: 20px;               /* Increase padding for more height */
  min-height: 180px;           /* Ensure bigger height */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12); /* Slightly stronger shadow */
  transition: transform 0.3s, box-shadow 0.3s;
}

.main-content-right .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}


/* ===================== CARD STYLE ===================== */
.sidebar .card,
.main-area .card {
  width: 90%;                       /* Width inside its column */
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar .card:hover,
.main-area .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;     /* Single column on tablets */
    gap: 15px;
  }

  .main-content-left,
  .main-content-right {
    gap: 15px;                      /* Uniform spacing on tablet */
    align-items: center;
  }

  .sidebar .card,
  .main-area .card {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .sidebar .card,
  .main-area .card {
    width: 100%;                     /* Full width on mobile */
  }
}





/* ===================== CARD STYLE ===================== */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Card Header */
.card-header {
  background: linear-gradient(to right, #818183, #5d80df);
  color: #ffffff  !important;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Card Body */
.card-body {
  padding: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

/* ===================== PERSON CARD STYLE ===================== */
.person-item {
  background: #f9f9f9;          /* Light gray background for card */
  padding: 15px;
  border-radius: 15px;          /* Rounded card */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Hover effect for interactivity */
.person-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Person avatar images */
.person-avatar {
  width: 70px;                 /* Default size */
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4b4c50;   /* Saffron border to match theme */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Enlarge first person */
.card.important-persons .person-item:first-child .person-avatar {
  width: 70px;
  height: 70px;
  border-width: 4px;
}

/* Name & designation */
.person-item strong {
  display: block;
  font-size: 1.1rem;
  color: #171718;              /* Dark blue for contrast */
  margin-top: 3px;
}

.person-item small {
  color: #555;                  /* Gray for secondary text */
  font-size: 0.5rem;
  margin-top: 2px;
}

/* Optional: Add underline or accent below name */
.person-item strong::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f1c840;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Adjust spacing in the card body */
.card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


/* ===================== OBJECTIVES / ACHIEVEMENTS ===================== */
.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 500px;        /* Reduced height for compact look */
  overflow-y: auto;
  padding-right: 5px;
}

/* Scrollbar style */
.objectives-list::-webkit-scrollbar {
  width: 6px;
}

.objectives-list::-webkit-scrollbar-thumb {
  background: #0056f5;
  border-radius: 3px;
}

.objective-item {
  background: #f9f9f9;
  padding: 10px 12px;
  border-left: 4px solid  #f1c840;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.objective-item:hover {
  background: #fff3e0;
  transform: translateX(3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }

  .main-content {
    flex-direction: column;
  }

  .sidebar, .main-area {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .card-header {
    font-size: 16px;
  }

  .person-avatar {
    width: 45px;
    height: 45px;
  }

  .text-center {
    font-size: 10px;
  }
}



/* Container to center table */
.executive-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

/* Title outside box */
.executive-title {
    font-size: 28px;
    font-weight: 700;
    color: #0D47A1;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 3px solid #F57C00;
    padding-bottom: 5px;
}

.executive-section {
    width: 80%;
    max-height: 400px;        /* 👈 control visible height */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);

    overflow-y: auto;         /* 👈 vertical scrollbar */
    overflow-x: auto;         /* horizontal if needed */
}


.executive-section::-webkit-scrollbar {
    width: 6px;
}

.executive-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.executive-section::-webkit-scrollbar-thumb {
    background: #0D47A1;
    border-radius: 10px;
}

.executive-section::-webkit-scrollbar-thumb:hover {
    background: #F57C00;
}


/* Table Styling */
.executive-section table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

/* Table Headers */
.executive-section th {
    background: #0D47A1;       /* Dark blue header */
    color: #fff;
    font-weight: 600;
    padding: 12px 15px;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

/* Table Rows */
.executive-section tr {
    transition: all 0.3s ease;
}

/* Alternating Row Colors */
.executive-section tr:nth-child(even) {
    background: #f3f3f3;
}

/* Table Cells */
.executive-section td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    color: #333;
}

/* Hover effect for rows */
.executive-section tr:hover {
    background: #F57C00;
    color: white;
    transform: scale(1.01);
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
    .executive-section {
        width: 95%;
        padding: 15px;
    }
    .executive-title {
        font-size: 22px;
    }
    .executive-section th,
    .executive-section td {
        font-size: 14px;
        padding: 10px 8px;
    }
}


/* Map Section Title */

.map-title {
    font-family: "Segoe UI", "Noto Sans Marathi", sans-serif;
    color:#1a487c;
    margin: 30px 0 15px;
    font-size: 22px;
}


/* Map Wrapper */
.map-wrapper {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Google Map iframe */
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 8px;
}

/* Hover Effect */
.map-wrapper:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h3 {
        font-size: 18px;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}





/* ================= FOOTER MAIN ================= */
footer {
    background-image: url("Images/background.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;
    }
}







