/* ==========================================
   CLEAN PREMIUM GOVERNMENT DESIGN (OPTIMIZED)
   Fast + Professional + Only Important Styles
========================================== */

/* ─────────── Root Variables ─────────── */
:root {
  --primary: #0b57d0;
  --primary-dark: #083e92;
  --accent: #0f172a;
  --muted: #64748b;
  --light-bg: #eef3ff;
  --white: #ffffff;
  --radius: 10px;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, Roboto, Arial;
  background: #f3f6ff;
  color: var(--accent);
}

/* Container */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ─────────── Topbar ─────────── */
.topbar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .social {
  color: #ffffff;
  margin-left: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* ─────────── Header ─────────── */
.site-header {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #d1d5db;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img.logo {
  width: 65px;
  height: 65px;
  border-radius: var(--radius);
  margin-right: 12px;
}

.brand-text h1 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
  font-weight: 800;
}

.brand-text .tag {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}
.main-nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  padding: 6px 0;
}
.main-nav a:hover {
  color: var(--primary);
}

/* ─────────── Hero Section ─────────── */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
  color: #ffffff;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.hero h2 {
  font-size: 40px;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

.hero-btn {
  display: inline-block;
  margin-top: 18px;
  background: white;
  color: var(--primary-dark);
  padding: 10px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
}

/* ─────────── Section Styling ─────────── */
.section {
  padding: 40px 0;
}
.section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}
.section h3::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 4px;
}

/* ─────────── Notice List ─────────── */
.notices-list {
  list-style: none;
  padding: 0;
}
.notices-list li {
  background: #ffffff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}
.notices-list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ─────────── Services ─────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}

.service-card h4 {
  font-size: 18px;
  color: var(--primary);
}

/* ─────────── Stats (Simple) ─────────── */
.stats {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.stat-box {
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  text-align: center;
}

.stat-box h2 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

/* ─────────── Gallery ─────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid #ddd;
}

/* ─────────── Footer ─────────── */
.site-footer {
  background: #0f172a;
  padding: 50px 0;
  color: #cbd5e1;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 860px) {
  .main-nav ul { display: none; }
  .services-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


  /* Use small, optimized background image */
  background-image: url('/assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 0 0 25px 25px;
}

/* dark transparent overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  border-radius: 0 0 25px 25px;
}

/* text stays above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-img h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-img p {
  font-size: 18px;
  opacity: .95;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #0b57d0;
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}
.hero-btn:hover {
  background: #eef3ff;
}
/* ---- COMPACT HEADER FIX ---- */

/* Reduce header height */
.site-header {
  padding: 10px 0 !important;
}

/* Shrink logo size */
.logo {
  width: 48px !important;
  height: 48px !important;
  border-radius: 8px;
}

/* Reduce brand text size */
.brand-text h1 {
  font-size: 18px !important;
  margin-bottom: 2px;
}
.brand-text .tag {
  font-size: 12px !important;
}

/* Reduce spacing between brand & nav */
.header-inner {
  padding: 0;
}

/* Compact menu spacing */
.main-nav ul {
  gap: 16px !important;
}

.main-nav a {
  font-size: 15px !important;
  padding: 4px 0 !important;
}

/* Mobile menu toggle size */
.menu-toggle {
  font-size: 24px !important;
}

/* Make header look slimmer */
.site-header {
  border-bottom: 1px solid #d1d5db;
}
/* ---- Gallery + Members Split Section ---- */
.gallery-members {
  padding: 40px 0;
}

.gms-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  align-items: start;
}

/* GALLERY */
.gm-gallery {
  width: 100%;
}

.gm-main-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.gm-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.gm-thumbs img {
  width: 32%;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
}

/* MEMBERS */
.gm-members h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  border-left: 4px solid var(--primary);
  padding-left: 8px;
}

.member-card {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.member-card img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
}

.member-card h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.member-card p {
  font-size: 13px;
  margin: 0;
  color: #555;
}

/* --- MOBILE RESPONSIVE --- */
@media(max-width: 860px) {
  .gms-grid {
    grid-template-columns: 1fr;
  }
}
/* TOPBAR */
.topbar {
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HEADER */
.site-header {
  background: #ffffff;
  padding: 12px 0;       /* smaller header */
  border-bottom: 1px solid #d1d5db;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  margin-right: 12px;
}

/* TEXT */
.brand-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #0b57d0;
}
.brand-text .tag {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* NAV */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a:hover {
  color: #0b57d0;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
}

@media(max-width: 860px){
  .main-nav ul { 
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    position: absolute;
    right: 20px;
    top: 70px;
    width: 180px;
    gap: 10px;
    border: 1px solid #ddd;
  }
  .main-nav ul.open {
    display: flex;
  }
  .menu-toggle {
    display: inline-block;
  }
}
/* GRID 70% - 30% */
.gsnb-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  align-items: start;
}

/* GRID 70 / 30 */
.gsnb-grid {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 30px;
  align-items: start;
}

/* LEFT — नागरिक सेवा */
.citizen-services h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 700;
  border-left: 4px solid var(--primary);
  padding-left: 8px;
}

.cs-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  margin-bottom: 14px;
}

.cs-icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 6px;
}

.cs-card h4 {
  margin: 0;
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
}

.cs-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #444;
}

.cs-more {
  display: inline-block;
  margin-top: 5px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
}

/* RIGHT SIDE BOXES */
.right-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* सूचना फलक */
.notice-box, .scheme-box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 16px;
}

.notice-box h3,
.scheme-box h3 {
  font-size: 20px;
  border-left: 4px solid var(--primary);
  padding-left: 8px;
  margin-bottom: 12px;
}

.nb-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
}

.nb-tag {
  background: #dc2626;
  color: white;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 4px;
}

.nb-item h4 {
  margin: 6px 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.nb-date {
  font-size: 13px;
  margin: 0;
  color: #666;
}

.nb-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

/* योजना */
.scheme-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.scheme-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}

.scheme-btn:hover {
  background: var(--primary-dark);
}

/* MOBILE */
@media(max-width: 860px){
  .gsnb-grid {
    grid-template-columns: 1fr;
  }
}
/* BLOG SECTION */
.blog-section h3 {
  font-size: 24px;
  margin-bottom: 18px;
  border-left: 4px solid var(--primary);
  padding-left: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e5e7eb;
}

.blog-tag {
  background: var(--primary-dark);
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}

.blog-card h4 {
  font-size: 17px;
  margin: 10px 0 4px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

.blog-date {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.blog-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-author {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.blog-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.blog-btn:hover {
  background: var(--primary-dark);
}

/* MOBILE */
@media(max-width: 860px){
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* DEVELOPMENT PROJECT SECTION */
.projects-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding-left: 8px;
}

.project-box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  text-align: center;
  margin-bottom: 12px;
}

.no-projects {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

.projects-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.projects-btn:hover {
  background: var(--primary-dark);
}
/* =============== PREMIUM ROOT COLORS =============== */
:root {
  --g1: #002B7F; 
  --g2: #0040A8;
  --g3: #001A4D;

  --gold: #F4C542;
  --light: #F8FBFF;
  --dark: #0D1B2A;
}

/* GLOBAL */
body {
  margin: 0;
  background: var(--light);
  font-family: "Noto Sans Devanagari", sans-serif;
  color: var(--dark);
}

/* ===================== TOP BAR ===================== */
.topbar {
  background: linear-gradient(to right, var(--g1), var(--g2), var(--g3));
  color: #fff;
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

/* ===================== HEADER ====================== */
.site-header {
  background: linear-gradient(to right, #ffffffdd, #ffffffcc);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--gold);
  padding: 22px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.brand .logo {
  width: 80px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.brand-text h1 {
  margin: 0;
  font-size: 30px;
  color: var(--g1);
  font-weight: 800;
}

.brand-text .tag {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* ===================== NAV MENU ===================== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;

  background: rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 18px rgba(0,0,0,0.1);
}

.main-nav a {
  text-decoration: none;
  color: var(--g3);
  font-size: 17px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.main-nav a:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 2px 12px rgba(244,197,66,0.4);
  transform: translateY(-3px);
}

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  font-size: 34px;
  color: var(--gold);
  background: none;
  border: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 250px;
    position: absolute;
    right: 0;
    top: 60px;

    background: rgba(255,255,255,0.9);
    border: 2px solid var(--gold);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  }

  .main-nav ul.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
    font-size: 18px;
  }
}
/* APPLY POPPINS MARATHI TO ENTIRE WEBSITE */
* {
    font-family: 'Poppins', sans-serif !important;
    font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
}

/* ================= NEW PREMIUM HERO ================== */

.hero-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 1300px;
  margin: 40px auto;
  padding: 20px;
}

/* LEFT IMAGE CARD (NEVER CROPS) */
.hero-image-box {
  width: 55%;
  height: 360px; /* FIXED HEIGHT */
  border-radius: 18px;
  background: #f4f4f4;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px; /* spacing so image fits clean */
}

.hero-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* NEVER CROPS */
  border-radius: 12px;
}

/* RIGHT CARD */
.hero-content-box {
  width: 45%;
  padding: 35px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
  border-left: 6px solid #0040A8;
}

.hero-content-box h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content-box p {
  font-size: 18px;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.6;
}

.hero-btn {
  background: #0040A8;
  color: #fff;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.25s;
}

.hero-btn:hover {
  background: #0060d4;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================== */
@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
  }

  .hero-image-box,
  .hero-content-box {
    width: 100%;
  }

  .hero-image-box {
    height: 300px;
  }
}
/* ================= SARPANCH CARD ================= */

.sarpanch-section {
  padding: 40px 0;
}

.sarpanch-card {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #0040A8; /* Premium Blue Accent */
  max-width: 900px;
  margin: auto;
}

/* PHOTO BOX */
.sarpanch-photo-box {
  min-width: 180px;
  max-width: 180px;
  display: flex;
  justify-content: center;
}

.sarpanch-photo {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 3px solid #ffffff;
}

/* TEXT CONTENT */
.sarpanch-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #002B7F;
}

.sarpanch-message {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.sarpanch-name {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sarpanch-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sarpanch-photo-box {
    max-width: none;
  }
}

/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 40px 0;
}

.about-card {
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #0040A8; /* same blue accent */
  max-width: 900px;
  margin: auto;
}

.about-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #002B7F;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* RESPONSIVE NOT NEEDED — simple layout */


/* ====================== GENERAL GRID ====================== */

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.premium-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #0040A8;
}


/* ====================== GALLERY ====================== */

.gallery-main {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.gallery-thumb-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.show-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0040A8;
  text-decoration: none;
}


/* ====================== LISTS (MEMBERS, STAFF) ====================== */

.list-card h4 {
  margin-bottom: 14px;
  font-size: 20px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.list-photo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.list-name {
  font-weight: 600;
  font-size: 16px;
}

.list-role {
  font-size: 14px;
  color: #555;
}


/* ====================== MOBILE ====================== */

@media (max-width: 900px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   GLOBAL PREMIUM CARD + SECTION STYLES
   ========================================================= */

.section {
  padding: 45px 0;
}

.section h3, .section h4 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #002B7F;
  font-weight: 700;
}

.premium-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #0040A8;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.section-more {
  color: #0040A8;
  font-weight: 600;
  text-decoration: none;
}

.section-more:hover {
  text-decoration: underline;
}


/* =========================================================
   GRID SYSTEM
   ========================================================= */

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.blog-grid, .project-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* =========================================================
   NOTICE LIST
   ========================================================= */

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-list a {
  font-weight: 600;
  color: #002B7F;
  text-decoration: none;
}

.notice-list a:hover {
  text-decoration: underline;
}

.notice-date {
  color: #666;
  font-size: 13px;
  margin-left: 8px;
}


/* =========================================================
   BLOG CARDS
   ========================================================= */

.blog-card {
  width: 300px;
  min-height: 220px;
}

.blog-card h4 {
  margin: 6px 0;
  font-size: 20px;
}

.blog-cat {
  font-size: 13px;
  color: #444;
}

.blog-date {
  font-size: 13px;
  color: #777;
}

.blog-desc {
  color: #444;
  margin: 8px 0;
}

.blog-read {
  font-weight: 600;
  text-decoration: none;
  color: #0040A8;
}

.blog-read:hover {
  text-decoration: underline;
}


/* =========================================================
   SERVICES CARDS
   ========================================================= */

.service-card {
  background: #fdfdfd;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}


.service-card strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}


/* =========================================================
   SCHEMES LIST
   ========================================================= */

.scheme-item {
  margin-bottom: 14px;
}

.scheme-item strong {
  font-size: 16px;
}

.scheme-item a {
  color: #0040A8;
  text-decoration: none;
}

.scheme-item a:hover {
  text-decoration: underline;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.project-card {
  width: 300px;
  padding-bottom: 16px;
}

.project-card h4 {
  margin-bottom: 6px;
}

.project-date {
  font-size: 13px;
  color: #666;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-main {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.gallery-thumb-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: 0.25s;
}

.gallery-thumb-img:hover {
  transform: scale(1.06);
}


/* =========================================================
   LIST CARDS (MEMBERS + STAFF)
   ========================================================= */

.list-card h4 {
  margin-bottom: 14px;
  font-size: 20px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.list-photo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.list-name {
  font-weight: 600;
  font-size: 16px;
}

.list-role {
  font-size: 14px;
  color: #555;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}
/* 50–50 Grid Layout */
.grid-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-50 {
    grid-template-columns: 1fr;
  }
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  padding: 18px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.service-icon {
  font-size: 32px;
  background: #eef4ff;
  color: #003399;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}
/* Contact Page Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 24px;
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Contact Form */
.contact-form label {
  font-weight: 600;
  color: #002B7F;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9e2f3;
  background: #f7faff;
  font-size: 15px;
  margin-bottom: 14px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #003399;
  background: #fff;
  outline: none;
}

/* Buttons */
.full-btn {
  width: 100%;
  padding: 12px;
}

.btn-primary {
  background: #0040A8;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn-primary:hover {
  background: #002d82;
}

/* Right Card */
.contact-info-box {
  padding: 18px;
}

/* Map */
.contact-map {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: 0;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.project-item {
  background: #f7faff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #e5ecff;
  transition: 0.25s;
}

.project-item:hover {
  background: #eef3ff;
  transform: translateY(-3px);
}

.project-date {
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
}
.section-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.section-header h3 {
  font-size:22px;
  font-weight:700;
  margin:0;
}

.section-more {
  color:#0056FF;
  font-weight:600;
  text-decoration:none;
}

.premium-card {
  background:#ffffff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

/* Notice list */
.notice-list {
  list-style:none;
  padding:0;
  margin:0;
}

.notice-item {
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px solid #eee;
}

/* Blogs */
.blog-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:18px;
}

.blog-item {
  background:#f7faff;
  border:1px solid #e0eaff;
  padding:12px;
  border-radius:10px;
}

/* Services */
.service-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:18px;
}

.service-item {
  padding:12px;
  background:#f7faff;
  border:1px solid #e0eaff;
  border-radius:10px;
}

/* Schemes */
.scheme-item {
  padding:10px 0;
  border-bottom:1px solid #eee;
}

/* Projects */
.project-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:18px;
}

.project-item {
  background:#f7faff;
  padding:12px;
  border-radius:10px;
  border:1px solid #e0eaff;
}
.site-footer {
  background: #0b2a55;
  color: #fff;
  padding-top: 30px;
  margin-top: 40px;
}

.footer-top {
  padding: 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  border-left: 4px solid #4da3ff;
  padding-left: 8px;
}

.footer-col p {
  line-height: 1.6;
  color: #d9e6ff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
  color: #d9e6ff;
}

.footer-links a {
  color: #d9e6ff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background: #081d3a;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #133766;
}

.footer-bottom small {
  color: #c7d8f7;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.gp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 10px;
}

.gp-item {
  background: #f9f9f9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.gp-item b {
  color: #333;
}

.gp-item span {
  color: #444;
}

.gp-about {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}
.contact-wrapper {
  display: flex;
  gap: 20px;
}

.contact-left, .contact-right {
  flex: 1;
}

.contact-info-box {
  padding: 15px;
  margin-bottom: 15px;
}

.contact-map {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

.contact-form label {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.full-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #1e90ff;
  border-radius: 6px;
  color: white;
  border: none;
}
.success-box {
  padding: 10px;
  background: #d4ffd4;
  border-left: 4px solid green;
  margin-bottom: 10px;
}
.error-box {
  padding: 10px;
  background: #ffe1e1;
  border-left: 4px solid red;
  margin-bottom: 10px;
}
/* HERO MOBILE FIX */
.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-image-box {
    flex: 7;
}

.hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

/* HERO RIGHT */
.hero-content-box {
    flex: 3;
}

.hero-content-box h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-content-box p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }
    .hero-image {
        height: 220px;
    }
    .hero-content-box h1 {
        font-size: 22px;
        text-align:center;
    }
    .hero-content-box p {
        text-align:center;
    }
    .hero-btn {
        display:block;
        text-align:center;
        width:100%;
    }
}
@media (max-width: 768px) {
    .gp-info-grid {
        grid-template-columns: 1fr !important;
    }
    .about-card {
        padding: 12px;
    }
}
@media(max-width:768px){
    .gallery-main-img{
        height:200px;
    }
    .gallery-thumbs{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:6px;
    }
    .gallery-thumb-img{
        height:70px;
        object-fit:cover;
    }
}
@media(max-width:768px){
    .list-item {
        display:flex;
        gap:10px;
        padding:8px 0;
    }
    .list-photo{
        width:55px;
        height:55px;
    }
}
@media(max-width:768px){
    .blog-grid, .project-grid {
        grid-template-columns: 1fr !important;
    }
    .blog-item, .project-item {
        padding:12px;
    }
}
@media(max-width:768px){
    .fb-card {
        padding:10px;
        font-size: 14px;
    }
    .feedback-form input,
    .feedback-form textarea {
        font-size:14px;
    }
    .btn-primary {
        width:100%;
        padding:10px;
    }
}
@media(max-width:768px){
    .social-icons {
        flex-direction: column;
        width:100%;
    }
    .social-btn {
        text-align:center;
        width:100%;
    }
}
/* ================= LIVE SEARCH ================= */
.search-form{
  position:relative;
  max-width:700px;
  margin:0 auto;
  padding:0 16px;
}

.search-dropdown{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  z-index:999;
  display:none;
}

.search-dropdown a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  color:#111;
  border-bottom:1px solid #f1f5f9;
  font-size:14px;
}

.search-dropdown a:hover{
  background:#f1f5f9;
}

.search-type{
  font-size:11px;
  background:#e0f2fe;
  padding:2px 6px;
  border-radius:4px;
  margin-right:6px;
}
/* =============== LIVE SEARCH STYLED DROPDOWN =============== */

.site-search-bar{
  background:#f1f5f9;
  padding:14px 0;
  border-bottom:1px solid #e5e7eb;
}

.search-form{
  position:relative;
  max-width:720px;
  margin:0 auto;
  padding:0 16px;
}

.search-form input{
  width:100%;
  padding:14px 16px;
  border:1px solid #cbd5e1;
  border-radius:10px;
  font-size:16px;
  outline:none;
}

.search-form input:focus{
  border-color:#2563eb;
}

/* RESULT BOX */
.search-dropdown{
  position:absolute;
  top:110%;
  left:0;
  right:0;
  background:#ffffff;
  border-radius:12px;
  box-shadow:0 15px 30px rgba(0,0,0,0.12);
  overflow:hidden;
  display:none;
  z-index:9999;
}

/* EACH RESULT */
.search-item{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:#111827;
  border-bottom:1px solid #f1f5f9;
}

.search-item:last-child{
  border-bottom:none;
}

.search-item:hover{
  background:#f8fafc;
}

/* TITLE */
.search-title{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
}

/* CATEGORY BADGE */
.search-badge{
  display:inline-block;
  margin-bottom:4px;
  font-size:11px;
  padding:2px 8px;
  border-radius:999px;
  background:#e0f2fe;
  color:#0369a1;
}
/* =============== MOBILE SEARCH UI FIX =============== */
@media (max-width: 768px){

  .site-search-bar{
    padding:10px 0;
    background:#ffffff;
  }

  .search-form{
    padding:0 12px;
  }

  .search-form input{
    padding:16px;
    font-size:16px;
    border-radius:999px;   /* 🔥 pill shape */
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
  }

  /* Dropdown box */
  .search-dropdown{
    top:120%;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
  }

  /* Each result item */
  .search-item{
    padding:14px 16px;
  }

  .search-title{
    font-size:15px;
    line-height:1.5;
  }

  .search-badge{
    font-size:10px;
    padding:3px 10px;
    margin-bottom:6px;
  }
}
@media (max-width: 768px){
  .search-dropdown{
    max-height:60vh;
    overflow-y:auto;
  }
}
/* ===== MOBILE SEARCH RESULT SIDE GAP FIX ===== */
@media (max-width: 768px){

  /* Search form side gap */
  .search-form{
    padding: 0 16px;   /* 🔥 left-right gap */
  }

  /* Result dropdown side gap */
  .search-dropdown{
    margin: 0 6px;     /* 🔥 screen border पासून थोडा gap */
  }

  /* Each search card */
  .search-item{
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 768px){
  .search-dropdown{
    border-radius: 18px;
  }
}
