* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus,
:active {
  box-shadow: none !important;
}
.custom-top-bar {
  height: 56px;
  position: relative;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Gradient background */
.custom-top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    #692900 0%,
    #692900d1 40%,
    #8bbe00 60%,
    #347c00 100%
  );
  z-index: -2;
}

/* Glass overlay */
.custom-top-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.h-100 {
  height: 100%;
}

/* Left Content - Glassmorphism with Text Hover */
.left-content {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-content:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Individual Text Items */
.left-content span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 20px;
  position: relative;
}

/* Text Hover Effect - Color Change */
.left-content span:hover {
  color: #7c4420 !important;
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.1);
}

/* Icon Hover Effect */
.left-content span i {
  margin-right: 8px;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.9);
}
.left-content span a {
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.9);
}

.left-content span:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #ffffff;
}
.left-content span:hover a {
  color: #ffffff;
}

/* Underline animation on hover */
.left-content span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #7c4420;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.left-content span:hover::after {
  width: 80%;
}

/* Different hover colors for each item (optional) */
.left-content span:nth-child(1):hover {
  color: #7c4420 !important;
}
.left-content span:nth-child(1):hover i {
  color: #7c4420;
}

.left-content span:nth-child(2):hover {
  color: #7c4420 !important;
}
.left-content span:nth-child(2):hover i {
  color: #7c4420;
}

.left-content span:nth-child(3):hover {
  color: #ffffff !important;
}
.left-content span:nth-child(3):hover i {
  color: #7c4420;
}

/* Right Icons - Modern Style */
.right-icons {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.right-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* Ripple effect on icons */
.right-icons a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.5s,
    height 0.5s;
}

.right-icons a:hover::before {
  width: 100%;
  height: 100%;
}

.right-icons a:hover {
  background: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

/* Brand colors on hover */
.right-icons a:nth-child(1):hover {
  color: #1877f2;
}
.right-icons a:nth-child(2):hover {
  color: #1da1f2;
}
.right-icons a:nth-child(3):hover {
  color: #e60023;
}
.right-icons a:nth-child(4):hover {
  color: #db4437;
}
.right-icons a:nth-child(5):hover {
  color: #e60023;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-top-bar {
    height: auto;
    padding: 12px 0;
  }

  .d-flex {
    flex-direction: column;
    gap: 12px;
  }

  .left-content {
    font-size: 10px;
    padding: 6px 16px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .left-content span {
    font-size: 12px;
    padding: 2px 6px;
  }

  .right-icons {
    gap: 8px;
  }

  .right-icons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .left-content {
    font-size: 8px !important;
    gap: 12px;
    padding: 6px 12px;
  }

  .left-content span {
    font-size: 10px;
  }
  .left-content span a {
    font-size: 8px;
  }
  .right-icons {
    display: none !important;
  }
}
/* ====================== MAIN NAVBAR PROFESSIONAL ====================== */
.main-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

/* Logo Styling */
.navbar-brand {
  padding: 8px 0;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand img {
  transition: all 0.3s ease;
  height: 80px;
}

/* ====================== NAV LINK STYLES ====================== */
.main-navbar .nav-link {
  position: relative;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  color: #2c3e50 !important;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Animated underline effect */
.main-navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #91cd05, #7c4420);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.main-navbar .nav-link:hover::before {
  width: 70%;
}

.main-navbar .nav-link:hover {
  color: #91cd05 !important;
  transform: translateY(-2px);
}

/* Active link */
.main-navbar .nav-link.active::before {
  width: 70%;
}

/* ====================== DROPDOWN FIX - STAY OPEN ====================== */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 0;
  animation: fadeInDown 0.3s ease;
}

/* Desktop dropdown stay open fix */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 24px;
  font-weight: 500;
  font-size: 14px;
  color: #2c3e50;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item i {
  margin-right: 12px;
  width: 20px;
  color: #91cd05;
  transition: all 0.3s ease;
  font-size: 14px;
}

.dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 191, 165, 0.08),
    rgba(173, 20, 87, 0.08)
  );
  color: #91cd05;
  transform: translateX(5px);
}

.dropdown-item:hover i {
  color: #7c4420;
  transform: scale(1.15);
}

.dropdown-divider {
  margin: 8px 0;
  background: linear-gradient(90deg, #91cd05, #7c4420);
  height: 2px;
}

/* ====================== DONATE BUTTON ====================== */
.donate-btn-nav {
  background: linear-gradient(135deg, #63c90acc, #1a6d08);
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  color: white;
  text-decoration: none !important;
  margin-left: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgb(71 137 20 / 73%);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.donate-btn-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.donate-btn-nav:hover::before {
  width: 300px;
  height: 300px;
}

.donate-btn-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgb(105 41 0 / 56%);
  color: #ffffff !important;
  background: linear-gradient(135deg, #865231, #743a14);
}

.donate-btn-nav i {
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ====================== TOGGLER BUTTON ====================== */
.navbar-toggler {
  border: none;
  padding: 10px 12px;
  background: linear-gradient(135deg, #91cd05, #7c4420);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  transform: scale(1.05);
}

.navbar-toggler i {
  font-size: 24px;
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ====================== FULL RESPONSIVE BREAKPOINTS ====================== */

/* Laptop/Desktop (1200px and above) */
@media (min-width: 1200px) {
  .main-navbar .nav-link {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .navbar-brand span {
    font-size: 20px;
  }
}

/* Tablet & Small Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .main-navbar .nav-link {
    padding: 12px 10px !important;
    font-size: 10px !important;
  }
  .navbar-brand img {
    transition: all 0.3s ease;
    height: 55px;
  }

  .navbar-brand span {
    font-size: 18px;
  }

  .donate-btn-nav {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .main-navbar {
    padding: 10px 0;
  }

  .collapse.navbar-collapse {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .main-navbar .nav-link {
    padding: 10px 15px;
    font-size: 14px;
    white-space: normal;
  }

  .main-navbar .nav-link i {
    width: 25px;
  }

  .dropdown-menu {
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 0;
    padding: 8px 0;
    position: static !important;
    width: 100%;
  }

  .dropdown-menu.show {
    display: block;
  }

  .donate-btn-nav {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 18px;
  }

  .dropdown-item {
    padding-left: 40px;
  }

  .navbar-brand img {
    height: 45px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .main-navbar {
    padding: 8px 0;
  }
  /* 
  .container {
    max-width: 540px;
    padding: 0 15px;
  } */

  .navbar-brand img {
    height: 40px;
  }

  .navbar-brand span {
    font-size: 16px;
  }

  .collapse.navbar-collapse {
    background: white;
    border-radius: 16px;
    padding: 15px;
    margin-top: 12px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .main-navbar .nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .main-navbar .nav-link i {
    width: 22px;
    font-size: 13px;
  }

  .dropdown-menu {
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 0;
    padding: 5px 0;
    position: static !important;
    width: 100%;
  }

  .dropdown-item {
    padding: 8px 20px 8px 40px;
    font-size: 13px;
  }

  .dropdown-item i {
    margin-right: 10px;
    font-size: 12px;
  }

  .donate-btn-nav {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .navbar-toggler {
    padding: 8px 10px;
  }

  .navbar-toggler i {
    font-size: 20px;
  }
}

/* Mobile Portrait (320px - 575px) - Smallest Devices */
@media (max-width: 575px) {
  .main-navbar {
    padding: 5px 0;
  }

  .container {
    padding: 0 12px;
  }

  .navbar-brand {
    gap: 5px;
  }

  .navbar-brand img {
    height: 70px;
  }

  .navbar-brand span {
    font-size: 14px;
    letter-spacing: 0;
  }

  .collapse.navbar-collapse {
    background: white;
    border-radius: 14px;
    padding: 12px;
    margin-top: 10px;
    max-height: 65vh;
    overflow-y: auto;
  }

  .main-navbar .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .main-navbar .nav-link i {
    width: 20px;
    font-size: 12px;
    margin-right: 5px;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 14px;
  }

  .dropdown-menu {
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0;
    padding: 5px 0;
    position: static !important;
    width: 100%;
  }

  .dropdown-item {
    padding: 6px 15px 6px 35px;
    font-size: 12px;
  }

  .dropdown-item i {
    margin-right: 8px;
    font-size: 11px;
    width: 18px;
  }

  .donate-btn-nav {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
  }

  .donate-btn-nav i {
    margin-right: 6px;
  }

  .navbar-toggler {
    padding: 6px 8px;
  }

  .navbar-toggler i {
    font-size: 18px;
  }

  /* Better touch targets for mobile */
  .nav-link,
  .dropdown-item,
  .donate-btn-nav {
    touch-action: manipulation;
  }

  /* Improve scrolling */
  .collapse.navbar-collapse::-webkit-scrollbar {
    width: 4px;
  }

  .collapse.navbar-collapse::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .collapse.navbar-collapse::-webkit-scrollbar-thumb {
    background: #91cd05;
    border-radius: 10px;
  }
}

/* Extra Small (Below 320px - Old phones) */
@media (max-width: 320px) {
  .navbar-brand img {
    height: 60px;
  }

  .navbar-brand span {
    font-size: 12px;
  }

  .main-navbar .nav-link {
    font-size: 11px;
    padding: 6px 8px;
  }

  .dropdown-item {
    font-size: 11px;
    padding: 5px 12px 5px 30px;
  }

  .donate-btn-nav {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* Scroll effect */
.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Dropdown caret rotation */
.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ====================== HERO CAROUSEL ====================== */
.ngo-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.carousel {
  height: 100vh;
  min-height: 550px;
  position: relative;
}

.carousel-item {
  position: relative;
  height: 100vh;
  min-height: 550px;
}

/* Dark Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: transform 8s ease;
}

.carousel-item.active img {
  transform: scale(1.05);
}

/* ====================== GLASS CONTAINER - EVERYTHING INSIDE ====================== */
.glass-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 85%;
  max-width: 900px;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 28px;

  /* Border & Shadow */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);

  /* Inner spacing - everything inside */
  padding: 45px 40px;

  /* Animation */
  animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Badge/Tag */
.carousel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #073600, #723611);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: white;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}

/* Main Heading */
.glass-container h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.25;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}

/* Description */
.glass-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  animation: fadeSlideUp 0.6s ease 0.4s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Group */
.btn-group-custom {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease 0.5s both;
}

/* Primary Button */
.btn-donate {
  background: linear-gradient(135deg, #76ae00, #0c6000);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgb(9 90 1 / 76%);
  background: linear-gradient(135deg, #86b900, #468500);
  color: white;
}

/* Secondary Button */
.btn-learn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-learn:hover {
  background: white;
  color: #1d6d00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

/* ====================== DOTS INDICATORS ====================== */
.carousel-indicators {
  bottom: 30px;
  z-index: 3;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #91cd05;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 191, 165, 0.6);
}

/* ====================== NAVIGATION ARROWS ====================== */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  transition: all 0.3s ease;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ngo-carousel-container:hover .carousel-control-prev,
.ngo-carousel-container:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #91cd05;
  transform: translateY(-50%) scale(1.1);
  border-color: transparent;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

/* ====================== RESPONSIVE - NO CUT OFF ====================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .glass-container {
    max-width: 1000px;
    padding: 55px 50px;
  }
  .glass-container h1 {
    font-size: 62px;
  }
  .glass-container p {
    font-size: 18px;
    max-width: 80%;
  }
}

/* Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
  .glass-container {
    max-width: 850px;
    padding: 50px 45px;
  }
  .glass-container h1 {
    font-size: 54px;
  }
  .glass-container p {
    font-size: 17px;
    max-width: 85%;
  }
}

/* Small Desktop / Large Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
  .glass-container {
    max-width: 750px;
    padding: 42px 38px;
    border-radius: 24px;
  }
  .glass-container h1 {
    font-size: 46px;
  }
  .glass-container p {
    font-size: 16px;
    max-width: 90%;
  }
  .btn-donate,
  .btn-learn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .carousel,
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  .glass-container {
    width: 88%;
    max-width: 650px;
    padding: 35px 30px;
    border-radius: 22px;
  }
  .glass-container h1 {
    font-size: 36px;
    margin-bottom: 14px;
  }
  .glass-container p {
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 95%;
  }
  .carousel-badge {
    font-size: 10px;
    padding: 5px 16px;
    margin-bottom: 16px;
  }
  .btn-donate,
  .btn-learn {
    padding: 9px 24px;
    font-size: 13px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 42px;
    height: 42px;
    margin: 0 15px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
  .carousel,
  .carousel-item {
    height: 65vh;
    min-height: 480px;
  }
  .glass-container {
    width: 90%;
    max-width: 520px;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .glass-container h1 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .glass-container p {
    font-size: 13px;
    margin-bottom: 22px;
    max-width: 100%;
    line-height: 1.5;
  }
  .carousel-badge {
    font-size: 9px;
    padding: 4px 14px;
    margin-bottom: 14px;
    gap: 5px;
  }
  .carousel-badge i {
    font-size: 9px;
  }
  .btn-group-custom {
    gap: 12px;
  }
  .btn-donate,
  .btn-learn {
    padding: 8px 20px;
    font-size: 11px;
  }
  .btn-donate i,
  .btn-learn i {
    font-size: 10px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
    margin: 0 12px;
    opacity: 0.5;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
  .carousel-indicators {
    bottom: 15px;
  }
  .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
}

/* Mobile Portrait */
@media (max-width: 575px) {
  .carousel,
  .carousel-item {
    height: 60vh;
    min-height: 450px;
  }
  .glass-container {
    width: 92%;
    max-width: 400px;
    padding: 22px 20px;
    border-radius: 18px;
  }
  .glass-container h1 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .glass-container p {
    font-size: 11px;
    margin-bottom: 18px;
    max-width: 100%;
    line-height: 1.5;
  }
  .carousel-badge {
    font-size: 8px;
    padding: 3px 12px;
    margin-bottom: 12px;
    gap: 4px;
  }
  .carousel-badge i {
    font-size: 8px;
  }
  .btn-group-custom {
    gap: 10px;
  }
  .btn-donate,
  .btn-learn {
    padding: 6px 16px;
    font-size: 10px;
  }
  .btn-donate i,
  .btn-learn i {
    font-size: 9px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
    margin: 0 8px;
    opacity: 0.4;
    z-index: 999;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }
  .carousel-indicators {
    bottom: 12px;
  }
  .carousel-indicators button {
    width: 7px;
    height: 7px;
    margin: 0 4px;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .carousel,
  .carousel-item {
    height: 65vh;
    min-height: 420px;
  }
  .glass-container {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .glass-container h1 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .glass-container p {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .btn-donate,
  .btn-learn {
    padding: 5px 12px;
    font-size: 9px;
  }
}

/* Ensure no overflow on very small devices */
@media (max-width: 320px) {
  .glass-container {
    padding: 15px 12px;
  }
  .glass-container h1 {
    font-size: 16px;
  }
  .glass-container p {
    font-size: 9px;
  }
  .btn-donate,
  .btn-learn {
    padding: 4px 10px;
    font-size: 8px;
  }
  .btn-donate i,
  .btn-learn i {
    font-size: 8px;
  }
}
/* ====================== ABOUT SECTION PROFESSIONAL ====================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.about-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.08) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(173, 20, 87, 0.08) 0%,
    rgba(173, 20, 87, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* ====================== DOUBLE IMAGE STYLES ====================== */
.about-img-container {
  position: relative;
  height: 520px;
  border-radius: 20px;
  z-index: 1;
}

/* Main Image */
.main-img-wrapper {
  position: relative;
  height: 100%;
  width: 85%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.3s ease;
}

.main-img-wrapper:hover .main-img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Glass overlay on hover */
.main-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 191, 165, 0);
  transition: all 0.4s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
}

.main-img-wrapper:hover::before {
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.2),
    rgba(173, 20, 87, 0.2)
  );
}

/* Small Overlay Image (Top Right Corner) */
.overlay-img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  transition: all 0.3s ease;
  z-index: 2;
}

.overlay-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.overlay-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.3);
  border-color: #91cd05;
}

.overlay-img:hover img {
  transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #91cd05, #7c4420);
  color: white;
  padding: 20px;
  border-radius: 16px;
  width: 120px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 191, 165, 0.4);
  z-index: 3;
  transition: all 0.3s ease;
}

.experience-badge:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.5);
}

.years {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  display: block;
  margin-top: 5px;
  font-weight: 500;
}

/* ====================== SECTION HEADER ====================== */
.section-header {
  margin-bottom: 30px;
}

.subtitle {
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
  background: rgb(52 124 0 / 15%);
  padding: 6px 18px;
  border-radius: 50px;
}

.section-title {
  color: #2c3e50;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #093b00, #6d2f07);
  margin: 20px 0;
  border-radius: 4px;
}

.about-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ====================== FEATURE ITEMS WITH HOVER ====================== */
.about-features {
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  margin-bottom: 25px;
  padding: 15px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.15);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgb(6 56 0), rgb(106 42 1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  color: #043800;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #053700, #692900);
  color: #fff;
  transform: rotate(360deg) scale(1.1);
}

.feature-content {
  margin-left: 10px;
}
.feature-content h4 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ====================== STATS STYLES ====================== */
.about-stats {
  display: flex;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 18px 15px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  min-width: 110px;
  flex: 1;
  transition: all 0.3s ease;
  border: 1px solid rgb(52 124 0 / 15%);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #91cd05;
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.15);
}

.stat-number {
  color: #91cd05;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat-label {
  color: #6c757d;
  font-weight: 500;
  margin: 0;
  font-size: 0.85rem;
}

/* ====================== BUTTON STYLES ====================== */
.about-btn {
  background: linear-gradient(135deg, #3a7a00, #093901);
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
  color: white;
}

.about-btn i {
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.8rem;
  }
  .about-img-container {
    height: 550px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 2.2rem;
  }
  .about-img-container {
    height: 480px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-img-container {
    height: 450px;
    margin-bottom: 40px;
  }
  .experience-badge {
    left: auto;
    right: 20px;
    top: auto;
    bottom: -20px;
    transform: none;
  }
  .experience-badge:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-img-container {
    height: 400px;
    margin-bottom: 35px;
  }
  .main-img-wrapper {
    width: 80%;
  }
  .overlay-img {
    width: 50%;
    bottom: -20px;
  }
  .experience-badge {
    left: -10px;
    width: 100px;
    padding: 12px;
  }
  .years {
    font-size: 2rem;
  }
  .experience-badge .text {
    font-size: 0.7rem;
  }
  .feature-item {
    padding: 12px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-right: 15px;
  }
  .feature-content h4 {
    font-size: 1rem;
  }
  .feature-content p {
    font-size: 0.85rem;
  }
  .stat-item {
    padding: 12px 10px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .about-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .about-img-container {
    height: 350px;
  }
  .about-stats {
    gap: 10px;
  }
  .stat-item {
    padding: 10px 8px;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .feature-item {
    padding: 10px;
  }
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* ====================== OUR WORK SECTION ====================== */
.our-work-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.our-work-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.05) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.our-work-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.05) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Work Card */
.work-card {
  background: white;
  border: none;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 1;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
}

/* Top & Bottom Border Effect */
.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.work-card::before {
  top: 0;
  transform-origin: left;
}

.work-card::after {
  bottom: 0;
  transform-origin: right;
}

.work-card:hover::before,
.work-card:hover::after {
  transform: scaleX(1);
}

/* Image Circle Container */
.image-circle {
  /*width: 100px;*/
  height: 300px;
  margin: 0 auto 20px;
  /*border-radius: 50%;*/
  overflow: hidden;
  /*border: 3px solid #91cd05;*/
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.2);
  transition: all 0.3s ease;
}

.work-card:hover .image-circle {
  border-color: #6a2a01;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(162, 17, 69, 0.25);
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .image-circle img {
  transform: scale(1.1);
}

.work-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
}

.work-card p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Learn More Button */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #91cd05;
  background: rgb(52 124 0 / 15%);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.4s ease;
  margin-top: 5px;
}

.learn-more-btn:hover {
  border-radius: 30px 8px 30px 8px;
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(5px);
}

/* View All Button */
.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 35px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .our-work-section {
    padding: 60px 0;
  }
  .section-header-custom h2 {
    font-size: 1.8rem;
  }
  .image-circle {
    width: 85px;
    height: 85px;
  }
  .work-card h5 {
    font-size: 1rem;
  }
  .work-card p {
    font-size: 0.8rem;
  }
  .view-all-btn {
    padding: 10px 28px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .section-header-custom h2 {
    font-size: 1.5rem;
  }
  .image-circle {
    width: 75px;
    height: 75px;
  }
  .work-card {
    padding: 20px 15px !important;
  }
}

/* ====================== IMPACT SECTION PROFESSIONAL ====================== */
.impact-section-dark {
  background: linear-gradient(135deg, #0a0f1f 0%, #0d1b2a 50%, #1b263b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Animated Background Particles */
.impact-section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 191, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(173, 20, 87, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.impact-section-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 200, 0.3),
    transparent
  );
}

/* Section Header */
.impact-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.impact-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgb(6 56 0), rgb(106 42 1));
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 191, 165, 0.3);
  backdrop-filter: blur(4px);
}

.impact-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #1ab108, #fffdfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.impact-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Impact Cards */
.impact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(52 124 0 / 15%),
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.impact-card:hover::before {
  left: 100%;
}

.impact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 191, 165, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 191, 165, 0.2);
}

/* Icon Circle with Glow Effect */
.icon-circle-glow {
  /*width: 85px;*/
  height: 250px;
  /* background: linear-gradient(135deg, rgb(6 56 0), rgb(106 42 1)); */
  border: 2px solid #91cd05;
  /* border-radius: 50%; */
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 191, 165, 0.3);
}
.icon-circle-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.icon-circle-glow i {
  font-size: 32px;
  color: #91cd05;
  transition: all 0.4s ease;
}

.impact-card:hover .icon-circle-glow img {
  background: linear-gradient(135deg, #91cd05, #7c4420);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 191, 165, 0.6);
}

.impact-card:hover .icon-circle-glow i {
  color: white;
  transform: scale(1.1);
}

/* Counter Number */
.impact-card h3 {
  font-size: 25px;
  font-weight: 800;
  color: #f1f1f1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, #91cd05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Plus Sign Animation */
.counter::after {
  content: "+";
  font-size: 32px;
  background: none;
  -webkit-text-fill-color: #91cd05;
  margin-left: 3px;
}

/* Card Decorative Element */
.impact-card .card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #91cd05, #7c4420);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.impact-card:hover .card-accent {
  transform: scaleX(1);
}

/* Responsive Styles */
@media (min-width: 1200px) {
  .impact-section-dark {
    padding: 100px 0;
  }
  .impact-header h2 {
    font-size: 3.5rem;
  }
  .counter {
    font-size: 48px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .impact-section-dark {
    padding: 80px 0;
  }
  .impact-header h2 {
    font-size: 3rem;
  }
  .counter {
    font-size: 40px;
  }
  .icon-circle-glow {
    width: 75px;
    height: 75px;
  }
  .icon-circle-glow i {
    font-size: 28px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .impact-section-dark {
    padding: 70px 0;
  }
  .impact-header h2 {
    font-size: 2.5rem;
  }
  .impact-header p {
    font-size: 1rem;
  }
  .counter {
    font-size: 36px;
  }
  .impact-card {
    padding: 25px 15px;
  }
  .icon-circle-glow {
    width: 70px;
    height: 70px;
  }
  .icon-circle-glow i {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .impact-section-dark {
    padding: 60px 0;
  }
  .impact-header {
    margin-bottom: 40px;
  }
  .impact-header h2 {
    font-size: 2rem;
  }
  .impact-header p {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  .impact-badge {
    font-size: 0.7rem;
    padding: 6px 18px;
  }
  .counter {
    font-size: 32px;
  }
  .counter::after {
    font-size: 24px;
  }
  .impact-card {
    padding: 25px 15px;
    border-radius: 20px;
  }
  .icon-circle-glow {
    width: 65px;
    height: 65px;
  }
  .icon-circle-glow i {
    font-size: 24px;
  }
  .impact-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .impact-section-dark {
    padding: 50px 0;
  }
  .impact-header h2 {
    font-size: 1.6rem;
  }
  .impact-header p {
    font-size: 0.8rem;
  }
  .counter {
    font-size: 28px;
  }
  .counter::after {
    font-size: 20px;
  }
  .impact-card {
    padding: 20px 12px;
  }
  .icon-circle-glow {
    width: 55px;
    height: 55px;
  }
  .icon-circle-glow i {
    font-size: 20px;
  }
  .impact-card p {
    font-size: 0.75rem;
  }
}

/* ====================== MISSION SECTION PROFESSIONAL ====================== */
.transition-mission-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.transition-mission-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.05) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.transition-mission-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.05) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* ====================== STYLISH IMAGE SHAPE ====================== */
.mission-image-wrap {
  position: relative;
  /* border-radius: 30px 8px 30px 8px; */
  border-radius: 100px 8px 40px 8px !important;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.mission-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.3),
    rgba(162, 17, 69, 0.3)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 30px 8px 30px 8px;
}

.mission-image-wrap:hover::before {
  opacity: 1;
}

.mission-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px 8px 30px 8px;
}

.mission-image-wrap:hover img {
  transform: scale(1.08);
}

/* Floating badge on image */
.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
  transition: all 0.3s ease;
  border-radius: 30px 8px 30px 8px;
}

.image-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(162, 17, 69, 0.3);
  border-radius: 8px 30px 8px 30px;
}

.image-badge i {
  font-size: 16px;
}

/* ====================== CONTENT STYLES ====================== */
.mission-content {
  position: relative;
  z-index: 1;
}

.mission-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #692900;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 18px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 191, 165, 0.2);
}

.mission-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 20px;
  line-height: 1.3;
}

.mission-content h2 span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ====================== INFO BOXES ====================== */
.info-boxes {
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
  padding: 12px;
  background: white;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 191, 165, 0.05),
    rgba(162, 17, 69, 0.03)
  );
  transition: width 0.4s ease;
  z-index: 0;
}

.info-item:hover::before {
  width: 100%;
}

.info-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 8px 30px 8px;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.info-item:hover .icon-box {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
  border-radius: 8px 30px 8px 30px;
}

.info-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.info-content h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* ====================== LEARN MORE BUTTON ====================== */
.mission-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, #3a7a00, #093901);
  text-decoration: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
}

.mission-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.mission-more-btn:hover::before {
  left: 100%;
}

.mission-more-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
  border-radius: 8px 30px 8px 30px;
}

.mission-more-btn i {
  transition: transform 0.3s ease;
}

.mission-more-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .transition-mission-section {
    padding: 100px 0;
  }
  .mission-content h2 {
    font-size: 3rem;
  }
  .mission-description {
    font-size: 1.05rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .transition-mission-section {
    padding: 80px 0;
  }
  .mission-content h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .transition-mission-section {
    padding: 70px 0;
  }
  .mission-content h2 {
    font-size: 2rem;
  }
  .mission-image-wrap {
    margin-bottom: 30px;
  }
  .image-badge {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .transition-mission-section {
    padding: 60px 0;
  }
  .mission-content {
    text-align: center;
  }
  .mission-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .mission-content h2 {
    font-size: 1.8rem;
  }
  .mission-description {
    font-size: 0.95rem;
  }
  .info-item {
    text-align: left;
  }
  .image-badge {
    padding: 6px 14px;
    font-size: 10px;
    bottom: 15px;
    right: 15px;
  }
  .image-badge i {
    font-size: 12px;
  }
  .mission-more-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .transition-mission-section {
    padding: 50px 0;
  }
  .mission-content h2 {
    font-size: 1.5rem;
  }
  .mission-description {
    font-size: 0.85rem;
  }
  .info-item {
    padding: 10px;
    gap: 12px;
  }
  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .info-content h6 {
    font-size: 0.95rem;
  }
  .info-content p {
    font-size: 0.75rem;
  }
  .mission-more-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}
/* ====================== CTA SECTION GLASS ====================== */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image with Overlay */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../image/crousel_img/cr2.jpg") center center/cover no-repeat;
  opacity: 0.7;
  z-index: -2;
}

/* Dark Overlay */
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Glassmorphism Box */
.glass-cta-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 40px 12px 40px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  margin: 80px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Animated Background for Glass Box */
.glass-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotateBg 20s linear infinite;
  z-index: -1;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Floating Hearts Animation */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.heart {
  position: absolute;
  font-size: 20px;
  color: rgba(255, 107, 107, 0.6);
  animation: floatUp 4s ease-in infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}

/* Money/Rupee Animation */
.floating-money {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.money {
  position: absolute;
  font-size: 24px;
  color: rgba(0, 191, 165, 0.5);
  animation: floatMoney 5s ease-in infinite;
  opacity: 0;
}

@keyframes floatMoney {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Content Styles */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #169307, #f1f0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 0px rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 191, 165, 0.5);
  }
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

/* ====================== BUTTONS ====================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 10px;
}

.donate-btn {
  background-color: rgba(255, 100, 100, 0.15);
  color: #ff6b6b;
  border: 2px solid #622701;
  position: relative;
  overflow: hidden;
}

/* Donate Button Special Animation */
.donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.donate-btn:hover::before {
  left: 100%;
}

.donate-btn:hover {
  background-color: #ff6b6b;
  color: #fff;
  box-shadow: 0 0 25px #ff6b6b;
  transform: translateY(-3px);
}

.donate-btn i {
  animation: pulseHeart 1.5s ease-in-out infinite;
}

@keyframes pulseHeart {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: #ff3366;
  }
}

.join-btn {
  background-color: rgba(0, 191, 165, 0.15);
  color: #91cd05;
  border: 2px solid #063700;
}

.join-btn:hover {
  background-color: #91cd05;
  color: #fff;
  box-shadow: 0 0 25px #91cd05;
  transform: translateY(-3px);
}

.join-btn i {
  transition: all 0.3s ease;
}

.join-btn:hover i {
  transform: translateX(5px);
}

/* Button Group */
.btn-group-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .cta-content h2 {
    font-size: 3.5rem;
  }
  .glass-cta-box {
    padding: 70px 50px;
    margin: 100px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta-content h2 {
    font-size: 3rem;
  }
  .glass-cta-box {
    padding: 60px 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
  .glass-cta-box {
    padding: 50px 35px;
    margin: 60px 0;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 0.9rem;
  }
  .glass-cta-box {
    padding: 40px 25px;
    margin: 50px 20px;
    border-radius: 30px 8px 30px 8px;
  }
  .btn-group-cta {
    gap: 15px;
  }
  .cta-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-content p {
    font-size: 0.85rem;
  }
  .glass-cta-box {
    padding: 30px 20px;
  }
  .cta-btn {
    padding: 8px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  .btn-group-cta {
    gap: 12px;
    flex-direction: column;
    width: 100%;
  }
  .donate-btn,
  .join-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ====================== TEAM SECTION ====================== */
.ngo-team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.ngo-team-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.05) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.ngo-team-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.05) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Section Header */
.team-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.team-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #692900;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.team-header h2 span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  margin: 0 auto;
  border-radius: 4px;
}

/* Team Card */
.ngo-team-card {
  background: white;
  border-radius: 24px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ngo-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

/* Left & Right Glowing Lines */
.ngo-team-card::before,
.ngo-team-card::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #91cd05, #6a2a01);
  transition: height 0.4s ease;
  z-index: -1;
}

.ngo-team-card::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ngo-team-card::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ngo-team-card:hover::before,
.ngo-team-card:hover::after {
  height: 80%;
}

/* Team Image */
.team-img-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #91cd05;
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.2);
  transition: all 0.3s ease;
}

.ngo-team-card:hover .team-img-wrapper {
  border-color: #6a2a01;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(162, 17, 69, 0.25);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ngo-team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

/* Team Info */
.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-top: 18px;
  margin-bottom: 5px;
}

.team-designation {
  font-size: 0.85rem;
  color: #692900;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  padding: 3px 12px;
  background: rgb(52 124 0 / 15%);
  border-radius: 30px 8px 30px 8px;
}

/* Social Icons */
.team-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.team-social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(52 124 0 / 15%);
  border-radius: 50%;
  color: #692900;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-social-icons a:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: translateY(-3px) scale(1.1);
}

/* ====================== SWIPER CUSTOM STYLES ====================== */
.team-swiper-container {
  position: relative;
  z-index: 1;
  padding: 10px 5px 20px 5px;
}

.team-swiper {
  overflow: hidden;
  padding: 10px 0;
}

/* Navigation Buttons - Left & Right */
.team-swiper-btn-prev,
.team-swiper-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 191, 165, 0.2);
}

.team-swiper-btn-prev {
  left: -20px;
}

.team-swiper-btn-next {
  right: -20px;
}

.team-swiper-btn-prev:hover,
.team-swiper-btn-next:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
}

.team-swiper-btn-prev i,
.team-swiper-btn-next i {
  font-size: 18px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.team-swiper-btn-prev:hover i,
.team-swiper-btn-next:hover i {
  color: white;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .team-swiper-btn-prev {
    left: -15px;
  }
  .team-swiper-btn-next {
    right: -15px;
  }
}

@media (max-width: 992px) {
  .team-swiper-btn-prev,
  .team-swiper-btn-next {
    width: 38px;
    height: 38px;
  }
  .team-swiper-btn-prev {
    left: -5px;
  }
  .team-swiper-btn-next {
    right: -5px;
  }
}

@media (max-width: 768px) {
  .ngo-team-section {
    padding: 60px 0;
  }
  .team-header h2 {
    font-size: 1.8rem;
  }
  .team-img-wrapper {
    width: 110px;
    height: 110px;
  }
  .team-name {
    font-size: 1rem;
  }
  .team-swiper-btn-prev,
  .team-swiper-btn-next {
    width: 35px;
    height: 35px;
    opacity: 0.7;
  }
  .team-swiper-btn-prev {
    left: 0;
  }
  .team-swiper-btn-next {
    right: 0;
  }
}

@media (max-width: 576px) {
  .team-header h2 {
    font-size: 1.5rem;
  }
  .team-img-wrapper {
    width: 100px;
    height: 100px;
  }
  .team-name {
    font-size: 0.95rem;
  }
  .team-designation {
    font-size: 0.7rem;
  }
  .team-social-icons a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/*==========================REPORT STYLING================*/
/* .reports-section {
  background: #f5f9f6;
}

.report-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e0ece5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.report-icon {
  font-size: 40px;
  color: #28a745;
  margin-bottom: 15px;
}

.report-card h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.report-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  min-height: 60px;
}

.report-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #28a745;
  color: #28a745;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.report-btn:hover {
  background-color: #28a745;
  color: #fff;
}
.report-card {
  position: relative;
}

.report-year {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
} */
/* ====================== GALLERY SECTION PROFESSIONAL ====================== */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.gallery-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.05) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.05) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Section Heading */
.section-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.subtitle {
  color: #692900;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  background: rgb(15 98 0 / 18%);
  padding: 6px 18px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.line-decoration {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  border-radius: 4px;
  position: relative;
}

.line-decoration::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #6a2a01, #91cd05);
  border-radius: 4px;
  top: 0;
  left: -50px;
}

.line-decoration::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  border-radius: 4px;
  top: 0;
  right: -50px;
}

/* ====================== GALLERY GRID ====================== */
.gallery-grid {
  position: relative;
  z-index: 1;
}

/* Gallery Card - Fully Clickable */
.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: #fff;
  display: block;
  text-decoration: none;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.25);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Dark Overlay on Hover */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.4),
    rgba(162, 17, 69, 0.4)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 20px;
}

.gallery-card:hover .image-wrapper::before {
  opacity: 1;
}

/* ====================== CENTER ARROW (PROFESSIONAL) ====================== */
.center-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.gallery-card:hover .center-arrow {
  transform: translate(-50%, -50%) scale(1);
}

.center-arrow i {
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
}

.center-arrow:hover {
  transform: translate(-50%, -50%) scale(1.15) !important;
  background: linear-gradient(135deg, #6a2a01, #91cd05);
}

.center-arrow:hover i {
  transform: rotate(90deg);
}

/* Arrow Pulse Animation */
@keyframes arrowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 191, 165, 0);
  }
}

.gallery-card:hover .center-arrow {
  animation: arrowPulse 1.5s infinite;
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 6px 14px;
  border-radius: 30px 8px 30px 8px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.gallery-card:hover .card-badge {
  opacity: 1;
  transform: translateX(0);
}

.card-badge i {
  margin-right: 6px;
  font-size: 10px;
}

/* Bottom Caption */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h6 {
  color: white;
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-caption h6 i {
  color: #91cd05;
}

/* ====================== VIEW ALL BUTTON ====================== */
.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 38px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, #3a7a00, #093901);
  text-decoration: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.view-all-btn:hover::before {
  left: 100%;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .gallery-section {
    padding: 100px 0;
  }
  .main-title {
    font-size: 3rem;
  }
  .gallery-card img {
    height: 300px;
  }
  .center-arrow {
    width: 65px;
    height: 65px;
  }
  .center-arrow i {
    font-size: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-title {
    font-size: 2.5rem;
  }
  .gallery-card img {
    height: 260px;
  }
  .center-arrow {
    width: 55px;
    height: 55px;
  }
  .center-arrow i {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-section {
    padding: 70px 0;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .gallery-card img {
    height: 240px;
  }
  .center-arrow {
    width: 50px;
    height: 50px;
  }
  .center-arrow i {
    font-size: 20px;
  }
  .view-all-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 60px 0;
  }
  .main-title {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 0.75rem;
  }
  .gallery-card img {
    height: 220px;
  }
  .center-arrow {
    width: 45px;
    height: 45px;
  }
  .center-arrow i {
    font-size: 18px;
  }
  .gallery-caption h6 {
    font-size: 0.85rem;
  }
  .view-all-btn {
    padding: 10px 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 50px 0;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .gallery-card img {
    height: 200px;
  }
  .center-arrow {
    width: 40px;
    height: 40px;
  }
  .center-arrow i {
    font-size: 16px;
  }
  .gallery-caption {
    padding: 15px 12px 12px;
  }
  .gallery-caption h6 {
    font-size: 0.75rem;
  }
  .card-badge {
    padding: 4px 10px;
    font-size: 9px;
    top: 10px;
    left: 10px;
  }
  .view-all-btn {
    padding: 8px 24px;
    font-size: 12px;
  }
}
/* ====================== UPDATES SECTION ====================== */
.updates-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.updates-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.05) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.updates-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.05) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Section Header */
.section-header-custom {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.section-header-custom h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.section-header-custom h2 span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
}

/* ====================== TOP MARQUEE (BREAKING NEWS) ====================== */
.breaking-marquee {
  background: linear-gradient(135deg, #053700, #692900);
  padding: 12px 0;
  margin-bottom: 50px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgb(6 57 0 / 41%);
}

.breaking-content {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

.breaking-label {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.breaking-content span {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.breaking-content i {
  margin-right: 8px;
}

/* ====================== VERTICAL MARQUEE CONTAINERS ====================== */
.vertical-marquee-container {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 520px;
}

.vertical-marquee {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  animation: scrollUp 25s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vertical-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Duplicate track for seamless loop */
.marquee-track-duplicate {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

/* Section Title */
.section-title-custom {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 12px;
}

.section-title-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  border-radius: 3px;
}

.section-title-custom i {
  color: #91cd05;
  font-size: 1.5rem;
}

/* ====================== SMALL CARDS ====================== */
.small-update-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  gap: 12px;
  padding: 12px;
  margin-bottom: 0;
  border: 1px solid rgb(52 124 0 / 15%);
}

.small-update-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgb(9 87 3 / 25%);
  border-color: rgb(52 124 0 / 69%);
}

/* Small Image */
.small-card-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.small-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.small-update-card:hover .small-card-img img {
  transform: scale(1.08);
}

/* Card Content */
.small-card-content {
  flex: 1;
}

.card-date {
  font-size: 10px;
  color: #91cd05;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
  background: rgb(52 124 0 / 15%);
  padding: 2px 8px;
  border-radius: 30px 8px 30px 8px;
}

.small-card-content h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 4px;
  line-height: 1.4;
}

.small-card-content p {
  font-size: 0.7rem;
  color: #6c757d;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-read-more {
  font-size: 0.7rem;
  color: #91cd05;
  text-decoration: none;
  font-weight: 600;
  /* display: inline-flex; */
  align-items: center;
  gap: 4px; /* Keep a static gap */
}

/* Target the FontAwesome icon specifically for the smooth animation */
.small-read-more i {
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevents the icon from stealing the click */
}

.small-read-more:hover {
  color: #6a2a01;
}

/* Push the arrow slightly to the right on hover using transform */
.small-read-more:hover i {
  transform: translateX(4px);
}

/* View All Button */
.view-all-updates {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.view-all-btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, #3a7a00, #093901);
  text-decoration: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.view-all-btn-custom:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
  color: white;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .updates-section {
    padding: 100px 0;
  }
  .section-header-custom h2 {
    font-size: 3rem;
  }
  .vertical-marquee-container {
    height: 550px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-header-custom h2 {
    font-size: 2.5rem;
  }
  .vertical-marquee-container {
    height: 500px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .updates-section {
    padding: 70px 0;
  }
  .section-header-custom h2 {
    font-size: 2rem;
  }
  .vertical-marquee-container {
    height: 480px;
    margin-bottom: 30px;
  }
  .section-title-custom {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .updates-section {
    padding: 60px 0;
  }
  .section-header-custom h2 {
    font-size: 1.8rem;
  }
  .section-badge {
    font-size: 0.7rem;
  }
  .breaking-marquee {
    padding: 8px 0;
  }
  .breaking-content span {
    font-size: 0.8rem;
  }
  .breaking-label {
    font-size: 0.7rem;
    padding: 3px 12px;
  }
  .vertical-marquee-container {
    height: 450px;
    margin-bottom: 30px;
  }
  .section-title-custom {
    font-size: 1.2rem;
    margin-top: 15px;
  }
  .small-card-img {
    width: 70px;
    height: 70px;
  }
  .small-card-content h6 {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .updates-section {
    padding: 50px 0;
  }
  .section-header-custom h2 {
    font-size: 1.5rem;
  }
  .vertical-marquee-container {
    height: 420px;
  }
  .small-card-img {
    width: 65px;
    height: 65px;
  }
  .small-card-content h6 {
    font-size: 0.75rem;
  }
  .small-card-content p {
    font-size: 0.65rem;
  }
}
/* ====================== JOIN ENQUIRY SECTION ====================== */
.join-enquiry-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.join-enquiry-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.08) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.join-enquiry-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.08) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* ====================== JOIN INFO CARD ====================== */
.join-info-card {
  background: white;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgb(52 124 0 / 15%);
}

.join-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.join-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.join-info-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.join-info-card > p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Feature Boxes Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* Feature Card */
.feature-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgb(52 124 0 / 15%);
  /* cursor: pointer; */
}

.feature-card:hover {
  transform: translateY(-5px);
  background: white;
  border-color: #91cd05;
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #053700, #692900);
  transform: scale(1.05) rotate(5deg);
}

.feature-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
  transform: scale(1.1);
}

.feature-card h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
}

/* Join Now Button */
.join-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, #3a7a00, #093901);
  text-decoration: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
  border: none;
  cursor: pointer;
}

.join-now-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
  color: white;
}

.join-now-btn i {
  transition: transform 0.3s ease;
}

.join-now-btn:hover i {
  transform: translateX(5px);
}

/* ====================== ENQUIRY FORM CARD ====================== */
.enquiry-form-card {
  background: white;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgb(52 124 0 / 15%);
}

.enquiry-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.enquiry-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.enquiry_intro {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.enquiry-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-icon i {
  font-size: 24px;
  color: #91cd05;
}

.enquiry-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
}

/* Form Styling */
.custom-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.custom-input:focus {
  outline: none;
  border-color: #91cd05;
  background: white;
  box-shadow: 0 0 0 4px rgb(52 124 0 / 15%);
}

.custom-input:hover {
  border-color: #91cd05;
}

textarea.custom-input {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, #3a7a00, #093901);
  border: none;
  border-radius: 30px 8px 30px 8px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(7 57 0 / 40%);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .join-enquiry-section {
    padding: 100px 0;
  }

  .join-info-card h2 {
    font-size: 2.2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-card {
    padding: 15px 12px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon i {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .join-enquiry-section {
    padding: 70px 0;
  }
  .section-title-custom h2 {
    font-size: 2rem;
  }
  .join-info-card,
  .enquiry-form-card {
    padding: 25px 20px;
  }
  .features-grid {
    gap: 15px;
  }
  .feature-card {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .join-enquiry-section {
    padding: 60px 0;
  }

  .join-info-card {
    margin-bottom: 30px;
  }
  .join-info-card h2 {
    font-size: 1.6rem;
  }
  .features-grid {
    gap: 15px;
  }
  .feature-card {
    padding: 15px 10px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  .feature-icon i {
    font-size: 20px;
  }
  .enquiry-header h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .join-enquiry-section {
    padding: 50px 0;
  }

  .join-info-card h2 {
    font-size: 1.4rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature-card {
    padding: 12px 8px;
  }
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  .feature-icon i {
    font-size: 18px;
  }
  .feature-card h6 {
    font-size: 0.85rem;
  }
  .feature-card p {
    font-size: 0.7rem;
  }
  .enquiry-form-card,
  .join-info-card {
    padding: 20px 15px;
  }
  .custom-input {
    padding: 12px 15px;
  }
}

/* ====================== TESTIMONIALS SECTION ====================== */
.ngo-testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.ngo-testimonials-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.08) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.ngo-testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.08) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.testimonials-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #692900;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.testimonials-header h2 span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
}

/* ====================== TESTIMONIAL CARD ====================== */
.ngo-testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgb(52 124 0 / 15%);
}

.ngo-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 4rem;
  color: rgb(52 124 0 / 15%);
  font-family: serif;
  line-height: 1;
}

/* Stars Rating */
.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 3px;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: -webkit-box; /* Required for line-clamping */
  -webkit-line-clamp: 3; /* Limits text to 3 lines */
  -webkit-box-orient: vertical; /* Required for line-clamping */
  overflow: hidden;
}

/* Author Section */
.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgb(52 124 0 / 15%);
  padding-top: 20px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  border: 3px solid #91cd05;
  transition: all 0.3s ease;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ngo-testimonial-card:hover .author-avatar {
  transform: scale(1.05);
  border-color: #6a2a01;
}

.author-info h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 3px;
}

.author-info small {
  font-size: 0.75rem;
  color: #692900;
  font-weight: 500;
}

/* ====================== SWIPER CUSTOM STYLES ====================== */
.testimonials-swiper-container {
  position: relative;
  z-index: 1;
  padding: 10px 5px 50px 5px;
}

.testimonials-swiper {
  overflow: hidden;
  padding: 10px 0;
}

/* Pagination Dots */
.testimonials-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #053700, #692900);
  width: 24px;
  border-radius: 10px;
}

/* Navigation Buttons */
.testimonials-nav-prev,
.testimonials-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 191, 165, 0.2);
}

.testimonials-nav-prev {
  left: -20px;
}

.testimonials-nav-next {
  right: -20px;
}

.testimonials-nav-prev:hover,
.testimonials-nav-next:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
}

.testimonials-nav-prev i,
.testimonials-nav-next i {
  font-size: 18px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.testimonials-nav-prev:hover i,
.testimonials-nav-next:hover i {
  color: white;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .ngo-testimonials-section {
    padding: 100px 0;
  }
  .testimonials-header h2 {
    font-size: 3rem;
  }
  .testimonials-nav-prev {
    left: -15px;
  }
  .testimonials-nav-next {
    right: -15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-header h2 {
    font-size: 2.5rem;
  }
  .testimonials-nav-prev {
    left: -10px;
  }
  .testimonials-nav-next {
    right: -10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ngo-testimonials-section {
    padding: 70px 0;
  }
  .testimonials-header h2 {
    font-size: 2rem;
  }
  .testimonials-nav-prev,
  .testimonials-nav-next {
    width: 38px;
    height: 38px;
  }
  .testimonials-nav-prev {
    left: -5px;
  }
  .testimonials-nav-next {
    right: -5px;
  }
}

@media (max-width: 767px) {
  .ngo-testimonials-section {
    padding: 60px 0;
  }
  .testimonials-header h2 {
    font-size: 1.8rem;
  }
  .testimonials-badge {
    font-size: 0.7rem;
  }
  .testimonials-nav-prev,
  .testimonials-nav-next {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }
  .testimonials-nav-prev {
    left: 0;
  }
  .testimonials-nav-next {
    right: 0;
  }
  .testimonials-nav-prev i,
  .testimonials-nav-next i {
    font-size: 14px;
  }
  .ngo-testimonial-card {
    padding: 25px;
  }
  .quote-icon {
    font-size: 3rem;
    top: 15px;
    right: 20px;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .ngo-testimonials-section {
    padding: 50px 0;
  }
  .testimonials-header h2 {
    font-size: 1.5rem;
  }
  .testimonials-nav-prev,
  .testimonials-nav-next {
    width: 30px;
    height: 30px;
  }
  .author-avatar {
    width: 45px;
    height: 45px;
  }
  .author-info h6 {
    font-size: 0.9rem;
  }
  .testimonial-text {
    font-size: 0.85rem;
  }
}
/* ====================== PROFESSIONAL FOOTER ====================== */
.ngo-pro-footer {
  background: linear-gradient(135deg, #0a1a1a 0%, #0d2b2b 50%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.ngo-pro-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.08) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.ngo-pro-footer::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.08) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Footer Top Section */
.footer-top {
  padding: 70px 0 50px;
  position: relative;
  z-index: 1;
}

/* ====================== ABOUT SECTION ====================== */
.footer-logo-area {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-logo-img img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
}

.footer-logo-text h5 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #91cd05);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-text p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 1px;
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Donate Button in Footer */
.footer-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  border: none;
  border-radius: 30px 8px 30px 8px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
}

.footer-donate-btn:hover {
  background: linear-gradient(135deg, #91cd05, #488100);
  transform: translateY(-3px);
  color: #a41345;
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
}

.footer-donate-btn i {
  transition: transform 0.3s ease;
}

.footer-donate-btn:hover i {
  transform: translateX(5px);
}

/* ====================== QUICK LINKS (EXPLORE) ====================== */
.footer-heading {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #91cd05, #6a2a01);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 12px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #91cd05;
  transform: translateX(8px);
}

.footer-links a:hover i {
  transform: translateX(3px);
  color: #6a2a01;
}

/* ====================== CONTACT INFO ====================== */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  word-break: break-word;
}

.contact-list li:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 191, 165, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.contact-list li:hover .contact-icon {
  background: linear-gradient(135deg, #053700, #692900);
  transform: rotate(360deg);
}

.contact-icon i {
  color: #91cd05;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-list li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
}
.contact-list li:hover .contact-icon i {
  color: white;
}

/* ====================== MAP SECTION ====================== */
.footer-map-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-map-container:hover {
  border-color: rgba(0, 191, 165, 0.3);
  box-shadow: 0 5px 20px rgb(52 124 0 / 15%);
}

.footer-map {
  width: 100%;
  height: 150px;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
  transition: all 0.3s ease;
}

.footer-map-container:hover .footer-map {
  filter: grayscale(0) brightness(1);
}

/* Get Direction Button */
.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 191, 165, 0.15);
  border: 1px solid rgba(0, 191, 165, 0.3);
  border-radius: 30px 8px 30px 8px;
  color: #91cd05;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.direction-btn:hover {
  background: linear-gradient(135deg, #3a7a00, #093901);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
}

.direction-btn i {
  transition: transform 0.3s ease;
}

.direction-btn:hover i {
  transform: translateX(5px);
}

/* Social Icons */
.social-icons-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 42px;
  height: 42px;
  background: rgba(0, 191, 165, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91cd05;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon-link:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.3);
}

/* ====================== FOOTER BOTTOM ====================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin: 0;
}

.copyright-text a {
  color: #91cd05;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copyright-text a:hover {
  color: #6a2a01;
  letter-spacing: 0.5px;
}

.copyright-text i {
  color: #ff6b6b;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 1200px) {
  .footer-top {
    padding: 80px 0 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-heading {
    font-size: 1rem;
  }
  .footer-about-text {
    font-size: 0.85rem;
  }
  .footer-map {
    height: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-top {
    padding: 60px 0 40px;
  }
  .footer-heading {
    font-size: 1rem;
    margin-top: 25px;
  }
  .footer-heading::after {
    left: 0;
    transform: none;
  }
  .footer-logo-area {
    text-align: left;
  }
  .footer-logo {
    justify-content: flex-start;
  }
  .footer-map {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 50px 0 30px;
  }
  .footer-heading {
    font-size: 1rem;
    margin-top: 25px;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logo-area {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-about-text {
    text-align: justify;
    font-size: 0.85rem;
  }
  .footer-links {
    text-align: justify;
  }
  .contact-list li {
    align-items: center;
    text-align: justify;
  }
  .social-icons-footer {
    justify-content: center;
  }
  .direction-btn {
    margin: 0 auto 20px;
    width: fit-content;
    display: flex;
  }
  .footer-map {
    height: 160px;
  }
  .copyright-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 40px 0 25px;
  }
  .footer-logo-img {
    width: 75px;
    height: 75px;
  }
  .footer-logo-img img {
    width: 65px;
    height: 65px;
  }
  .footer-logo-text h5 {
    font-size: 1.1rem;
  }
  .footer-heading {
    font-size: 0.9rem;
  }
  .footer-links a,
  .contact-list li {
    font-size: 0.8rem;
  }
  .social-icon-link {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .footer-donate-btn {
    padding: 10px 22px;
    font-size: 0.8rem;
  }
  .footer-map {
    height: 140px;
  }
  .copyright-text {
    font-size: 0.7rem;
  }
}

/*========================================OTHER PAGES STYLING START=====================================*/
.hero-cover {
  position: relative;
  min-height: 450px;
  height: 100vh;
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image with Overlay */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../image/about_img/cover.jpg") center center/cover no-repeat;
  z-index: 0;
  filter: brightness(0.7);
  transform: scale(1);
  transition: transform 8s ease;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Dark Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 31, 0.85) 0%,
    rgba(13, 27, 42, 0.8) 50%,
    rgba(27, 38, 59, 0.85) 100%
  );
  z-index: 1;
}

/* Animated Gradient Overlay for Depth */
.hero-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(0, 191, 165, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(162, 17, 69, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(0, 191, 165, 0.08) 0%,
      transparent 60%
    );
  z-index: 2;
  pointer-events: none;
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Animated Shapes - 3D Floating */
.floating-shape {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter: blur(0.5px);
}

.shape-glow-1 {
  top: 15%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 191, 165, 0.25), transparent);
  border-radius: 50%;
  animation: floatGlow1 12s ease-in-out infinite;
}

.shape-glow-2 {
  bottom: 10%;
  right: 3%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(162, 17, 69, 0.2), transparent);
  border-radius: 50%;
  animation: floatGlow2 15s ease-in-out infinite;
}

.shape-glow-3 {
  top: 40%;
  left: 20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 191, 165, 0.15), transparent);
  border-radius: 30px 8px 30px 8px;
  animation: rotateShape 20s linear infinite;
}

.shape-glow-4 {
  bottom: 25%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(0, 191, 165, 0.3);
  animation: pulseRing 3s ease-in-out infinite;
}

.shape-glow-5 {
  top: 20%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.15),
    rgba(162, 17, 69, 0.1)
  );
  border-radius: 30px 8px 30px 8px;
  animation: floatRotate 10s ease-in-out infinite;
}

.shape-glow-6 {
  bottom: 40%;
  right: 25%;
  width: 60px;
  height: 60px;
  background: rgba(0, 191, 165, 0.15);
  border-radius: 50%;
  animation: pulseScale 4s ease-in-out infinite;
}

@keyframes floatGlow1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, -30px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes floatGlow2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -20px) scale(1.15);
  }
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
    border-color: #6a2a01;
  }
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
    background: rgba(162, 17, 69, 0.3);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge span {
  color: #91cd05;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-badge i {
  color: #91cd05;
  font-size: 12px;
}

/* Main Title */
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #91cd05, #6a2a01, #91cd05);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-title .white-text {
  color: white;
}

/* Description */
.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Button Group */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 14px 38px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  color: #a41345;
  box-shadow: 0 15px 30px rgba(0, 191, 165, 0.4);
  background: linear-gradient(135deg, #91cd05, #488100);
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 14px 38px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #00b19a;
  transform: translateY(-3px);
  border-color: #91cd05;
}

/* Breadcrumb */
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.hero-breadcrumb a:hover {
  color: #91cd05;
}

.hero-breadcrumb span {
  color: #91cd05;
  font-size: 0.9rem;
}

.hero-breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s ease infinite;
}

.scroll-indicator a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.scroll-indicator a:hover {
  background: #91cd05;
  transform: translateY(-5px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-desc {
    font-size: 10px;
  }
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  .hero-badge {
    padding: 5px 18px;
  }
  .hero-badge span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-buttons {
    gap: 12px;
  }
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
}
/* ====================== PROFILE SECTION ====================== */
.profile-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Stylish Shape Frame for Image */
.profile-image-frame {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.profile-image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 30px 8px 30px 8px;
  z-index: -1;
  opacity: 0.5;
}

.profile-image-frame::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #6a2a01, #91cd05);
  border-radius: 30px 8px 30px 8px;
  z-index: -1;
  opacity: 0.5;
}

.profile-image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 40px 8px 40px 8px;
}

.profile-image-frame:hover img {
  transform: scale(1.05);
}

.profile-content {
  padding-left: 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.profile-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 20px;
}

.profile-content h2 span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-desc {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.profile-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 15px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 100px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #91cd05;
}

.stat-label {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

.btn-group-custom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-donate-profile {
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 30px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-donate-profile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.3);
  color: white;
}

.btn-contact-profile {
  background: transparent;
  color: #91cd05;
  padding: 12px 30px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #91cd05;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contact-profile:hover {
  background: #91cd05;
  color: white;
  transform: translateY(-3px);
}

/* ====================== TIMELINE SECTION ====================== */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #91cd05, #6a2a01);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 25px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgb(52 124 0 / 15%);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  padding: 5px 15px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
  right: auto;
}

/* ====================== FOUNDER SECTION ====================== */
.founder-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgb(52 124 0 / 15%) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
}

.founder-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.1) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.founder-image {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-image:hover img {
  transform: scale(1.05);
}

.founder-quote {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.founder-content {
  padding-left: 40px;
}

.founder-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.founder-title {
  color: #91cd05;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.founder-message {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}

.founder-signature {
  color: #91cd05;
  font-size: 1.5rem;
  font-family: "Dancing Script", cursive;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .profile-hero-content h1 {
    font-size: 2rem;
  }
  .profile-image-frame img {
    height: 350px;
  }
  .profile-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-dot {
    left: 21px !important;
    right: auto !important;
  }
  .founder-card {
    padding: 25px;
  }
  .founder-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  .founder-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .profile-hero-content h1 {
    font-size: 1.6rem;
  }
  .profile-image-frame img {
    height: 280px;
  }
  .profile-content h2 {
    font-size: 1.6rem;
  }
  .btn-donate-profile,
  .btn-contact-profile {
    text-align: center;
    justify-content: center;
  }
  .founder-image img {
    height: 280px;
  }
  .founder-content h3 {
    font-size: 1.5rem;
  }
  .founder-message {
    font-size: 12px;
    text-align: justify;
  }
}

/* ====================== SECTION COMMON STYLES ====================== */
.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #692900;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ====================== GOAL OVERVIEW SECTION ====================== */
.goal-overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.goal-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.goal-stat-card {
  background: white;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.goal-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.goal-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.goal-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1f36;
  margin-bottom: 8px;
}

.goal-stat-desc {
  font-size: 0.8rem;
  color: #6c757d;
}

/* ====================== MISSION VISION SECTION ====================== */
.mv-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mv-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  /*text-align: center;*/
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
  background: linear-gradient(135deg, #053700, #692900);
  transform: scale(1.05) rotate(5deg);
}

.mv-icon i {
  font-size: 36px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.mv-card:hover .mv-icon i {
  color: white;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 15px;
}

.mv-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.mv-card ul {
  text-align: left;
}
.mv-card ul li {
  text-align: justify;
}

/* ====================== GOAL CARDS SECTION ====================== */
.goal-cards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.goal-card {
  background: white;
  border-radius: 24px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
  text-align: center;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.goal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
  background: linear-gradient(135deg, #053700, #692900);
  transform: scale(1.05) rotate(5deg);
}

.goal-icon i {
  font-size: 28px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.goal-card:hover .goal-icon i {
  color: white;
}

.goal-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
}

.goal-card p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.goal-stats {
  font-size: 0.8rem;
  color: #91cd05;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ====================== FINAL CTA SECTION ====================== */
.goal-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.goal-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.15) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
}

.goal-cta::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.12) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-card h2 span {
  color: #91cd05;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 14px 40px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgb(7 57 0 / 48%);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 191, 165, 0.4);
  color: white;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .goal-hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .goal-stat-number {
    font-size: 2rem;
  }
  .mv-card,
  .goal-card {
    padding: 25px 20px;
  }
  .cta-card {
    padding: 40px 25px;
  }
  .cta-card h2 {
    font-size: 1.8rem;
  }
  .goal-stats-container {
    gap: 15px;
  }
  .goal-stat-card {
    min-width: 150px;
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .goal-hero-content h1 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .goal-stat-number {
    font-size: 1.8rem;
  }
  .goal-stat-label {
    font-size: 0.85rem;
  }
  .mv-icon,
  .goal-icon {
    width: 60px;
    height: 60px;
  }
  .mv-icon i,
  .goal-icon i {
    font-size: 24px;
  }
  .cta-card h2 {
    font-size: 1.5rem;
  }
  .cta-card p {
    font-size: 0.9rem;
  }
  .goal-stats-container {
    flex-direction: column;
  }
  .goal-stat-card {
    min-width: auto;
  }
}

/*===========================OUR LEGAL DOCUMENTS PAGE STYLING===================================*/
.overview-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.overview-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgb(52 124 0 / 15%);
  border-color: rgba(0, 191, 165, 0.3);
}

.overview-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.overview-icon i {
  font-size: 30px;
  color: #91cd05;
}

.overview-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 15px;
}

.overview-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ====================== DOCUMENTS GALLERY SECTION ====================== */
.documents-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.doc-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgb(52 124 0 / 15%);
}

.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.3);
}

.doc-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.doc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doc-card:hover .doc-image img {
  transform: scale(1.08);
}

/* Overlay with zoom icon */
.doc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.8),
    rgba(162, 17, 69, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.doc-card:hover .doc-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91cd05;
  font-size: 20px;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.doc-card:hover .zoom-icon {
  transform: scale(1);
}

.zoom-icon:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: scale(1.1);
}

.doc-title {
  padding: 20px;
  text-align: center;
  background: white;
}

.doc-title h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f36;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.doc-title h4 i {
  color: #91cd05;
  font-size: 18px;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .legal-hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .overview-card {
    padding: 30px 20px;
  }
  .doc-image {
    height: 220px;
  }
  .doc-title h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-hero-content h1 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 16px;
  }
  .overview-card {
    padding: 25px 15px;
  }
  .overview-icon {
    width: 55px;
    height: 55px;
  }
  .overview-icon i {
    font-size: 24px;
  }
  .overview-card h3 {
    font-size: 1.1rem;
  }
  .overview-card p {
    font-size: 0.85rem;
  }
  .doc-image {
    height: 200px;
  }
  .doc-title h4 {
    font-size: 0.9rem;
  }
  .zoom-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/*========================MEMBERS PAGES STYLING==============================*/
.members-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.members-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.members-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.members-section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== OVERVIEW SECTION ====================== */
.members-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.members-overview-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
  transition: all 0.3s ease;
  height: 100%;
}

.members-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgb(52 124 0 / 15%);
  border-color: rgba(0, 191, 165, 0.3);
}

.members-overview-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.members-overview-card:hover .members-overview-icon {
  background: linear-gradient(135deg, #053700, #692900);
}

.members-overview-icon i {
  font-size: 30px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.members-overview-card:hover .members-overview-icon i {
  color: white;
}

.members-overview-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 15px;
}

.members-overview-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ====================== MEMBERS CARDS SECTION ====================== */
.members-cards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.member-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 191, 165, 0.2);
  border: 2px solid #91cd05;
}

.member-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Shining Effect on Image */
.member-img::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.member-card:hover .member-img::before {
  top: 100%;
  left: 100%;
}

.member-card:hover .member-img img {
  transform: scale(1.08);
}

/* Second Shining Layer */
.member-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.member-card:hover .member-img::after {
  left: 150%;
}

.member-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: bottom 0.3s ease;
  z-index: 3;
}

.member-card:hover .member-social {
  bottom: 0;
}

.member-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #91cd05;
  transform: translateY(-3px);
  color: white;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 5px;
}

.member-designation {
  font-size: 0.85rem;
  color: #91cd05;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  padding: 3px 12px;
  background: rgb(52 124 0 / 15%);
  border-radius: 30px 8px 30px 8px;
}

.member-bio {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* ====================== TEAM STATS SECTION ====================== */
.team-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.team-stats-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.15) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
}

.team-stats-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.12) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
}

.team-stats-container {
  position: relative;
  z-index: 1;
}

.team-stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.team-stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #91cd05;
}

.team-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #91cd05;
  margin-bottom: 10px;
}

.team-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.team-stat-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ====================== JOIN OUR TEAM CTA ====================== */
.join-team-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.join-team-card {
  background: linear-gradient(135deg, #3a7a00, #093901);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-team-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
}

.join-team-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
}

.join-team-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.join-team-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.join-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #91cd05;
  padding: 14px 40px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.join-team-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #6a2a01;
}

.join-team-btn i {
  transition: transform 0.3s ease;
}

.join-team-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .member-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .members-hero-content h1 {
    font-size: 2rem;
  }
  .members-section-title {
    font-size: 1.8rem;
  }
  .members-overview-card {
    padding: 30px 20px;
  }
  .member-img {
    height: 220px;
  }
  .team-stat-number {
    font-size: 2rem;
  }
  .join-team-card {
    padding: 40px 25px;
  }
  .join-team-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .members-hero-content h1 {
    font-size: 1.6rem;
  }
  .members-section-title {
    font-size: 1.5rem;
  }
  .member-img {
    height: 200px;
  }
  .member-name {
    font-size: 1rem;
  }
  .team-stat-item {
    padding: 20px 15px;
  }
  .team-stat-number {
    font-size: 1.8rem;
  }
  .join-team-card h2 {
    font-size: 1.5rem;
  }
  .join-team-card p {
    font-size: 0.9rem;
  }
}

/*=====================WHAT WE DO PAGE STYLING===================================*/
.wwd-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.wwd-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.wwd-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwd-section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== PROGRAM INTRODUCTION SECTION ====================== */
.program-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.program-intro-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.program-intro-card p {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.8;
  max-width: 800px;
  text-align: justify;
  margin: 0 auto;
}

/* ====================== PROGRAM CARDS SECTION ====================== */
.program-cards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.program-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

.program-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-img img {
  transform: scale(1.08);
}

.program-img::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.program-card:hover .program-img::before {
  top: 100%;
  left: 100%;
}

.program-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  padding: 5px 15px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 3;
  transition: all 0.3s ease;
}

.program-card:hover .program-category {
  transform: scale(1.05);
}

.program-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
}

.program-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-right: 5px;
  margin-bottom: 0;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Program Detials Page  */

.program-details-desc {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-right: 5px;
  margin-bottom: 0;
  word-wrap: break-word;
}

/* ====================== OUR WORK SECTION (SCROLLABLE - 3 ITEMS) ====================== */
.our-work-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Scrollable Container for Work Items */
.work-scroll-container {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
}

.work-scroll-container::-webkit-scrollbar {
  width: 5px;
}

.work-scroll-container::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 10px;
}

.work-scroll-container::-webkit-scrollbar-thumb {
  background: #91cd05;
  border-radius: 10px;
}

.work-item {
  margin-bottom: 50px;
  padding: 20px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.work-item:last-child {
  margin-bottom: 0;
}

.work-item:hover {
  background: rgba(0, 191, 165, 0.03);
}

.work-image {
  position: relative;
  border-radius: 30px 8px 30px 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 280px;
  min-height: 280px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-image:hover img {
  transform: scale(1.05);
}

/* Shining Effect on Work Image */
.work-image::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.work-image:hover::before {
  top: 100%;
  left: 100%;
}

.work-content {
  padding-left: 30px;
  /* height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; */
}

.work-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 5px 15px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
  width: fit-content;
}

.work-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 15px;
}

.work-content h3 span {
  color: #91cd05;
}

.work-description {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limit to 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em; /* Define line height for consistent math */
  max-height: 7.5em; /* 5 lines * 1.5 line-height */
  transition: max-height 0.3s ease-in-out;
}

.work-description.expanded {
  display: block; /* Remove flex-box clamp */
  -webkit-line-clamp: none;
  max-height: none;
}

.work-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 30px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 5px 15px rgba(0, 191, 165, 0.3);
}

.work-donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

.work-donate-btn i {
  transition: transform 0.3s ease;
}

.work-donate-btn:hover i {
  transform: translateX(5px);
}

/* Testimonial Text */
.testimonial-text {
  display: -webkit-box; /* Required for line-clamping */
  -webkit-line-clamp: 3; /* Limits text to 3 lines */
  -webkit-box-orient: vertical; /* Required for line-clamping */
  overflow: hidden;
}

/* ====================== CTA BANNER ====================== */
.wwd-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.wwd-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 165, 0.15) 0%,
    rgba(0, 191, 165, 0) 70%
  );
  border-radius: 50%;
}

.wwd-cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(162, 17, 69, 0.12) 0%,
    rgba(162, 17, 69, 0) 70%
  );
  border-radius: 50%;
}

.wwd-cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.wwd-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.wwd-cta-card h2 span {
  color: #94bb04;
}

.wwd-cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
}

.wwd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 14px 40px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.wwd-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 191, 165, 0.4);
  color: white;
}

.wwd-cta-btn i {
  transition: transform 0.3s ease;
}

.wwd-cta-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .work-content {
    padding-left: 0;
    margin-top: 20px;
  }
  .work-image {
    min-height: 100%;
  }
  .work-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .wwd-hero-content h1 {
    font-size: 2rem;
  }
  .wwd-section-title {
    font-size: 1.8rem;
  }
  .program-intro-card {
    padding: 30px 20px;
  }
  .program-img {
    height: 200px;
  }
  .work-content h3 {
    font-size: 1.3rem;
  }
  .work-donate-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  .wwd-cta-card {
    padding: 40px 25px;
  }
  .wwd-cta-card h2 {
    font-size: 1.8rem;
  }
  .work-scroll-container {
    max-height: 700px;
  }
}

@media (max-width: 576px) {
  .wwd-hero-content h1 {
    font-size: 1.6rem;
  }
  .wwd-section-title {
    font-size: 1.5rem;
  }
  .program-img {
    height: 180px;
  }
  .program-content h3 {
    font-size: 1.1rem;
  }
  .work-content h3 {
    font-size: 1.2rem;
  }
  .work-donate-btn {
    padding: 8px 20px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .wwd-cta-card h2 {
    font-size: 1.5rem;
  }
  .wwd-cta-card p {
    font-size: 0.9rem;
  }
  .work-scroll-container {
    max-height: 600px;
  }
}
/*=============================EVENTS GALLERY PAGE STYLING================================*/
.gallery-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.gallery-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.gallery-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== OVERVIEW SECTION ====================== */
.event-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.event-overview-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.event-overview-card p {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== GALLERY GRID SECTION ====================== */
.event-gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Gallery Card */
.event-gallery-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgb(52 124 0 / 15%);
}

.event-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

.event-gallery-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.event-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-gallery-card:hover .event-gallery-img img {
  transform: scale(1.08);
}

/* Shining Effect */
.event-gallery-img::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.event-gallery-card:hover .event-gallery-img::before {
  top: 100%;
  left: 100%;
}

/* Overlay with Zoom Icon */
.event-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.8),
    rgba(162, 17, 69, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.event-gallery-card:hover .event-gallery-overlay {
  opacity: 1;
}

.event-zoom-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91cd05;
  font-size: 20px;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.event-gallery-card:hover .event-zoom-icon {
  transform: scale(1);
}

.event-zoom-icon:hover {
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  transform: scale(1.1);
}

/* Date Badge */
.event-date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 5px 12px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Gallery Title */
.event-gallery-title {
  padding: 18px;
  text-align: center;
  background: white;
}

.event-gallery-title h4 {
  font-size: 1rem;
  font-weight: 700;
  word-break: break-all;
  color: #1a1f36;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.event-gallery-title h4 i {
  color: #91cd05;
  font-size: 14px;
}

/* Load More Button */
.load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 35px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .event-gallery-img {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .gallery-hero-content h1 {
    font-size: 2rem;
  }
  .gallery-section-title {
    font-size: 1.8rem;
  }
  .event-overview-card {
    padding: 30px 20px;
  }
  .event-gallery-img {
    height: 210px;
  }
  .event-gallery-title h4 {
    font-size: 0.9rem;
  }
  .load-more-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .gallery-hero-content h1 {
    font-size: 1.6rem;
  }
  .gallery-section-title {
    font-size: 1.5rem;
  }
  .event-overview-card p {
    font-size: 10px;
    text-align: justify;
  }
  .event-gallery-img {
    height: 200px;
  }
  .event-zoom-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .event-gallery-title h4 {
    font-size: 0.85rem;
  }
  .load-more-btn {
    padding: 8px 24px;
    font-size: 0.75rem;
  }
}

/*============================VIDEO GALLERY PAGE STYLING=================================*/
.video-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.video-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.video-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== VIDEO OVERVIEW SECTION ====================== */
.video-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.video-overview-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.video-overview-card p {
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== VIDEO GALLERY SECTION ====================== */
.video-gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Video Card */
.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.video-card:hover .video-container iframe {
  transform: scale(1.02);
}

/* Play Button Overlay (for better UX) */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.video-card:hover .play-icon {
  transform: scale(1);
}

/* Video Info */
.video-info {
  padding: 20px;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f36;
  word-break: break-all;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-title i {
  color: #91cd05;
  font-size: 16px;
}

.video-date {
  font-size: 0.75rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-date i {
  color: #91cd05;
  font-size: 11px;
}

/* Video Badge */
.video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 4px 10px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Load More Button */
.load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 35px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

.load-more-btn:hover i {
  transform: translateX(5px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .video-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .video-hero-content h1 {
    font-size: 2rem;
  }
  .video-section-title {
    font-size: 1.8rem;
  }
  .video-overview-card {
    padding: 30px 20px;
  }
  .video-title {
    font-size: 0.95rem;
  }
  .play-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .load-more-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .video-hero-content h1 {
    font-size: 1.6rem;
  }
  .video-section-title {
    font-size: 1.5rem;
  }
  .video-overview-card p {
    font-size: 10px;
    text-align: justify;
  }
  .video-title {
    font-size: 0.9rem;
  }
  .video-date {
    font-size: 0.7rem;
  }
  .play-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .load-more-btn {
    padding: 8px 24px;
    font-size: 0.75rem;
  }
}

/*=======================RECENT UPDATES PAGES STYLING==============================*/
.updates-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.updates-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.updates-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.updates-section-desc {
  color: #6c757d;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== RECENT UPDATES SECTION ====================== */
.recent-updates-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* FIXED: Added align-items-start to prevent siblings from stretching */
.recent-updates-section .row.g-4 {
  align-items: flex-start;
}

/* Update Card */
.update-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgb(52 124 0 / 15%);
  height: auto; /* FIXED: Changed from 100% to auto */
  display: flex;
  flex-direction: column;
}

.update-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

/* Update Image */
.update-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.update-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.update-card:hover .update-img img {
  transform: scale(1.08);
}

.update-img::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.update-card:hover .update-img::before {
  top: 100%;
  left: 100%;
}

.update-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #053700, #692900);
  color: white;
  padding: 5px 15px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.update-card:hover .update-category {
  transform: scale(1.05);
}

.update-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: white;
  padding: 5px 12px;
  border-radius: 30px 8px 30px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}

.update-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.update-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
  line-height: 1.4;
}

.update-title i {
  color: #91cd05;
  margin-right: 6px;
  font-size: 1rem;
}

.update-text {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.update-full-text {
  display: none;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 191, 165, 0.2);
}

.update-full-text.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.read-more-btn {
  background: none;
  border: none;
  color: #91cd05;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0;
  margin-top: auto; /* Aligns button to bottom */
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.read-more-btn:hover {
  color: #6a2a01;
  gap: 10px;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 35px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

/* ====================== SUPPORT CTA SECTION ====================== */
.support-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.support-cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.support-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.support-cta-card h2 span {
  color: #91cd05;
}

.support-cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 14px 40px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3);
}

@media (max-width: 768px) {
  .updates-hero-content h1 {
    font-size: 2rem;
  }
  .updates-section-title {
    font-size: 1.8rem;
  }
  .support-cta-card h2 {
    font-size: 1.8rem;
  }
}

/*=======================CONTACT PAGES STYLING=================================*/
/* ====================== SECTION COMMON STYLES ====================== */
.contact-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.contact-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================== CONTACT OVERVIEW ====================== */
.contact-overview {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.overview-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.overview-card p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================== CONTACT INFO CARDS ====================== */
.contact-info-section {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

.info-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, #053700, #692900);
}

.info-icon i {
  font-size: 30px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
  color: white;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 10px;
}

.info-card p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Clickable Phone/Email Links */
.contact-link {
  display: inline-block;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-link:hover {
  color: #91cd05;
  transform: translateX(3px);
}

.info-card p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ====================== ENQUIRY + IMAGE SECTION ====================== */
.enquiry-section {
  position: relative;
  padding: 80px 0;
  background: url("..//image/crousel_img/cr4.jpg") center center/cover no-repeat;
  background-attachment: fixed;
}

.enquiry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 31, 0.92) 0%,
    rgba(13, 27, 42, 0.88) 100%
  );
}

.enquiry-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.enquiry-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 25px;
}

.enquiry-form-card h3 i {
  color: #91cd05;
  margin-right: 10px;
}

.custom-input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.custom-input:focus {
  outline: none;
  border-color: #91cd05;
  box-shadow: 0 0 0 3px rgb(52 124 0 / 15%);
}

textarea.custom-input {
  resize: vertical;
  min-height: 100px;
}

.submit-enquiry-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  border: none;
  border-radius: 30px 8px 30px 8px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.submit-enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.3);
}

/* Stylish Shape Image */
.stylish-image-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.stylish-image-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.image-bottom-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.95),
    rgba(162, 17, 69, 0.95)
  );
  padding: 35px;
  text-align: center;
}

.image-bottom-overlay p {
  color: white;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-icons-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons-contact a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons-contact a:hover {
  background: white;
  color: #91cd05;
  transform: translateY(-3px);
}

/* ====================== PROFESSIONAL MAP SECTION ====================== */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.map-wrapper {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 191, 165, 0.15);
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

.map-info-panel {
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  padding: 35px;
  height: 100%;
  color: white;
}

.map-info-panel h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #91cd05;
}

.map-address-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.map-address-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-address-list li i {
  width: 35px;
  height: 35px;
  background: rgba(0, 191, 165, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91cd05;
  font-size: 14px;
}

.map-address-list li span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.direction-btn-map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 12px 28px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.direction-btn-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 191, 165, 0.3);
  color: white;
}

/* ====================== FAQ ACCORDION ====================== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item-custom {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgb(52 124 0 / 15%);
  transition: all 0.3s ease;
}

.accordion-item-custom:hover {
  border-color: #91cd05;
  box-shadow: 0 5px 15px rgb(52 124 0 / 15%);
}

.accordion-header-custom {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1a1f36;
  transition: all 0.3s ease;
}

.accordion-header-custom:hover {
  background: rgba(0, 191, 165, 0.05);
}

.accordion-header-custom i {
  color: #91cd05;
  transition: transform 0.3s ease;
}

.accordion-body-custom {
  padding: 0 25px 20px 25px;
  display: none;
  color: #6c757d;
  line-height: 1.7;
}

.accordion-body-custom.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== DONATE CTA ====================== */
.donate-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.donate-cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.donate-cta-card h2 span {
  color: #91cd05;
}

.donate-cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
}

.donate-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  color: white;
  padding: 14px 40px;
  border-radius: 30px 8px 30px 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.donate-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.4);
  color: white;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .stylish-image-card {
    margin-top: 30px;
  }
  .map-container iframe {
    min-height: 300px;
  }
  .map-info-panel {
    margin-top: 30px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-section-title {
    font-size: 1.8rem;
  }
  .overview-card {
    padding: 30px 20px;
  }
  .info-card {
    padding: 25px 20px;
  }
  .enquiry-form-card {
    padding: 30px;
  }
  .stylish-image-card img {
    height: 100%;
    object-fit: cover;
  }
  .map-wrapper {
    border-radius: 20px;
  }
  .map-info-panel {
    padding: 25px;
  }
  .donate-cta-card {
    padding: 40px 25px;
  }
  .donate-cta-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 1.6rem;
  }
  .contact-section-title {
    font-size: 1.5rem;
  }
  .info-card {
    padding: 20px 15px;
  }
  .info-icon {
    width: 60px;
    height: 60px;
  }
  .info-icon i {
    font-size: 24px;
  }
  .enquiry-form-card {
    padding: 25px;
  }
  .donate-cta-card h2 {
    font-size: 1.5rem;
  }
  .map-info-panel h4 {
    font-size: 1.2rem;
  }
}

/*============================DONATE US PAGES STYLING===============================*/
.donate-section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  color: #91cd05;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 30px 8px 30px 8px;
  margin-bottom: 15px;
}

.donate-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  margin-bottom: 15px;
}

.donate-section-title span {
  background: linear-gradient(135deg, #053700, #692900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================== WHY DONATE SECTION ====================== */
.why-donate-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.reason-card {
  background: white;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 191, 165, 0.15);
  border-color: #91cd05;
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: linear-gradient(135deg, #053700, #692900);
}

.reason-icon i {
  font-size: 36px;
  color: #91cd05;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon i {
  color: white;
}

.reason-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 12px;
}

.reason-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ====================== DONATION FORM SECTION ====================== */
.donation-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(52 124 0 / 15%);
  height: 100%;
}

.form-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 25px;
}

.form-card h3 i {
  color: #91cd05;
  margin-right: 10px;
}

/* Form Styles */
.form-label-custom {
  font-weight: 600;
  color: #1a1f36;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control-custom:focus {
  outline: none;
  border-color: #91cd05;
  box-shadow: 0 0 0 3px rgb(52 124 0 / 15%);
}

.form-select-custom {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  background-color: white;
  cursor: pointer;
}

.form-select-custom:focus {
  outline: none;
  border-color: #91cd05;
  box-shadow: 0 0 0 3px rgb(52 124 0 / 15%);
}

.donation-amount-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.amount-option {
  flex: 1;
  min-width: 70px;
  text-align: center;
}

.amount-option input {
  display: none;
}

.amount-option label {
  display: block;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 30px 8px 30px 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.amount-option input:checked + label {
  background: linear-gradient(135deg, #3a7a00, #093901);
  border-color: #91cd05;
  color: white;
}

.amount-option label:hover {
  border-color: #91cd05;
}

.custom-amount-input {
  margin-top: 15px;
}

.submit-donate-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3a7a00, #093901);
  border: none;
  border-radius: 30px 8px 30px 8px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 165, 0.3);
}

/* Right Side Image */
.donation-image-card {
  background: linear-gradient(135deg, #053700, #692900);
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.donation-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.donation-image-card:hover img {
  transform: scale(1.05);
}

.image-quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.image-quote p {
  margin: 0;
  font-style: italic;
}

/* ====================== TRUST SECTION ====================== */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.trust-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(52 124 0 / 15%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.trust-item {
  text-align: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 25px rgb(52 124 0 / 15%);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgb(6 56 0 / 19%),
    rgba(162, 17, 69, 0.08)
  );
  border-radius: 30px 8px 30px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.trust-icon i {
  font-size: 28px;
  color: #91cd05;
}

.trust-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 8px;
}

.trust-item p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .donation-image-card {
    margin-top: 30px;
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .donate-hero-content h1 {
    font-size: 2rem;
  }
  .donate-section-title {
    font-size: 1.8rem;
  }
  .form-card {
    padding: 30px 25px;
  }
  .form-card h3 {
    font-size: 1.5rem;
  }
  .donation-amount-group {
    gap: 8px;
  }
  .amount-option label {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .trust-card {
    padding: 30px 25px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .donate-hero-content h1 {
    font-size: 1.6rem;
  }
  .donate-section-title {
    font-size: 1.5rem;
  }
  .reason-card {
    padding: 25px 20px;
  }
  .reason-icon {
    width: 65px;
    height: 65px;
  }
  .reason-icon i {
    font-size: 28px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    padding: 20px;
  }
  .donation-amount-group {
    flex-wrap: wrap;
  }
  .amount-option {
    min-width: 60px;
  }
}
