 body {
      font-family: 'Noto Sans Devanagari', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
    }

    /* Navbar */
    .navbar {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      background: linear-gradient(90deg, #166b1f 0%, #e59b2c 100%);
    }

    .logo {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 20px;
    }
    .A{
      color: white;
    }

    /* Info Bar */
.info-bar {
      background: linear-gradient(90deg, #166b1f 0%, #e59b2c 100%);
      color: #f7f1f1;
      font-size: 15px;
      font-weight: 500;
          
    }

    /* Vetoba Hero Section */
   .hero {
  background-image: url('images/vetoba.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 55vh;
  position: relative;
  display: flex;
  align-items: flex-end;   /* मजकूर खाली */
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-bottom: 60px;
  overflow: hidden;
}

/* थोडं डार्क overlay द्यायचं असल्यास */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* हलका काळसर प्रभाव */
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* मोबाईल view साठी */
@media (max-width: 768px) {
  .hero {
    height: 65vh;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

    /* Second Hero Section (About) */
    .main-hero {
      background: linear-gradient(90deg, #166b1f 0%, #e59b2c 100%);
      height: 45vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .main-hero h5 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .main-hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .main-hero p {
      font-size: 1.3rem;
      margin-bottom: 25px;
    }

    .btn-custom {
      background-color: #fff;
      color: #166b1f;
      font-weight: 600;
      border: none;
      padding: 10px 25px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background-color: #166b1f;
      color: #fff;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    /* About Section */
    .about-section {
      background-color: #f5f5f5;
      padding: 80px 0;
      text-align: center;
    }

    .about-section h2 {
      font-size: 2.5rem;
      color: #166b1f;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .about-section p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 20px;
      line-height: 1.8;
      color: #333;
    }

    .about-section img {
      width: 150px;
      margin-top: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
     h2.section-title {
      color: #166b1f;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 6px solid #166b1f;
      padding-left: 12px;
    }

    /* Left Gallery Section */
    .gallery-section img {
      border-radius: 10px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

.gallery-section img {
  border-radius: 10px;
  width: 100%;
  height: 450px;   /* एकसारखी height दिली */
  object-fit: cover; /* image crop न होता व्यवस्थित बसते */
}




    .carousel-caption {
      background: rgba(0,0,0,0.6);
      border-radius: 5px;
      padding: 5px 10px;
      font-size: 1rem;
    }

    .btn-view-all {
      background-color: #166b1f;
      color: white;
      font-weight: 600;
      border-radius: 6px;
      padding: 8px 18px;
      text-decoration: none;
    }

    .btn-view-all:hover {
      background-color: #e59b2c;
      color: #fff;
    }

    /* Right Side - Officers Section */
    .officer-card {
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      background-color: #f9fff8;
      padding: 15px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .officer-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }

    .officer-card .info h5 {
      font-size: 1.1rem;
      margin: 0;
      color: #166b1f;
      font-weight: 700;
    }

    .officer-card .info p {
      margin: 2px 0;
      font-size: 0.95rem;
      color: #333;
    }

    .officer-card .badge {
      background-color: #166b1f;
      font-size: 0.8rem;
      margin-right: 5px;
    }

    .officer-card.orange {
      background-color: #fff7ef;
      border-left: 4px solid #e59b2c;
    }

    .btn-custom {
      background-color: #166b1f;
      color: white;
      border-radius: 6px;
      padding: 10px 25px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
    }

    .btn-custom:hover {
      background-color: #e59b2c;
      color: white;
    }
     h2.section-title {
      color: #145a32;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 6px solid #145a32;
      padding-left: 10px;
    }

    .service-card {
      background-color: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .service-card i {
      font-size: 28px;
      color: #145a32;
    }

    .service-card h5 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
      color: #145a32;
    }

    .service-card p {
      margin: 0;
      font-size: 0.95rem;
      color: #444;
    }

    .btn-view-all {
      background-color: #145a32;
      color: white;
      border-radius: 6px;
      padding: 8px 18px;
      text-decoration: none;
      font-weight: 600;
    }

    .btn-view-all:hover {
      background-color: #e59b2c;
      color: #fff;
    }

    .info-box {
      background-color: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .info-box h5 {
      color: #145a32;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .info-box small {
      color: #666;
    }

    .badge-custom {
      background-color: #145a32;
      color: white;
      font-size: 0.8rem;
      border-radius: 4px;
      padding: 3px 8px;
      margin-right: 6px;
    }

    .info-box a {
      color: #145a32;
      font-weight: 600;
      text-decoration: none;
    }

    .info-box a:hover {
      text-decoration: underline;
    }


    h2.section-title {
      color: #145a32;
      font-weight: 700;
      margin-bottom: 25px;
      border-left: 6px solid #145a32;
      padding-left: 10px;
    }

    .blog-card {
      background-color: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(0,0,0,0.05);
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-body {
      padding: 15px;
    }

    .badge-custom {
      background-color: #f39c12;
      color: #fff;
      font-size: 0.8rem;
      border-radius: 4px;
      padding: 4px 8px;
      margin-right: 6px;
    }

    .blog-card h5 {
      color: #145a32;
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    .blog-card p {
      color: #444;
      font-size: 0.9rem;
    }

    .blog-meta {
      font-size: 0.85rem;
      color: #666;
    }

    .btn-read {
      border: 1px solid #145a32;
      color: #145a32;
      border-radius: 8px;
      padding: 5px 15px;
      font-weight: 500;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
    }

    .btn-read:hover {
      background-color: #145a32;
      color: #fff;
    }

    .info-box {
      background-color: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .info-box h5 {
      color: #145a32;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .info-box p {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 5px;
    }

    .info-box i {
      color: #145a32;
      margin-right: 8px;
    }

    .btn-info-full {
      background-color: #145a32;
      color: #fff;
      width: 100%;
      font-weight: 600;
      border-radius: 6px;
      padding: 8px 0;
    
      display: inline-block;
      margin-top: 10px;
    }

    .btn-info-full:hover {
      background-color: #e59b2c;
      color: white;
    }
    .btn-info-full {
  background-color: #145a32;
  color: #fff !important;
  width: 100%;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 0;
  display: inline-block;
  margin-top: 10px;

  text-align: center;   /* ✅ text center मध्ये आणतो */
  text-decoration: none; /* ✅ underline काढतो जर <a> tag असेल तर */
}

    .nav-link {
  cursor: default;
  color: #f0f3f1;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  
}

.nav-link:hover {
  background-color: #d4edda; /* हलका हिरवा पार्श्वभूमी रंग */
  border: 1px solid #155724; /* हिरवी outline */
  color: #0b3d02;
}

/* amchyabadal */
.about-section {
  background-color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #116530;
}

.about-section p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.btn {
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}



.gram-info-section {
  background-color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.card {
  border-radius: 10px;
}

.card h4 {
  font-weight: bold;
  color: #116530;
}

p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.4rem;
}

strong {
   color: #116530;
}




.goals-section {
  background-color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.card {
  border-radius: 10px;
  border: 1px solid #cde6cd;
}

.card h4 {
  font-weight: bold;
  color: #116530;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}



.members-section {
  background-color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.members-section h3 {
  color: #116530;
}

.card {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card img {
  object-fit: cover;
  border: 3px solid #cde6cd;
}

.badge {
  font-size: 0.9rem;
  .members-section {
  background-color: #fff;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.members-section h3 {
  color: #116530;
}

.card {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card img {
  object-fit: cover;
  border: 3px solid #cde6cd;
}

.badge {
  font-size: 0.9rem;
  padding: 0.4em 0.8em;
  border-radius: 50px;
}

p {
  color: #333;
  font-size: 1rem;
}

.bi {
  color: #116530;
  margin-right: 6px;
}

  border-radius: 50px;
}

p {
  color: #333;
  font-size: 1rem;
}

.bi {
  color: #116530;
  margin-right: 6px;
}

.social-btn {
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  padding: 6px 9px;
  margin: 0 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: white;
  color: #198754; /* Hover झाल्यावर हिरवा रंग (किंवा हवा तो रंग) */
}





.committee-section {
  background-color: #fff;
}

.committee-box select {
  background-color: #ffffff;
  color: #198754;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.committee-box select:hover {
  background-color: #f8fff8;
}

.committee-section h3,
.committee-section p,
.committee-box {
  text-align: left;
}


/* seva */
.application-process {
  background-color: #fffefb;
}

.process-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.1);
}

.process-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}





.card-img-top {
  height: 220px;           /* सर्व images ची समान उंची */
  width: 100%;             /* card मध्ये full width */
  object-fit: cover;       /* image proportion maintain होईल */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Responsive */
.main-hero {
  background: linear-gradient(to bottom, #ffcc00, #228b22);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.main-hero h1, 
.main-hero h5, 
.main-hero p {
  color: #fff;
}

.btn-custom {
  background-color: #006400;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #004d00;
  color: #fff;
}

/* Responsive adjustments */
.main-hero {
  background: linear-gradient(90deg, #166b1f 0%, #e59b2c 100%);
  min-height: 45vh; /* 👈 Desktop साठी लहान केलं */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  text-align: center;
}

.main-hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.main-hero h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.main-hero p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.btn-custom {
  background-color: #006400;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 0.9rem;
  padding: 8px 20px;
}

.btn-custom:hover {
  background-color: #004d00;
  color: #fff;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .main-hero {
    min-height: 65vh; /* मोबाईलसाठी थोडं जास्त */
    padding: 50px 15px;
  }

  .main-hero h1 {
    font-size: 1.6rem;
  }

  .main-hero h5,
  .main-hero p {
    font-size: 0.9rem;
  }

  .btn-custom {
    font-size: 0.85rem;
    padding: 6px 18px;
  }
}


/* icon color */
/* .btn-outline-light i {
  color: #fff !important;   /* icons pure white होतील */
}

/* .btn-outline-light:hover i {
  color: #198754 !important;  /* hover झाल्यावर हिरवे होतील (optional) */
  /* background-color: #fff;
  border-radius: 50%;
}  */ */



.btn-outline-light {
  width: 30px;           /* square buttons */
  height: 350px;
  border: 2px solid #fff;
  border-radius: 10px;   /* round corners */
  display: flex;         /* center content */
  align-items: center;   /* vertically center */
  justify-content: center; /* horizontally center */
  background: transparent;
  transition: 0.3s;
  margin: 5px;
}

.btn-outline-light i {
  color: #fff !important;  /* icon white */
  font-size: 20px;         /* icon size */
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #145a32; /* or any accent color */
}

.btn-outline-light:hover i {
  color: #145a32 !important;
}

/* fonts */
body {
  font-family: 'Gotu', sans-serif !important;
}




























