/* 🌿 Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans Devanagari", sans-serif;
}

body {
  background: #f9fafc;
  color: #222;
  line-height: 1.6;
}

/* 🔹 Header */
header {
  text-align: center;
  padding: 20px 10px;  /* कमी padding */
  background: linear-gradient(135deg, #4caf50, #ffb300);
  color: white;
  animation: fadeIn 1.5s ease;
}

header h1 {
  font-size: 1.8rem; /* कमी size */
  margin-bottom: 5px;
}

header .tagline {
  font-size: 1rem;
  font-weight: 300;
}

/* 📰 News Bar */
.news-bar {
  background: #fff3cd;
  color: #000;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid #ffb300;
  font-size: 1rem;
}

/* 🏞️ Hero Banner */
.hero {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  filter: brightness(60%);
  animation: zoomIn 8s ease infinite alternate;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.hero-content h2 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  animation: fadeIn 2s ease;
}
.hero-content p {
  font-size: 1.3rem;
  margin: 15px 0;
}
.btn {
  background: #ffb300;
  color: #222;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #fff;
  color: #4caf50;
  transform: scale(1.05);
}
/* 🏡 गाव एक दृष्टिक्षेपात */
.village-info {
  background: linear-gradient(
    180deg,
    #ff9933 0%,   /* केशरी */
    #ffffff 50%,  /* सफेद */
    #138808 100%  /* हिरवा */
  );
  text-align: center;
  padding: 60px 10%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #222;
}



.village-info h2 {
  color: #0055a4; /* नीळसर text to contrast with flag colors */
  margin-bottom: 30px;
  font-weight: 700;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}
.card {
  background: rgba(255, 255, 255, 0.85); /* semi-transparent for readability */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.card h3 {
  color: #228B22; /* Green heading for vibrance */
  margin-bottom: 10px;
}
.card p {
  color: #333; /* readable dark gray for text */
  font-weight: 500;
}

/* 📹 Video Section */
.video-section {
  text-align: center;
  padding: 60px 10%;
  background: linear-gradient(
    180deg,
    #138808 0%,  /* हिरवा */
    #ffffff 50%,  /* सफेद */
    #ff9933 100%  /* केशरी */
  );
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #222;
}
.video-section h2 {
  color: #0055a4; /* नीळसर heading */
  margin-bottom: 20px;
  font-weight: 700;
}
.video-section video {
  width: 80%;
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* 🏡 About History */
.about-history {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 10%;
  background: #fff;
}
.about-history .left {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}
.about-history .left h2 {
  color: #4caf50;
  margin-bottom: 15px;
}
.about-history .right {
  flex: 1;
  min-width: 300px;
}
.about-history img, .about-history video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 🏞️ Gallery */
.village-gallery {
  background: #f1f8e9;
  padding: 50px 10%;
  text-align: center;
}
.village-gallery h2 {
  color: #4caf50;
  margin-bottom: 25px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* 🏢 पंचायत संरचना */
.panchayat-structure {
  background: #fff;
  padding: 60px 10%;
  text-align: center;
}
.panchayat-structure h2 {
  color: #ff9800;
  margin-bottom: 30px;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.leader-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.leader-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* 🏢 Info Sections */
.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px 10%;
  background: white;
}
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.info-card h2 {
  color: #4caf50;
  margin-bottom: 10px;
}
.info-card a {
  color: #ff9800;
  text-decoration: none;
}

/* 🙌 Leaders */
.leaders {
  background: #f1f8e9;
  padding: 50px 10%;
  text-align: center;
}
.leaders h2 {
  color: #4caf50;
  margin-bottom: 25px;
}

/* 🧾 Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
}
footer strong {
  color: #ffb300;
}

/* 🌈 Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-history { flex-direction: column; }
  .about-history .left, .about-history .right { margin: 0; }
  header h1 { font-size: 2rem; }
  .hero-content h2 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .video-section video { width: 100%; }
}
/* ✨ सुधारणा - गावाचा इतिहास आणि गॅलरी साठी Alignment Fix */

/* गावाचा इतिहास विभाग */
.about-history .media-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.about-history img,
.about-history video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #e0f2f1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-history img:hover,
.about-history video:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* गावाचे दृश्य विभाग */
.gallery-grid img {
  border: 3px solid #dcedc8;
  border-radius: 15px;
  object-fit: cover;
  height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 🙌 Panchayat Structure आणि Aaple Nete विभागासाठी सुधारणा */
.leader-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center; /* चेहरा crop होणार नाही */
  border-radius: 12px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/*graphs*/

/* 📊 ग्रामविकास डॅशबोर्ड */
.village-dashboard {
  background: #f9fff9;
  padding: 70px 10%;
  text-align: center;
}
.village-dashboard h2 {
  color: #4caf50;
  margin-bottom: 40px;
  font-size: 1.8rem;
}
.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}
.chart-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.chart-card:hover {
  transform: translateY(-6px);
}
.chart-card canvas {
  width: 100% !important;
  height: 220px !important;
}
.chart-card p {
  margin-top: 15px;
  color: #228B22;
  font-weight: 600;
}


/* 💧 Water Dashboard */
.water-dashboard {
  background: #fff3e0;
  text-align: center;
  padding: 60px 10%;
}
.water-dashboard h2 {
  color: #4caf50;
  margin-bottom: 40px;
}
.charts-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.chart-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 360px;
  transition: transform 0.3s ease;
}
.chart-box:hover {
  transform: translateY(-5px);
}
.chart-box p {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}
canvas {
  width: 100% !important;
  height: 280px !important;
}


.news-item {
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}
.news-item:hover {
  color: #d84315;
  text-decoration: underline;
}

/* Popup (modal) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease-in-out;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  float: right;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn-download {
  display: inline-block;
  margin-top: 10px;
  background: #4CAF50;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn-download:hover {
  background: #388E3C;
}

/* HEADER Base */
header {
  background: #1b4332;
  padding: 10px 25px;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO + TITLE */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-title img {
  width: 60px;
}

.titles h2 {
  font-size: 14px;
  margin: 0;
  opacity: 0.85;
  font-weight: 500;
}

.titles h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}

/* NAVBAR */
.main-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a,
.dropdown button {
  background: #40916c;
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}

.main-nav a:hover,
.dropdown button:hover {
  background: #2d6a4f;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #2d6a4f;
  min-width: 190px;
  border-radius: 8px;
  padding: 6px;
  top: 42px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #1b4332;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dashboard Highlight */
.dashboard {
  background: #ffca3a !important;
  color: #000 !important;
  font-weight: 700;
}

.dashboard:hover {
  background: #ffb703 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    width: 100%;
  }

  .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .header-container {
    text-align: center;
  }
}


/* -------------------------------------
   BASIC RESET
------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans Devanagari", sans-serif;
}

body {
  background: #f5f7f8;
  color: #222;
}

/* -------------------------------------
   HEADER BASE
------------------------------------- */
header {
  background: linear-gradient(90deg, #1b4332, #2d6a4f);
  padding: 12px 25px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* -------------------------------------
   LOGO + TITLES
------------------------------------- */
.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-title img {
  width: 60px;
  filter: drop-shadow(0 0 5px #ffffff80);
}

.titles h2 {
  font-size: 14px;
  opacity: 0.8;
}

.titles h1 {
  font-size: 22px;
  font-weight: 700;
}

/* -------------------------------------
   MOBILE MENU BUTTON
------------------------------------- */
.menu-btn {
  display: none;
  font-size: 32px;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.menu-btn:hover {
  background: #40916c;
}

/* -------------------------------------
   NAVBAR DESKTOP
------------------------------------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a,
.dropdown button {
  background: #40916c;
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s ease;
  box-shadow: 0 2px 5px #00000040;
  text-decoration: none !important;
}

/* HOVER */
.main-nav a:hover,
.dropdown button:hover {
  background: #52b788;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px #52b788aa;
}

/* ACTIVE LINK FIX */
.main-nav a.active {
  background: #52b788 !important;
  border: 2px solid #95d5b2 !important;
  color: #fff !important;
  box-shadow: 0 0 10px #74c69daa !important;
}

/* -------------------------------------
   DASHBOARD BUTTON SPECIAL
------------------------------------- */
.dashboard {
  background: #ffca3a !important;
  color: #000 !important;
  font-weight: 700;
}

.dashboard:hover {
  background: #ffb703 !important;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px #ffb703aa;
}

/* -------------------------------------
   DROPDOWN MENU
------------------------------------- */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: block;
  position: absolute;
  background: #2d6a4f;
  min-width: 190px;
  border-radius: 8px;
  padding: 6px;
  top: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  /* तुमची मागणी → dropdown ला border */
  border: 2px solid #52b788;
  border-left: 4px solid #74c69d;
}

.dropdown-content a {
  padding: 10px;
  color: #fff;
  display: block;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;

  /* प्रत्येक link ला bottom border */
  border-bottom: 1px solid #74c69d55;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

/* HOVER */
.dropdown-content a:hover {
  background: #1b4332;
  color: #fff;
  border-left: 4px solid #ffca3a;
  padding-left: 18px;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

/* -------------------------------------
   HERO SECTION
------------------------------------- */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: url('assets/images/bg.jpg') center/cover fixed;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  margin-top: 8px;
}

/* -------------------------------------
   MOBILE RESPONSIVE
------------------------------------- */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #2d6a4f;
    padding: 15px 0;
    margin-top: 12px;
    border-radius: 10px;
  }

  .main-nav.show {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0px); }
  }

  .dropdown-content {
    position: relative;
    background: #1b4332;
    top: 0;
    box-shadow: none;
    opacity: 1;
    transform: translateY(0);
    padding-left: 20px;
  }

  .dropdown:hover .dropdown-content {
    opacity: 1;
  }
}

/* -------------------------------------
   HEADER BASE (INDIAN FLAG THEME)
------------------------------------- */
header {
  background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
  padding: 12px 25px;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* LOGO SHADOW */
.logo-title img {
  width: 60px;
  filter: drop-shadow(0 0 8px #00000040);
}

/* NAV BUTTONS */
.main-nav a,
.dropdown button {
  background: #138808;
  border: none;
  color: white;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

/* Hover Saffron glow */
.main-nav a:hover,
.dropdown button:hover {
  background: #FF9933;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px #FF993380;
}

/* Active Menu Highlight */
.main-nav a.active {
  background: #FFFFFF;
  color: #000;
  border: 2px solid #FF9933;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* DROPDOWN MENU */
.dropdown-content {
  background: white;
  border: 2px solid #138808;
  border-left: 4px solid #FF9933;
  min-width: 190px;
  border-radius: 8px;
  padding: 6px;
  transition: 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Dropdown Links */
.dropdown-content a {
  padding: 10px;
  color: #000;
  display: block;
  border-radius: 6px;
  transition: 0.3s;
}

/* Hover (Green background + Saffron border) */
.dropdown-content a:hover {
  background: #138808;
  color: #fff;
  border-left: 4px solid #FF9933;
  padding-left: 18px;
}

/* Mobile default: hide navbar */
@media (max-width: 768px) {
  .main-nav {
    
    flex-direction: column;
    background: #ffffff;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }

  /* When menu opened */
  .main-nav.show {
    display: flex !important;
    animation: slideDown 0.3s ease forwards;
  }

  /* Hamburger button visible */
  #menu-btn {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 12px;
    background: #fff;
    border-radius: 6px;
    color: #000;
  }
}

/* Animation */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Desktop hamburger hidden */
#menu-btn {
  display: none;
}


.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav {
    display: none; /* default hidden */
    flex-direction: column;
    background: #1b4332;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
  }

  .main-nav.show-menu {
    display: flex; /* JS click वर show होईल */
  }

  .menu-btn, .close-btn {
    display: block;
    font-size: 28px;
    cursor: pointer;
    background: #40916c;
    padding: 8px 16px;
    border-radius: 10px;
    color: white;
    width: fit-content;
    margin: 8px auto;
  }

  .close-btn {
    display: none;
  }
}

.dropdown button.active {
  background-color: #f0a500;
  color: white;
}



<style>
/* 🔹 Service Sections Stylish Card */
.service-section {
    width:90%; max-width:1000px;
    margin:25px auto;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:20px;
}

.service-card {
    background: linear-gradient(135deg, #e0f7e9, #ffffff);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #007b3a;
    font-size:1.2rem;
}

.service-card ul {
    list-style: none;
    padding:0;
}
.service-card ul li a {
    display:inline-block;
    margin:5px 0;
    padding: 8px 12px;
    background: #007b3a;
    color:white;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
    transition: 0.3s;
}
.service-card ul li a:hover {
    background: #009e4f;
}

.service-card p, .service-card a {
    font-size:0.95rem;
}


/* Leadership Section */
#leadership h2 {
  text-align: center;
  margin-bottom: 10px;
}

.leadership-row {
  display: flex;
  justify-content: center;
  gap: 5px;    /* जागा वाढवली */
  flex-wrap: wrap;
}

.leader-card {
  background:#ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align:center;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.leader-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.leader-card h3 {
  font-size: 1.1rem;
  margin: 6px 0;
  color: #111;   /* ⬅ text कधीही hide होणार नाही */
  font-weight: 700;
}

.leader-card p {
  font-size: 0.95rem;
  color: #444;  /* ⬅ description आता स्पष्ट दिसेल */
  margin: 0;
}


@media (max-width: 768px) {
  .leader-row {
    gap: 12px;
  }
}


/* 🔰 Action Bar Under Nav */
.top-action-bar {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
}

.action-btn {
  background: linear-gradient(90deg, #00a850, #00994d);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.action-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(0, 168, 80, 0.4);
  background: linear-gradient(90deg, #007b3a, #00a850);
}


/* FULL PAGE horizontal scroll Remove */
html, body {
    overflow-x: hidden !important;
}

/* Weather widget overflow fix */
#weatherWidget {
    max-width: 95vw;
    overflow: hidden;
}

/* Header flex wrap issue fix */
.header-container {
    flex-wrap: wrap; /* मोबाइलवर width कमी झाल्यावर horizontal scroll येत होता */
}

/* Dropdown width overflow fix */
.dropdown-content {
    max-width: 90vw;
    overflow-x: hidden;
}

/* Marquee safe region */
marquee {
    display: block;
    max-width: 100%;
    overflow: hidden;
}

/* Popup overflow fix */
#popup {
    overflow-y: auto;
    overflow-x: hidden !important;
}


.self-cert-section {
  padding: 40px 20px;
  background: #f4f9ff;
}

.self-cert-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: #222;
}

.self-cert-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.self-card {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.self-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.download-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.download-btn:hover {
  background: #0056b3;
}

/* Dropdown button arrow */
.dropdown > button::after,
.dropdown-btn::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Optional: hover look */
.dropdown > button:hover::after,
.dropdown-btn:hover::after {
  color: #2e7d32;
}

.section {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Mobile साठी */
@media (max-width: 768px) {
  .section {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

</style>






