/* -----------------------------------------
   RESET AND BASE STYLES
--------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fdf7ef; /* light beige background */
  color: #1a1a1a;
}

/* -----------------------------------------
   TOP ORANGE GOVERNMENT NAVBAR
--------------------------------------------*/
.top-navbar {
  background-color: #ffb84d; /* saffron orange */
  color: #1b1b1b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 40px;
  border-bottom: 2px solid #e08b00;
  font-size: 14px;
}

.top-left {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-left span {
  font-weight: 600;
}

.divider {
  height: 14px;
  width: 1px;
  background-color: #444;
  margin: 0 5px;
}

/* Right section: Icons and buttons */
.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Zoom buttons */
.zoom-btn {
  border: 1.5px solid #222;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  font-size: 13px;
  padding: 2px 8px;
  transition: 0.25s;
  font-weight: 600;
}

.zoom-btn:hover {
  background-color: #fff2e0;
}

/* Marathi / English toggle button */
.lang-btn {
  background-color: #ffcc00;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  padding: 3px 10px;
  cursor: pointer;
  transition: 0.25s;
}

.lang-btn:hover {
  background-color: #ffe066;
}

/* Icons */
.top-right i {
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.top-right i:hover {
  color: #b35400;
}

/* Social icon links */
.top-right a {
  color: inherit;
  text-decoration: none;
}

/* -----------------------------------------
   GRAM PANCHAYAT HEADER SECTION
--------------------------------------------*/
.gp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}

.gp-header .left,
.gp-header .center,
.gp-header .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Left: Emblem and motto */
.gp-header .left img {
  width: 80px;
  height: auto;
}

.gp-header .motto {
  font-size: 13px;
  color: #333;
  margin-top: 4px;
}

/* Center: Panchayat name */
.gp-header .center h1 {
  font-size: 28px;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.gp-header .center p {
  font-size: 15px;
  color: #444;
  margin-top: 4px;
  text-align: center;
}

/* Right: Swachh Bharat and Maharashtra logo */
.gp-header .right {
  flex-direction: row;
  gap: 16px;
}

.gp-header .right .logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* -----------------------------------------
   RESPONSIVE FOR TOP + HEADER
--------------------------------------------*/
@media (max-width: 1024px) {
  .gp-header {
    padding: 14px 30px;
  }

  .top-navbar {
    padding: 8px 30px;
  }
}

@media (max-width: 768px) {
  /* Stack navbar vertically */
  .top-navbar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 20px;
    text-align: center;
  }

  .gp-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 20px;
  }

  .gp-header .center h1 {
    font-size: 22px;
  }

  .gp-header .center p {
    font-size: 14px;
  }

  .gp-header .right .logo {
    width: 80px;
    height: auto;
  }

  .gp-header .left img {
    width: 70px;
  }
}

@media (max-width: 480px) {
  .top-left {
    font-size: 13px;
  }

  .zoom-btn,
  .lang-btn {
    padding: 2px 6px;
  }

  .gp-header {
    padding: 10px 16px;
  }

  .gp-header .center h1 {
    font-size: 20px;
  }

  .gp-header .center p {
    font-size: 13px;
  }
}

/* -----------------------------------------
   MAIN NAV BAR
--------------------------------------------*/
.main-navbar {
  background: #0d1b5e; /* royal blue */
  height: 60px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

/* === NAV MENU === */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 6px;
  height: 56px;
}

.nav-menu li {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
}

/* Links */
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 0 18px;
  height: 56px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}

/* Hover underline effect */
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ffcc33;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu li a:hover::after,
.nav-menu li.active a::after {
  width: 100%;
}

/* Active & hover highlight */
.nav-menu li.active a,
.nav-menu li a:hover {
  color: #ffcc33;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Each item */
.dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background-color: #fff;
  transition: all 0.25s ease-in-out;
}

/* Hover and focus */
.dropdown-menu li a:hover {
  color: #000;
  font-weight: 600;
  width: 100%;
  background-color: #ffcc33;
}

/* Dropdown opens on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Caret rotation */
.dropdown:hover i.fa-caret-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* === HAMBURGER ICON (MOBILE) === */
.hamburger {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* -----------------------------------------
   NAV RESPONSIVE + SMOOTH DRAWER
--------------------------------------------*/
@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 20px 10px;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-top: 4px;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    background-color: #0d1b5e;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;  /* smooth drawer */
  }

  .nav-menu.active {
    max-height: 500px; /* enough height for all items */
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    background: #101a60;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-menu li a {
    color: #fff;
    padding-left: 30px;
  }

  .dropdown-menu li a:hover {
    background-color: #ffcc33;
    color: #000;
  }
}

/* -----------------------------------------
   HERO SLIDER SECTION
--------------------------------------------*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 0;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Caption box */
.hero-slider .caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 204, 51, 0.95);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Navigation buttons */
.hero-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffcc33;
  color: #0d1b5e;
  border: 3px solid #fff;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 3;
}

.hero-slider button:hover {
  background-color: #e08b00;
  color: #fff;
}

.hero-slider .prev {
  left: 20px;
}

.hero-slider .next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 320px;
  }

  .hero-slider .caption {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-slider button {
    padding: 8px 10px;
  }
}

/* -----------------------------------------
   BREAKING NEWS FRONTEND STYLE
--------------------------------------------*/
.breaking-news {
  width: 100%;
  background: #fff8e1;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 4px;
}

.news-header {
  background-color: white;
  color: #232322;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 16px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-header i {
  color: #ffcc33;
  font-size: 18px;
}

/* Scrolling text container */
.news-marquee {
  display: flex;
  gap: 50px;
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
  font-weight: 500;
  white-space: nowrap;
  animation: scrollNews 20s linear infinite;
}

.news-marquee:hover {
  animation-play-state: paused;
}

.news-marquee span {
  display: inline-block;
}

/* Scrolling animation */
@keyframes scrollNews {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .news-header {
    font-size: 14px;
    padding: 8px 16px;
  }

  .news-marquee {
    font-size: 13px;
    gap: 30px;
    padding: 8px 16px;
    animation-duration: 25s;
  }
}

/* -----------------------------------------
   ABOUT THE VILLAGE SECTION
--------------------------------------------*/
.about-village {
  background-color: #faf7f0;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  color: #0d1b5e;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Read More button */
.read-more {
  background-color: #0d1b5e;
  color: #ffcc33;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #ffcc33;
  color: #0d1b5e;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Village Leaders section */
.village-leaders {
  flex: 1 1 40%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.leader-card {
  text-align: center;
  width: 160px;
}

.leader-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.leader-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b5e;
  margin: 10px 0 5px 0;
}

.leader-card p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }

  .village-leaders {
    justify-content: center;
  }

  .leader-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .about-village {
    padding: 24px 18px;
  }
  .leader-card {
    width: 100%;
  }
}

/* -----------------------------------------
   SCHEMES + IMPORTANT LINKS SECTION
--------------------------------------------*/
.info-section {
  background-color: #faf7f0;
  padding: 40px 0;
}

.info-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* ===== Left: Schemes Box ===== */
.schemes-box {
  flex: 1 1 65%;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab {
  background-color: #dcdcdc;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  color: #000;
}

.tab.active {
  background-color: #0d1b5e;
  color: #fff;
}

.tab:hover {
  background-color: #ffcc33;
  color: #0d1b5e;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content ul {
  margin: 0 0 20px 20px;
}

.tab-content li {
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

/* View All button */
.view-all {
  background-color: #ffcc33;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.view-all:hover {
  background-color: #0d1b5e;
  color: #fff;
}

/* ===== Right: Important Links ===== */
.links-box {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.links-box h3 {
  color: #0d1b5e;
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.links-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.links-box li {
  margin-bottom: 8px;
}

.links-box a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.links-box a:hover {
  color: #0d1b5e;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .info-section .container {
    flex-direction: column;
  }

  .schemes-box, .links-box {
    width: 100%;
  }
}

/* -----------------------------------------
   PHOTO GALLERY + CM CAMPAIGN SECTION
--------------------------------------------*/
.gallery-campaign {
  background-color: #faf7f0;
  padding: 40px 0;
}

.gallery-campaign .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b5e;
}

.view-btn {
  background-color: #ffcc33;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.view-btn:hover {
  background-color: #0d1b5e;
  color: #fff;
}

/* ===== LEFT: PHOTO GALLERY ===== */
.gallery-box {
  flex: 1 1 48%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.main-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.thumb-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.thumb-row img {
  width: 32%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb-row img:hover {
  transform: scale(1.05);
}

.thumb-row img.active-thumb {
  border: 3px solid #ffcc33;
  box-shadow: 0 0 6px rgba(255, 204, 51, 0.8);
}

/* ===== RIGHT: CM CAMPAIGN ===== */
.campaign-box {
  flex: 1 1 48%;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}

.campaign-slider {
  position: relative;
}

.campaign-slider img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.campaign-slider p {
  background-color: #f0f0f0;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  font-weight: 600;
  color: #0d1b5e;
  line-height: 1.5;
}

/* Navigation Buttons */
.campaign-box .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffcc33;
  color: #0d1b5e;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 8px 10px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.campaign-box .nav:hover {
  background-color: #0d1b5e;
  color: #fff;
}

.campaign-box .nav.prev { left: 10px; }
.campaign-box .nav.next { right: 10px; }

/* Responsive */
@media (max-width: 992px) {
  .gallery-campaign .container {
    flex-direction: column;
  }
  .gallery-box,
  .campaign-box {
    width: 100%;
  }
  .main-photo img,
  .campaign-slider img {
    height: 320px;
  }
  .thumb-row img {
    height: 100px;
  }
}

@media (max-width: 600px) {
  .main-photo img,
  .campaign-slider img {
    height: 250px;
  }
  .thumb-row img {
    height: 80px;
  }
}

/* -----------------------------------------
   GOVERNMENT LOGO CAROUSEL SECTION
--------------------------------------------*/
.govt-logos {
  background-color: #faf7f0;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.logos-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 100%;
}

.logos-slide {
  display: inline-flex;
  align-items: center;
  animation: scroll-logos 35s linear infinite;
}

.logos-slide img {
  height: 60px;
  width: auto;
  margin: 0 40px;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logos-slide img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  opacity: 1;
}

/* Animation for continuous scroll */
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logos-slide img {
    height: 45px;
    margin: 0 25px;
  }
}

@media (max-width: 480px) {
  .logos-slide img {
    height: 35px;
    margin: 0 20px;
  }
}

/* -----------------------------------------
   FOOTER STYLES
--------------------------------------------*/
.footer {
  background-color: #0d1b5e;
  color: #ddd;
  text-align: center;
  padding: 35px 10px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 5px 15px;
}

.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffcc33;
}

.footer-social a {
  color: #ccc;
  font-size: 18px;
  margin-left: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc33;
}

.footer hr {
  border: 0;
  height: 1px;
  background-color: #1a255a;
  margin: 15px 0;
}

.footer-bottom p {
  margin: 6px 0;
  color: #ccc;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #ffcc33;
}

.footer-bottom .marathi {
  color: #ffcc33;
  font-size: 14px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-links li {
    margin: 8px 10px;
  }

  .footer-social {
    margin-top: 10px;
  }
}

/* -----------------------------------------
   OFFICERS PAGE STYLES
--------------------------------------------*/
.officers-section {
  background: #faf8f5;
  padding: 60px 0;
  text-align: center;
}

.officers-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #022b3a;
  margin-bottom: 40px;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 30px;
}

.officer-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s ease;
}

.officer-card:hover {
  transform: translateY(-5px);
}

.officer-card img {
  width: 150px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}

.officer-card h3 {
  color: #006400;
  margin: 10px 0 5px;
  font-size: 20px;
}

.officer-card p {
  color: #333;
  font-size: 15px;
  margin: 3px 0;
}

/* -----------------------------------------
   VILLAGE INFO PAGE
--------------------------------------------*/
.page-header h1 {
  text-align: center;
  font-size: 32px;
  color: #0b3d91;
  margin-top: 20px;
}

.village-description {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 30px auto;
  max-width: 1100px;
  line-height: 1.8;
  color: #333;
}

.population-table, .geo-info {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin: 40px auto;
  max-width: 1100px;
}

.population-table h2, .geo-info h2 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

th, td {
  padding: 12px;
  border: 1px solid #ddd;
}

th {
  background: #f5f5f5;
  font-weight: 600;
}

/* -----------------------------------------
   WEATHER SECTION
--------------------------------------------*/
.weather-section {
  text-align: center;
  margin: 40px auto;
  max-width: 1000px;
}

.weather-section h2 {
  color: #e65100;
}

.weather-box iframe {
  border-radius: 10px;
  margin-top: 10px;
}

/* citizen service */

.page-title{
    text-align:center;
    font-size:32px;
    color:#0a1f5c;
    margin:50px 0 30px;
    font-weight:700;
}

.officer-wrapper{
    display:flex;
    justify-content:center;
    padding-bottom:80px;
}

.officer-card{
    background:white;
    width: 500px;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.officer-img{
    font-size:90px;
    color:#d32f2f;
    margin-bottom:15px;
}

.officer-img img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:10px;
}

.officer-card h3{
    font-size:22px;
    color:#0a1f5c;
    margin:10px 0;
}

.officer-card p{
    color:#555;
    font-size:15px;
}

.officer-info a{
    display:inline-block;
    margin:15px 10px 0;
    padding:10px 25px;
    background:#0a1f5c;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

.officer-info a:hover{
    background:#ffcc00;
    color:#0a1f5c;
}


/* ==============================
   Citizen Services Professional
============================== */

.citizen-services-page {
  padding: 50px 20px;
  background: #f7f4ec;
}

.page-header h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #0d1b5e;
  margin-bottom: 40px;
}

/* Table Section */
.services-table-section {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* Table */
.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table thead {
  background: #0d1b5e;
  color: #ffffff;
}

.services-table th,
.services-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-size: 15px;
}

.services-table th {
  font-weight: 600;
}

.services-table tbody tr:hover {
  background: #fafafa;
}

/* No data row */
.no-data {
  text-align: center;
  padding: 20px;
  font-weight: 500;
  color: #777;
}

/* Buttons */
.file-actions a {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 4px;
  display: inline-block;
  transition: 0.3s ease;
}

.view-btn {
  background: #ffcc33;
  color: #000;
}

.view-btn:hover {
  background: #e6b800;
}

.download-btn {
  background: #0d1b5e;
  color: #fff;
}

.download-btn:hover {
  background: #162a8a;
}

/* Responsive */
@media (max-width: 768px) {
  .services-table th,
  .services-table td {
    font-size: 13px;
    padding: 10px 6px;
  }

  .file-actions a {
    display: block;
    margin: 5px auto;
  }
}

/* Nirmala Section */
.nirmala-section {
    padding: 60px 0;
    background: #f6f2ea;
}

.nirmala-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.nirmala-container h2 {
    font-size: 32px;
    color: #0d1b5e;
    margin-bottom: 40px;
}

/* Gallery Grid */
.nirmala-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.nirmala-card img {
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nirmala-card img:hover {
    transform: scale(1.05);
}

/* Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

