/* Make banner Navbar Sticky */
#navbar {
  position: sticky;
  top: 0;
  /* z-index: 99999; */
  transition: all 0.3s ease;
}

/* Scroll Effect */
#navbar.sticky-active {
  /* background: #fff !important; */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  border-radius: 0 !important;
}
.top-header-area {
  background: #ffffff !important;
  width: 100%;
  padding: 14px 0;
  z-index: 10;
}
/* Reduce banner height */
.bannerheight,
.main-banner-area {
  height: 750px !important; /* Force height */
  max-height: 490px !important;
  overflow: hidden !important;
}

/* Ensure background image fits properly */
.main-banner-area {
  background-size: cover !important;
  background-position: center !important;
  object-fit: contain;
}
/* --------------------------header mobile icon------------------------------- */
/* Style for toggle icon in mobile menu */
.mobile-navbar .nav-link {
  position: relative;
  padding-right: 35px !important; /* space for + icon */
}

/* Style the + icon */
.mobile-navbar .toggle-icon {
  position: absolute;
  right: 10px; /* move icon to proper right side */
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
}

/* Optional: Improve row spacing */
.mobile-navbar li {
  margin-bottom: 5px;
}

/* Button look better */
.mobile-navbar button.nav-link {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 10px;
}

/* -------------------end header mobile icon----------------------------------- */
/* banner end */
/* about */
.content-box p {
  text-align: justify; /* Justify all paragraphs inside content-box */
  line-height: 1.6; /* Optional: improves readability */
}

/* about end */
/* FloatingSocial CSS Start */
.floating-social {
  position: fixed;
  top: 35%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.floating-social a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  border-radius: 4px 0 0 4px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-social a:hover {
  transform: translateX(-5px);
  opacity: 0.9;
}

/* Individual Colors */

.floating-social .facebook {
  background-color: #3b5998;
}

.floating-social .whatsapp {
  background-color: #25d366;
}

.floating-social .social-icon.x {
  background-color: #000; /* X is black-themed */
}

.floating-social .youtube {
  background-color: #ff0000; /* YouTube Red */
}

/* FloatingSocial CSS End */

/* <!-- Enhanced Gallery CSS Start --> */

/* Gallery Section */
.gallery-section {
  padding: 20px 0;
  background-color: #f9f9f9;
}

/* Filter Buttons */
.filter {
  text-align: center;
  margin-bottom: 30px;
}

.filter .btn {
  padding: 12px 22px;
  margin: 6px;
  color: #333;
  background: #fff;
  border: 2px solid #4fad0a; /* SEED Green */
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

/* Background Fill Animation */
.filter .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4fad0a; /* Green Fill */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.filter .btn:hover::after,
.filter .btn.btn-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.filter .btn:hover,
.filter .btn.btn-active {
  color: #fff;
  box-shadow: 0 6px 14px rgba(79, 173, 10, 0.4);
}

/* Fix for text visibility */
.filter .btn span {
  position: relative;
  z-index: 2;
}

/* Animated Leaf Icon */
.filter .btn .leaf-icon {
  font-size: 18px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.filter .btn.btn-active .leaf-icon {
  opacity: 1;
  transform: scale(1);
  animation: rotateLeaf 0.6s ease;
}

@keyframes rotateLeaf {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(79, 173, 10, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Title Overlay */
.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(79, 173, 10, 0.9);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.gallery-item:hover .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.openDiv {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.imgPreview {
  max-width: 80%;
  max-height: 80%;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.4s ease;
}

.lightbox-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* Lightbox Buttons */
.closeBtn,
.nextButton,
.prevButton {
  position: absolute;
  background: #4fad0a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.closeBtn {
  background: #aa0505 !important;
}

.closeBtn:hover {
  background: #9409f1;
}

.nextButton:hover,
.prevButton:hover {
  background: #3d8d08;
}

.closeBtn {
  top: 20px;
  right: 20px;
}

.nextButton {
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
}

.prevButton {
  top: 50%;
  left: 75px;
  transform: translateY(-50%);
}

/* Animations */
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* <!-- Enhanced Gallery CSS Start --> */
.approach-container {
  width: 80%;
  margin: 50px auto;
  font-family: "Segoe UI", sans-serif;
}

.approach-title {
  text-align: center;
  color: #2fa42e;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.approach-card {
  background: white;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
  border-left: 4px solid #0b8e42;
  padding-left: 10px;
  font-weight: 600;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
}

.benefit-list li::before {
  content: "✔";
  color: #0b8e42;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
/* stories */
.report-container {
  width: 90%;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.report-table thead {
  background: #6cb42c; /* green header from screenshot */
  color: white;
}

.report-table th,
.report-table td {
  padding: 18px;
  text-align: left;
  border: 1px solid #e3e3e3;
}

.report-table tbody tr.alt {
  background: #f6fff6; /* light green alternate row */
}

.pdf-icon {
  width: 35px;
  cursor: pointer;
}
/* offer */
.offer-wrapper {
  width: 90%;
  margin: 50px auto;
  text-align: center;
}

.offer-title {
  font-size: 32px;
  font-weight: 700;
  color: #133b5c;
  letter-spacing: 1px;
}

.underline {
  width: 60px;
  height: 4px;
  background: #1faa59;
  margin: 10px auto 30px;
  border-radius: 5px;
}

.offer-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.offer-box p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}
/* header */
@media (max-width: 768px) {
  /* Main row becomes column */
  .top-header-area .row {
    flex-direction: column;
    display: none;
  }

  /* The 3 cards are full width stacked */
  .top-header-content .row {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    display: none;
  }

  .top-header-content .col-lg-4,
  .top-header-content .col-md-4,
  .top-header-content .col-sm-6 {
    width: 100%; /* Each card full width */
    max-width: 100%;
    display: none;
  }

  /* Card styling for neat display */
  .adress-card {
    width: 100%;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    display: none;
  }

  /* Icon center */
  .adress-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
  }

  /* Social icons also full width and centered */
  .top-header-icon {
    justify-content: center !important;
    margin-top: 12px;
    display: none;
  }

  .social li a {
    width: 40px;
    height: 40px;
    /* background: #f1f1f1; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* display: none; */
  }
}
/* ----------------------- NAV LINK STYLING ----------------------- */
.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
  color: #333;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
}

/* .navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover {
  background-color: #f0f0f0;
} */

/* ----------------------- DROPDOWN MENU ----------------------- */
.navbar-nav .dropdown-menu {
  display: none; /* Hidden by default */
  position: static; /* For mobile, use static */
  float: none;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

/* Show dropdown when parent has .show */
.navbar-nav .dropdown.show > .dropdown-menu {
  display: block;
}

/* Nested Dropdowns */
.navbar-nav .dropdown-menu .dropdown-menu {
  padding-left: 15px; /* Indent nested menus */
  border-left: 2px solid #ddd;
}

/* ----------------------- DROPDOWN TOGGLE CARET ----------------------- */
.navbar-nav .dropdown-toggle::after {
  content: " ▸";
  float: right;
  transition: transform 0.3s;
}

.navbar-nav .dropdown-toggle.show::after {
  transform: rotate(90deg);
}

/* ----------------------- RESPONSIVE MOBILE ----------------------- */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    position: static; /* Dropdowns behave like accordion on mobile */
    box-shadow: none;
    border: none;
  }

  /* Remove hover behavior */
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: none;
  }
}
.org-chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-box {
  background: #0094ff;
  padding: 12px 25px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  width: 300px;
}

.org-line {
  width: 2px;
  height: 25px;
  background: #ccc;
  margin: 10px 0;
}
/* missionvision */
.features-area .container-fluid.lr-padding {
  margin-top: -80px !important;
}
/* header */
/* remove pill rounding on navbar container */
.pd-navbar,
#navbar,
.container-fluid.pd-navbar {
  border-radius: 0 !important;
}

/* ensure offcanvas (mobile menu) has no rounding */
.side-modal.mobile-navbar.offcanvas,
.offcanvas {
  border-radius: 0 !important;
}

/* make sure the header shows full red
   adjust hex to your site's red if needed */
.bg-color1,
#navbar {
  background-color: #dd8405 !important;
}

/* optional: remove any box-shadow so it's a plain flat red bar */
#navbar,
.pd-navbar {
  box-shadow: none !important;
}

/* optional: remove body margin if you see white gaps at very top */
body {
  margin: 0;
}
/* icon */
/* 1 : FloatingSocial CSS  */
/* 2 : Enhanced Gallery CSS */

/* FloatingSocial CSS Start */
.floating-social {
  position: fixed;
  top: 35%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.floating-social a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  border-radius: 4px 0 0 4px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-social a:hover {
  transform: translateX(-5px);
  opacity: 0.9;
}

/* Individual Colors */

.floating-social .facebook {
  background-color: #3b5998;
}

.floating-social .whatsapp {
  background-color: #25d366;
}

.floating-social .social-icon.x {
  background-color: #000; /* X is black-themed */
}

.floating-social .youtube {
  background-color: #ff0000; /* YouTube Red */
}

/* FloatingSocial CSS End */

/* <!-- Enhanced Gallery CSS Start --> */

/* Gallery Section */
.gallery-section {
  padding: 20px 0;
  background-color: #f9f9f9;
}

/* Filter Buttons */
.filter {
  text-align: center;
  margin-bottom: 30px;
}

.filter .btn {
  padding: 12px 22px;
  margin: 6px;
  color: #333;
  background: #fff;
  border: 2px solid #4fad0a; /* SEED Green */
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

/* Background Fill Animation */
.filter .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4fad0a; /* Green Fill */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.filter .btn:hover::after,
.filter .btn.btn-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.filter .btn:hover,
.filter .btn.btn-active {
  color: #fff;
  box-shadow: 0 6px 14px rgba(79, 173, 10, 0.4);
}

/* Fix for text visibility */
.filter .btn span {
  position: relative;
  z-index: 2;
}

/* Animated Leaf Icon */
.filter .btn .leaf-icon {
  font-size: 18px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.filter .btn.btn-active .leaf-icon {
  opacity: 1;
  transform: scale(1);
  animation: rotateLeaf 0.6s ease;
}

@keyframes rotateLeaf {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(79, 173, 10, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Title Overlay */
.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(79, 173, 10, 0.9);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.gallery-item:hover .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.openDiv {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.imgPreview {
  max-width: 80%;
  max-height: 80%;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.4s ease;
}

.lightbox-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* Lightbox Buttons */
.closeBtn,
.nextButton,
.prevButton {
  position: absolute;
  background: #4fad0a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.closeBtn {
  background: #aa0505 !important;
}

.closeBtn:hover {
  background: #9409f1;
}

.nextButton:hover,
.prevButton:hover {
  background: #3d8d08;
}

.closeBtn {
  top: 20px;
  right: 20px;
}

.nextButton {
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
}

.prevButton {
  top: 50%;
  left: 75px;
  transform: translateY(-50%);
}

/* Animations */
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* <!-- Enhanced Gallery CSS Start --> */
/* events */
/* Slider Card Container */
.event-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  min-height: 450px;
  position: relative;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
}

/* Category Tag */
.event-tag {
  background: #6ac610;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 6px;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

/* Image Style */
.event-img {
  width: 100%;
  height: 216px; /* YOUR EXACT DESIGN HEIGHT */
  object-fit: cover; /* crop without distortion */
  border-radius: 8px;
  margin-bottom: 18px;
}

/* Title */
.event-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

/* Description */
.event-desc {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  height: 80px;
  overflow: hidden;
}

/* Read More Button */
.readMoreBtn {
  /* margin-top: 20px; */
  background: #6ac610;
  color: #fff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.readMoreBtn:hover {
  background: #dd8405;
}

/* Arrows */
.custom-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #dd8405;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.custom-arrow:hover {
  background: #6ac610;
}

.next-arrow {
  right: -15px;
}

.prev-arrow {
  left: -15px;
}

/* Spacing between slides */
.slick-slide {
  padding: 0 15px;
}

/* Mobile Fixes */
/* Mobile view fixes */
@media (max-width: 768px) {
  .event-card {
    min-height: auto; /* remove big min-height */
    padding: 15px;
    width: 300px;
  }

  .event-img {
    height: 180px; /* smaller image */
    object-fit: cover;
  }

  /* Force slick to calculate full width */
  /* .slick-slider,
  .slick-list,
  .slick-track {
    width: 100% !important;
  } */

  .slick-track {
    display: flex !important;
  }

  .slick-slide {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
  }

  .events-container {
    overflow: hidden;
  }
}
/* activities */
/* Hide bottom title when hovered */
.activity-box:hover .bottom-bar span {
  opacity: 0; /* hide text */
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}
.bottom-icon svg,
.center-icon svg {
  color: #ffffff !important; /* Make all icons white */
}

.hoverBox {
  color: white; /* Text color white */
  text-align: justify; /* Justify alignment */
}
.center-content {
  width: 90%; /* Increase as needed */
  max-width: 500px; /* Optional max width */
}

.center-content p {
  color: #fff !important; /* White text */
  text-align: justify !important; /* Justify text */
  line-height: 1.6;
  width: 100%; /* Ensures text uses full space */
  /* (optional) nicer readability */
}

.hover-list {
  color: #fff !important; /* White text */
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

/* Hide icon when hovering the activity box */
.activity-box:hover .center-icon {
  display: none !important;
}

/* Show center content on hover */
.activity-box .center-content {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.activity-box:hover .center-content {
  opacity: 1;
  visibility: visible;
}

.activities-container {
  text-align: center;
  margin: 40px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 25px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
@media (min-width: 1000px) and (max-width: 1300px) {
  .activities-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(220px, 1fr)
    ); /* adjust column width */
    gap: 20px; /* optional: adjust gap */
  }
}

/* Card */
.activity-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.activity-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Overlay sliding from LEFT → RIGHT */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--clr);
  opacity: 0.7;
  transform: translateX(-100%);
  transition: 0.5s ease;
}

.activity-box:hover .slide-overlay {
  transform: translateX(0);
}

/* Bottom Bar */
.bottom-bar1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  transition: 0.4s ease;
}
.bottom-bar1 span {
  color: #fff !important;
}
.bottom-icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.bottom-bar span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* MOVE bottom bar (icon + title) TO CENTER on hover */
.activity-box:hover .bottom-bar {
  opacity: 0;
  transform: translateY(40px);
}

/* Center hover content */
.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 40px);
  text-align: center;
  opacity: 0;
  transition: 0.5s ease;
  color: white;
}

.center-icon {
  width: 60px;
  height: 60px;
  background: var(--clr);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
}

.center-icon img {
  width: 32px;
  filter: brightness(0) invert(1);
}

/* Reveal center content on hover */
.activity-box:hover .center-content {
  transform: translate(-50%, -50%);
  opacity: 1;
}
/* slider */
/* Sponsor Item Box */
.sponsor-item {
  padding: 15px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/* Sponsor Images (Responsive) */
.sponsor-item img {
  width: 100%;
  max-width: 280px; /* control size */
  height: auto;
  object-fit: contain;
  display: block; /* IMPORTANT – fixes blank image issue */
  transition: 0.3s;
}

.sponsor-item img:hover {
  transform: scale(1.05);
}

/* Prevent slider height collapse */
.slick-slide {
  min-height: 90px !important;
}

/* Mobile Responsive */
/* Mobile Responsive */
/* Mobile Responsive - Show One Logo */
@media (max-width: 576px) {
  .sponsor-item {
    padding: 10px;
  }

  .sponsor-item img {
    width: 90%; /* almost full width */
    max-width: 250px; /* allow bigger logos */
    height: auto;
  }

  .slick-slide {
    min-height: 150px !important; /* enough height for one logo */
  }
}

/* Promoting Section Fix */
.promoting-text {
  margin-top: -100px;
}
@media (max-width: 768px) {
  .promoting-text {
    margin-top: 0;
  }
  .section-title {
    margin-top: 24px;
  }
}

/* WATERSHER */
/* Show only 60px initially */
.text-box {
  height: 236px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

/* When expanded show full */
.text-box.open {
  height: auto;
}

/* Button hover */
.btn-success:hover {
  color: #fff !important;
}

.watershed-image {
  margin-top: -300px;
}

/* Optional: Adjust for mobile */
@media (max-width: 768px) {
  .watershed-image {
    margin-top: 0; /* reset margin for mobile */
  }
}
/* outboard */
/* -----------------------------------------
 /* LEFT SIDE BACKGROUND LIKE THE RED PANEL */
.left-box {
  /* background: #c62828; */
  color: #fff;
  height: 100%;
}

.title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 25px;
}

.name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #6ac610;
}

.role {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.short-desc {
  text-align: justify;
  font-size: 17px;
  line-height: 1.6;
}

/* READ MORE BUTTON */
.read-btn {
  background: #fff;
  color: #c62828;
  border: none;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.read-btn:hover {
  opacity: 0.9;
}

/* EXPANDED CONTENT BOX */
.expanded-box {
  background: #ffffff;
  color: #000;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.right-box {
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-photo {
  width: 100%;
  /* transition: all 0.5s ease; */
}

.leader-photo.photo-expanded {
  width: 80%;
  transform: scale(1.1);
}

/* Button style */
.read-btn {
  background: #fff;
  color: #dd8405;
  border: 2px solid #dd8405;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.read-btn:hover {
  background: #6ac610;
  color: #fff;
}
/* Make the full-width section beautiful */
.full-width-description {
  background: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  animation: fadeSlide 0.5s ease;
}

/* Smooth animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image sizing */
.leader-photo {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

/* Image grows on expand */
/* .photo-expanded {
  max-width: 100%;
  transform: scale(1.05);
} */
/* Large photo for main member (Ranjan) */
.leader-photo.large-img {
  width: 100%; /* Full width of the column */
  max-width: 786px; /* Adjust as needed */
  height: auto;
}

/* Smaller photo for other members (2,3,4) */

/* Optional: align small member images center in their column */
.small-member .col-md-4.text-center img {
  display: inline-block;
}
/* millet */
/* Millet page custom spacing */

.title-green {
  color: #6ac610;
}

/* ========================================= */
* AAA */
/* Premium FunFact */
.premium-funfact {
  background: #f5f7fa;
}

.premium-card {
  padding: 35px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* Alternating colors */
.color-green h2,
.color-green .funfact-icon {
  color: #009900;
}

.color-orange h2,
.color-orange .funfact-icon {
  color: #dd8405;
}

/* Icon Style */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  background: #eef2f3;
  align-items: center;
  justify-content: center;
}

.funfact-icon {
  font-size: 34px;
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.15s;
}
.fade-up:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-up:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sleek Layout */
.sleek-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.sleek-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-left {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #f0f2f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funfact-icon {
  font-size: 28px;
}

/* Colors */
.color-green .funfact-icon,
.color-green h2 {
  color: #009900;
}

.color-orange .funfact-icon,
.color-orange h2 {
  color: #dd8405;
}

/* Text styles */
.fact-label {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-top: 2px;
  display: block;
}

/* ============ */
.sleek-funfact {
  background: linear-gradient(135deg, #dfe9f3, #ffffff);
}

.sleek-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}
.logo-200 {
  width: 200% !important;
  height: auto !important;
}
/* strategy */
.strategy-card {
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .strategy-card {
    padding: 20px;
    font-size: 14px;
  }
}
.partner-slider-box {
  width: 100%;
  padding: 30px 0;
}

.partner-slide-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partner-slide-img {
  height: 70px; /* Make logo visible on mobile */
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-slide-img {
    height: 60px !important; /* Slightly smaller for mobile */
  }
}
/* --- FULL FIX: FORCE MOBILE ONE LOGO ---*/
@media (max-width: 767px) {
  /* Kill any parent flex that causes logo shrink */
  .partner-slider-box,
  .partner-slider-box * {
    display: block !important;
    white-space: normal !important;
    flex-wrap: nowrap !important;
  }

  /* Force slick slide to take entire screen */
  .partner-slider-box .slick-slide {
    width: 100vw !important;
    max-width: 100% !important;
  }

  /* Force each slide content centered */
  .partner-slide-item {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Logo size */
  .partner-slide-img {
    max-width: 80% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* FORCE SLICK: SHOW ONLY 1 SLIDE ON MOBILE — 100% FIX */
@media (max-width: 767px) {
  /* disable any other carousel CSS */
  .partner-slider-box .owl-carousel,
  .partner-slider-box .owl-stage,
  .partner-slider-box .owl-item {
    display: block !important;
    width: 100% !important;
  }

  /* force slick track to behave correctly */
  .partner-slider-box .slick-track {
    transform: translate3d(0, 0, 0) !important;
    width: 100vw !important;
  }

  .partner-slider-box .slick-slide {
    width: 100vw !important;
    display: flex !important;
    justify-content: center;
  }

  .partner-slide-item {
    width: 100% !important;
  }

  /* logo centered */
  .partner-slide-img {
    max-width: 70% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* ---------------------------------------------------------
   ABSOLUTE FIX FOR MOBILE: FORCE SLICK TO SHOW 1 SLIDE ONLY
----------------------------------------------------------*/
.partner-slider-fix {
  overflow: hidden !important;
  margin: 40px;
}

.partner-slider-fix .slick-track {
  display: flex !important;
}

/* Each slide must act like a full page width */
.partner-slider-fix .slick-slide {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.slide-box {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.slide-logo {
  width: auto !important;
  height: 70px !important;
  object-fit: contain;
}

/* MOBILE FIX */
@media (max-width: 767px) {
  /* Force track to be horizontal and scrollable */
  .partner-slider-fix .slick-track {
    width: 100% !important;
    display: flex !important;
  }

  .partner-slider-fix .slick-slide {
    width: 100vw !important;
    max-width: 100% !important;
  }

  .slide-box {
    width: 100vw !important;
  }

  .slide-logo {
    max-width: 70% !important;
    height: auto !important;
  }
}
/* about co EXPLORE */

/* END FOOTER EXPLORE */
/* vision */
/* Extra Small Devices (Phones) */
@media only screen and (max-width: 575px) {
  .section-title-wrapper {
    margin-top: 0px; /* adjust as needed */
  }
}

/* Small Devices (Phones & Phablets) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-wrapper {
    margin-top: 0px; /* adjust as needed */
  }
}

/* Extra Extra Large Devices (Large Screens) */
@media only screen and (min-width: 1400px) {
  .section-title-wrapper {
    margin-top: -213px; /* adjust as needed */
  }
}
/* list of advisers */
.advisers-section {
  background-color: #f8f9fa; /* light gray */
  padding: 60px 0;
}

.advisers-section .section-title {
  font-size: 25px;
  font-weight: 600;
  color: #6ac610;
}

.advisers-section ul {
  /* list-style-type: disc; */
  padding-left: 20px;
}

.advisers-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}
