/* ==================== ROOT VARIABLES ==================== */
:root {
  --susteno-green: #2e7d32;
  --susteno-green-light: #4caf50;
  --susteno-green-dark: #1b5e20;
  --susteno-blue: #1565c0;
  --susteno-blue-light: #42a5f5;
  --susteno-blue-dark: #0d47a1;
  --susteno-teal: #00897b;
  --susteno-white: #ffffff;
  --susteno-off-white: #f5f9f5;
  --gradient-primary: linear-gradient(135deg, #2e7d32, #1565c0);
  --gradient-secondary: linear-gradient(135deg, #4caf50, #42a5f5);
  --gradient-dark: linear-gradient(135deg, #1b5e20, #0d47a1);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.16);
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global h2 override — black for all pages */
h2, h2 span { color: #000000 !important; }

a { text-decoration: none !important; }

html {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: var(--susteno-white);
  overflow-x: clip;
}

.section-padding {
  padding: 100px 0;
}

/* Hero background zoom animation */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-bg-zoom {
  animation: heroZoom 10s ease-in-out infinite alternate;
}

/* ==================== TEXT GRADIENT ==================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== TOP INFO BAR ==================== */
.top-info-bar {
  background: linear-gradient(90deg, #0a1628, #1a2744);
  color: #ccc;
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1050;
  position: relative;
}

.top-info-bar .info-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.top-info-bar .info-items span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-info-bar .info-items .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
}

.top-info-bar .status-active {
  color: #4caf50;
}

.top-info-bar .status-active i {
  font-size: 8px;
  animation: pulse 2s infinite;
}

.social-links-top a {
  color: #aaa;
  margin-left: 12px;
  font-size: 13px;
  transition: var(--transition);
}

.social-links-top a:hover {
  color: var(--susteno-green-light);
  transform: translateY(-2px);
}

/* ==================== FOOTER CONTAINER FIX ==================== */
@media (min-width: 576px) {
  .premium-footer .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .premium-footer .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .premium-footer .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .premium-footer .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .premium-footer .container {
    max-width: 1320px;
  }
}

/* ==================== GLASSMORPHISM NAVBAR ==================== */
.glass-navbar,
#mainNavbar {
  background: #ffffff !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 4px 0;
  transition: var(--transition);
  z-index: 1040;
  width: 100%;
}

#mainNavbar.sticky-top {
  position: sticky;
  top: 0;
}

.glass-navbar.scrolled {
  background: #ffffff !important;
  padding: 2px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.glass-navbar.scrolled .navbar-logo-img {
  height: 3.5rem !important;
}
@media (min-width: 768px) {
  .glass-navbar.scrolled .navbar-logo-img {
    height: 4rem !important;
  }
}
@media (min-width: 1024px) {
  .glass-navbar.scrolled .navbar-logo-img {
    height: 4.5rem !important;
  }
}

.navbar-toggler {
  border: 2px solid #2e7d32 !important;
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232e7d32' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: var(--transition);
}

.navbar-brand {
  margin-right: 10rem;
}

.navbar-brand:hover .logo-icon {
  transform: rotate(15deg) scale(1.05);
}

.navbar-logo-img {
  height: 4rem !important;
  width: auto !important;
  object-fit: contain !important;
  transition: all 0.3s ease;
  max-width: none !important;
  display: inline-block !important;
}
@media (min-width: 768px) {
  .navbar-logo-img {
    height: 4.5rem !important;
  }
}
@media (min-width: 1024px) {
  .navbar-logo-img {
    height: 5rem !important;
  }
}
.navbar-logo-img:hover {
  transform: scale(1.05);
}

.logo-text .brand-name {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo-text .brand-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--susteno-teal);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Nav Links */
.glass-navbar .nav-link {
  color: #000000 !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px !important;
  position: relative;
  transition: var(--transition);
  border-radius: 8px;
}

.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active {
  color: var(--susteno-green) !important;
  background: rgba(46, 125, 50, 0.05);
}
/* Dropdown Styles */
.glass-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 6px 0 0 0 !important;
  min-width: 280px;
  margin-top: 10px !important;
  animation: dropdownFade 0.3s ease;
  overflow: hidden !important;
}

/* RIGHT SIDE DROPDOWN FIX */

/* Force white background on all dropdown menus */
.glass-navbar .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff !important;
}

/* Ensure dropdown items are clearly readable */
.glass-navbar .dropdown-menu .dropdown-item {
  background-color: #ffffff !important;
  color: #222222 !important;
}

.glass-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff !important;
  color: var(--susteno-green) !important;
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
  }
  .navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .navbar .nav-item.dropdown .dropdown-toggle::after {
    transition: transform 0.25s ease;
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-dropdown .dropdown-item {
  padding: 6px 20px;
  font-size: 13.5px;
  color: #222 !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
}

.glass-dropdown .dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--susteno-green);
  font-size: 14px;
}

.glass-dropdown .dropdown-item:hover {
  background: #ffffff !important;
  color: var(--susteno-green) !important;
  padding-left: 28px;
}

.glass-dropdown .dropdown-divider {
  border-color: rgba(46, 125, 50, 0.1);
  margin: 6px 16px;
}

.glass-dropdown li {
  margin: 0 !important;
  padding: 0 !important;
}

.glass-dropdown li:last-child,
.glass-dropdown li:last-child .dropdown-item {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Donate Button */
.btn-donate {
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  color: white !important;
}

.btn-donate i {
  animation: heartbeat 1.5s infinite;
}



@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ==================== HERO SECTION - REDESIGNED ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #F5F9F5;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section .row {
  padding-top: 0;
  margin-top: -280px;
}

@media (max-width: 767px) {
  .hero-section .row {
    padding-top: 20px;
  }
}

/* Full-Screen Slider Background */
.hero-slider-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 15s ease-in-out infinite;
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes slide {
  0%, 20%   { transform: translateX(0); }
  33.33%, 53.33% { transform: translateX(-33.333%); }
  66.66%, 86.66% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

/* Overlay for text readability */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

/* Slider navigation dots */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.2);
  border: 2px solid rgba(46, 125, 50, 0.4);
  animation: dotActive 15s ease-in-out infinite;
}

.slider-dots .dot:nth-child(1) { animation-delay: 0s; }
.slider-dots .dot:nth-child(2) { animation-delay: 5s; }
.slider-dots .dot:nth-child(3) { animation-delay: 10s; }

@keyframes dotActive {
  0%, 16%   { background: #2E7D32; border-color: #2E7D32; transform: scale(1.3); }
  20%, 100% { background: rgba(46, 125, 50, 0.2); border-color: rgba(46, 125, 50, 0.4); transform: scale(1); }
}

/* Slider navigation arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.hero-slider-wrapper:hover .hero-slider-arrow {
  opacity: 1;
}

.hero-slider-arrow:hover {
  background: rgba(46, 125, 50, 0.85);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
}

.hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-arrow--prev {
  left: 20px;
}

.hero-slider-arrow--next {
  right: 20px;
}

@media (max-width: 767px) {
  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .hero-slider-arrow--prev {
    left: 10px;
  }

  .hero-slider-arrow--next {
    right: 10px;
  }
}

/* Title */
.hero-title {
  display: inline-block;
  margin: 0 auto 16px;
}

.hero-title .title-accent {
  display: block;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  letter-spacing: 4px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: titleReveal 0.8s ease-out 0.3s forwards;
}

.hero-title .title-main {
  display: block;
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 14px;
  margin-top: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: titleReveal 0.8s ease-out 1s forwards;
}

@keyframes titleReveal {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Tagline */
.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 48px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.typed-text {
  color: #4CAF50;
  font-weight: 600;
}

.cursor {
  color: #4CAF50;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Keywords */
.keyword {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.keyword:hover {
  background: rgba(76, 175, 80, 0.35);
  border-color: rgba(76, 175, 80, 0.5);
  transform: translateY(-2px);
}

.keyword i {
  color: #4CAF50;
}

.keyword:hover i {
  color: #fff;
}

/* Scrolling Keywords at Bottom */
.hero-scroll-keywords {
  position: absolute;
  bottom: 130px;
  left: 0;
  right: 0;
  z-index: 5;
  overflow: hidden;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  will-change: transform;
}

.scroll-track .keyword {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  padding: 8px 20px;
  margin: 0 18px;
  white-space: nowrap;
}

.scroll-track .keyword i {
  color: #4CAF50;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
  transform: translateY(-3px);
}

.hero-btn-primary:hover {
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.5);
  transform: translateY(-4px);
  color: #fff;
}

.hero-btn-secondary {
  background: #fff;
  color: #1565C0;
  border: 2px solid #1565C0;
  transform: translateY(-3px);
}

.hero-btn-secondary:hover {
  background: #1565C0;
  color: #fff;
  transform: translateY(-4px);
}

.hero-btn-outline {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-4px);
}

/* Decorative Background Circles */
.hero-decorative {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.deco-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4CAF50, transparent);
  top: -200px;
  right: -100px;
  animation: decoFloat 10s ease-in-out infinite;
}

.deco-circle-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #42A5F5, transparent);
  bottom: -150px;
  left: -100px;
  animation: decoFloat 12s ease-in-out 2s infinite;
}

.deco-circle-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00897B, transparent);
  top: 30%;
  right: 30%;
  animation: decoFloat 14s ease-in-out 4s infinite;
}

@keyframes decoFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* Particles overlay */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero-scroll-indicator a {
  text-decoration: none;
  color: #888;
  font-size: 12px;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid #aaa;
  border-radius: 12px;
  margin: 0 auto 6px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #2E7D32;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-scroll-keywords {
    bottom: 100px;
  }
  .slider-dots {
    bottom: 60px;
  }
  .hero-wave svg {
    height: 40px;
  }
  .hero-scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .hero-scroll-keywords {
    bottom: 80px;
    padding: 8px 0;
  }
  .scroll-track .keyword {
    font-size: 11px;
    padding: 6px 14px;
  }
  .scroll-track {
    gap: 20px;
  }
  .slider-dots {
    bottom: 50px;
    gap: 8px;
  }
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  .hero-wave svg {
    height: 30px;
  }
  .hero-scroll-indicator {
    bottom: 15px;
  }
  .hero-title .title-main {
    letter-spacing: 6px;
  }
}

/* ==================== SECTION HEADERS ==================== */
.section-subtitle {
  display: inline-block;
  color: var(--susteno-green);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  vertical-align: middle;
  margin: 0 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 600px;
  margin: 15px auto 0;
  color: #666;
  font-size: 16px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 16px;
  line-height: 1;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: labelDotPulse 2s infinite;
}

@keyframes labelDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==================== JOURNEY TIMELINE ==================== */
.journey-section {
  padding: 100px 0;
  background: var(--susteno-off-white);
}

.journey-timeline {
  margin-top: 60px;
}

.journey-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  background: var(--susteno-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.journey-row:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.journey-row-reverse {
  flex-direction: row-reverse;
}

.journey-media {
  flex: 0 0 45%;
  max-width: 45%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.journey-icon-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.journey-row:hover .journey-icon-wrapper {
  transform: scale(1.06);
}

.journey-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.08),
    rgba(21, 101, 192, 0.06)
  );
  pointer-events: none;
}

.journey-info {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 40px 48px;
  position: relative;
}

.journey-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.journey-row-reverse .journey-info::before {
  left: auto;
  right: 0;
}

.journey-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--susteno-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.journey-year-badge::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
}

.journey-year-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.journey-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.journey-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.journey-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--susteno-green);
  text-decoration: none;
  transition: var(--transition);
}

.journey-arrow:hover {
  gap: 12px;
  color: var(--susteno-green-dark);
}

.journey-arrow i {
  font-size: 12px;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .journey-media {
    flex: 0 0 40%;
    max-width: 40%;
    height: 260px;
  }

  .journey-info {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 30px 32px;
  }

  .journey-year-num {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .journey-row,
  .journey-row-reverse {
    flex-direction: column;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .journey-media {
    flex: 0 0 100%;
    max-width: 100%;
    height: 200px;
  }

  .journey-info {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 24px 28px;
  }

  .journey-info::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
  }

  .journey-row-reverse .journey-info::before {
    left: 0;
    right: auto;
  }

  .journey-year-num {
    font-size: 30px;
  }

  .journey-info h3 {
    font-size: 18px;
  }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  background: linear-gradient(160deg, #f5f9f5 0%, #ffffff 40%, #f0f7f0 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E7D32, #1565C0, #00897B);
  z-index: 3;
}

/* About Background Shapes */
.about-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
}

.about-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,125,50,0.06), transparent 70%);
  top: -150px;
  right: -100px;
}

.about-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(21,101,192,0.05), transparent 70%);
  bottom: -80px;
  left: -80px;
}

.about-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,137,123,0.06), transparent 70%);
  top: 40%;
  left: 10%;
}

.about-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,50,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,50,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* About Header Decoration */
.about-header-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-decor-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.about-decor-icon {
  color: #4CAF50;
  font-size: 16px;
  animation: decorLeafSpin 4s ease-in-out infinite;
}

@keyframes decorLeafSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.15); }
}

/* About Gallery Wrapper */
.about-gallery-wrapper {
  position: relative;
  padding-right: 20px;
}

.about-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(46,125,50,0.12);
  border: 3px solid rgba(255,255,255,0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-gallery-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(46,125,50,0.2);
}

.about-img-container {
  position: relative;
  overflow: hidden;
}

.about-img-container img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-gallery-main:hover .about-img-container img {
  transform: scale(1.05);
}

.about-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.about-gallery-main:hover .about-img-shine {
  opacity: 1;
}

.about-exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 2;
}

.exp-badge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  border-radius: 50%;
  color: white;
  z-index: 1;
}

.exp-badge-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.exp-badge-text {
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  opacity: 0.9;
}

.exp-badge-ring {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: rotate(-90deg);
}

.exp-ring-progress {
  animation: ringProgress 2s ease-out forwards;
}

@keyframes ringProgress {
  to { stroke-dashoffset: 0; }
}

.about-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.about-gallery-small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(46,125,50,0.1);
  border: 2px solid rgba(255,255,255,0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-gallery-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(46,125,50,0.18);
}

.about-gallery-small:hover .about-img-container img {
  transform: scale(1.08);
}

.about-gallery-small .about-img-container img {
  height: 180px;
  object-fit: cover;
}

.about-img-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #2E7D32;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-dots-pattern {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#4CAF50 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1;
}

/* About Content Wrapper */
.about-content-wrapper {
  padding-left: 10px;
}

.about-content-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.label-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2E7D32, #4CAF50);
  border-radius: 2px;
}

.about-content-label span {
  font-size: 13px;
  font-weight: 600;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-heading {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.3;
}

.heading-highlight {
  background: linear-gradient(135deg, #2E7D32, #1565C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(46,125,50,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.1);
  border-color: rgba(46,125,50,0.2);
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
}

.feature-card-content strong {
  font-size: 13px;
  color: #1a1a2e;
}

.feature-card-content span {
  font-size: 11px;
  color: #888;
}

.about-cta-group {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46,125,50,0.4);
  color: white;
}

.about-btn-primary i {
  transition: transform 0.3s ease;
}

.about-btn-primary:hover i {
  transform: translateX(4px);
}

/* Decorative Element Image - Centered Background Accent */


@keyframes decorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.12; }
  50% { transform: translate(-50%, -50%) scale(1.08) rotate(2deg); opacity: 0.2; }
}

.about-image-grid {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  transition: var(--transition);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 175, 80, 0.9);
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
}

.exp-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 5px solid white;
  box-shadow: var(--shadow-medium);
}

.about-img-secondary img {
  width: 100%;
  transition: var(--transition);
}

.about-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-icon {
  color: var(--susteno-green);
  font-size: 18px;
}

.about-feature span {
  font-weight: 500;
  color: #333;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 20px;
  border: none;
}

.btn-learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  color: white;
}

/* ==================== OUR STORY ==================== */
.our-story-section {
  position: relative;
}

.story-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--susteno-green);
  color: var(--susteno-white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.story-header-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--susteno-white);
  animation: pulse 2s infinite;
}

.story-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #1a1a2e;
  margin-top: 20px;
}

.story-image-wrapper {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.story-image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(11, 107, 58, 0.2);
}

.story-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.story-image-wrapper:hover img {
  transform: scale(1.04);
}

.story-float-badge {
  position: absolute;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  animation: float 4s ease-in-out infinite;
}

.story-content-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.story-content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.story-content-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.story-content-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.story-content-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.story-card-green .card-icon {
  background: rgba(46, 125, 50, 0.12);
  color: var(--susteno-green);
}

.story-card-green {
  border-top: 3px solid var(--susteno-green);
}

.story-card-blue .card-icon {
  background: rgba(21, 101, 192, 0.12);
  color: var(--susteno-blue);
}

.story-card-blue {
  border-top: 3px solid var(--susteno-blue);
}

.story-feature-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.story-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.story-feature-card .feat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.story-feature-card:hover .feat-icon {
  transform: scale(1.1) rotate(6deg);
}

.story-feature-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.story-feature-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.story-stat-card {
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.story-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.story-stat-card .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--susteno-white);
  transition: var(--transition);
}

.story-stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(6deg);
}

.story-stat-card h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--susteno-white);
  margin-bottom: 4px;
}

.story-stat-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: var(--susteno-white);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-decoration: none;
}

.story-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  color: var(--susteno-white);
}

.story-cta i {
  transition: transform 0.3s ease;
}

.story-cta:hover i {
  transform: translateX(6px);
}

/* ==================== VISION & MISSION ==================== */
.vision-mission-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.vision-mission-section .section-title {
  color: #ffffff !important;
}

.vision-mission-section .section-title span {
  color: #ffffff !important;
}

.vision-mission-section .section-title .text-gradient {
  background: none;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset;
}

.vision-mission-section {
  background: #0f1a0f;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(46, 125, 50, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 70%, rgba(21, 101, 192, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
  animation: vmGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes vmGlow {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.6; transform: scale(1); }
}

.vm-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: vmCardFloat 6s ease-in-out infinite;
}

.vm-card:nth-child(2) {
  animation-delay: -3s;
}

@keyframes vmCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vm-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  animation-play-state: paused;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.vm-card:nth-child(1)::before {
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.vm-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.vm-card-badge {
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vm-card-badge-vision {
  background: rgba(46, 125, 50, 0.2);
  color: #81c784;
}

.vm-card-badge-mission {
  background: rgba(21, 101, 192, 0.2);
  color: #64b5f6;
}

.vm-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  animation: vmIconPulse 3s ease-in-out infinite;
}

.vm-card:nth-child(2) .vm-card-icon {
  animation-delay: -1.5s;
}

@keyframes vmIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
  50% { transform: scale(1.08); box-shadow: 0 0 30px rgba(255,255,255,0.15); }
}

.vm-card-icon-vision {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.1));
  color: #81c784;
}

.vm-card-icon-mission {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.3), rgba(21, 101, 192, 0.1));
  color: #64b5f6;
}

.vm-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.vm-card-title {
  color: #ffffff;
}

.vm-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.vm-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.vm-card-feat:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.vm-card-feat i {
  width: 28px;
  font-size: 16px;
  text-align: center;
}

.vm-split-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
}

.vm-panel {
  flex: 0 0 28%;
  max-width: 28%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 48px 36px;
  overflow: hidden;
}

.vm-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vm-panel-vision .vm-panel-bg {
  background: linear-gradient(135deg, #0a1a0e 0%, #1b5e20 40%, #0d3b10 100%);
}

.vm-panel-mission .vm-panel-bg {
  background: linear-gradient(135deg, #081a2e 0%, #0d47a1 40%, #062050 100%);
}

.vm-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.vm-panel-content {
  position: relative;
  z-index: 1;
}

.vm-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.vm-panel-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--susteno-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.vm-panel-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}

.vm-center {
  flex: 0 0 16%;
  max-width: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.vm-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: var(--shadow-medium);
  position: relative;
  flex-shrink: 0;
}

.vm-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0.15;
}

.vm-vision-circle {
  background: linear-gradient(
    135deg,
    var(--susteno-green),
    var(--susteno-green-dark)
  );
  color: var(--susteno-white);
}

.vm-vision-circle::before {
  background: var(--susteno-green);
}

.vm-mission-circle {
  background: linear-gradient(
    135deg,
    var(--susteno-blue),
    var(--susteno-blue-dark)
  );
  color: var(--susteno-white);
}

.vm-mission-circle::before {
  background: var(--susteno-blue);
}

.vm-cards {
  flex: 0 0 46%;
  max-width: 46%;
  padding: 40px 40px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vm-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--susteno-white);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.vm-feature-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-medium);
}

.vm-feature-card:hover .vm-feature-icon {
  transform: scale(1.12) rotate(-6deg);
}

.vm-card-green .vm-feature-icon {
  background: rgba(46, 125, 50, 0.1);
  color: var(--susteno-green);
  transition: var(--transition);
}

.vm-card-green:hover .vm-feature-icon {
  background: var(--susteno-green);
  color: var(--susteno-white);
}

.vm-card-blue .vm-feature-icon {
  background: rgba(21, 101, 192, 0.1);
  color: var(--susteno-blue);
  transition: var(--transition);
}

.vm-card-blue:hover .vm-feature-icon {
  background: var(--susteno-blue);
  color: var(--susteno-white);
}

.vm-card-teal .vm-feature-icon {
  background: rgba(0, 137, 123, 0.1);
  color: var(--susteno-teal);
  transition: var(--transition);
}

.vm-card-teal:hover .vm-feature-icon {
  background: var(--susteno-teal);
  color: var(--susteno-white);
}

.vm-feature-card.vm-card-green {
  border-left: 4px solid var(--susteno-green);
}

.vm-feature-card.vm-card-blue {
  border-left: 4px solid var(--susteno-blue);
}

.vm-feature-card.vm-card-teal {
  border-left: 4px solid var(--susteno-teal);
}

.vm-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.vm-card-green .vm-feature-icon {
  background: rgba(46, 125, 50, 0.1);
  color: var(--susteno-green);
}

.vm-card-blue .vm-feature-icon {
  background: rgba(21, 101, 192, 0.1);
  color: var(--susteno-blue);
}

.vm-card-teal .vm-feature-icon {
  background: rgba(0, 137, 123, 0.1);
  color: var(--susteno-teal);
}

.vm-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.vm-feature-text p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .vm-split-row {
    flex-direction: column;
    margin-top: 40px;
  }

  .vm-panel {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 220px;
    padding: 40px 32px;
  }

  .vm-center {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 24px 0;
    margin: -40px 0 -20px;
    position: relative;
    z-index: 2;
  }

  .vm-circle {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .vm-cards {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 24px 24px 32px;
  }
}

/* Core Values */
.values-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
}

.value-item {
  text-align: center;
  padding: 20px 10px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: default;
}

.value-item:hover {
  background: rgba(46, 125, 50, 0.05);
  transform: translateY(-5px);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
}

.value-item span {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}

/* ==================== SDGs SECTION ==================== */
.sdg-section {
  background: var(--susteno-off-white);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.sdg-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.sdg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sdg-color);
}

.sdg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--sdg-color);
}

.sdg-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--sdg-color);
  line-height: 1;
  margin-bottom: 8px;
}

.sdg-icon {
  font-size: 28px;
  color: var(--sdg-color);
  margin-bottom: 10px;
  transition: var(--transition);
}

.sdg-card:hover .sdg-icon {
  transform: scale(1.2);
}

.sdg-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ==================== SDC SECTION ==================== */
.sdc-section {
  background: white;
}

.sdc-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.sdc-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.district-list h5 {
  font-weight: 700;
  color: var(--susteno-green-dark);
  margin-bottom: 12px;
}

.district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.district-tag {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.08),
    rgba(21, 101, 192, 0.08)
  );
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--susteno-green-dark);
  transition: var(--transition);
}

.district-tag:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  border-color: transparent;
}

/* Vidarbha Map */
.vidarbha-map-container {
  background: rgba(46, 125, 50, 0.03);
  border-radius: var(--border-radius);
  padding: 20px;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.vidarbha-map {
  width: 100%;
  height: auto;
}

.map-district {
  transition: var(--transition);
  cursor: pointer;
}

.map-district:hover {
  fill: rgba(46, 125, 50, 0.5);
  stroke-width: 3;
}

.map-text {
  font-size: 11px;
  font-weight: 600;
  fill: #2e7d32;
  pointer-events: none;
}

.map-marker {
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
  0%,
  100% {
    r: 5;
    opacity: 1;
  }
  50% {
    r: 8;
    opacity: 0.7;
  }
}

/* ==================== PROGRAMMES SECTION ==================== */
.programmes-section {
  background: var(--susteno-off-white);
}

.programme-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

a.overview-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.overview-card-link .programme-card {
  cursor: pointer;
}

.programme-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.programme-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.programme-card:hover::after {
  transform: scaleX(1);
}

.programme-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.programme-card:hover .programme-icon {
  transform: rotateY(180deg);
}

.programme-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.programme-card p {
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.programme-link {
  color: var(--susteno-green);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.programme-link:hover {
  color: var(--susteno-green-dark);
  gap: 12px;
}

/* ==================== IMPACT SECTION ==================== */
.impact-section {
  position: relative;
  background: linear-gradient(135deg, #0a1628, #1a3a2a, #0d2b4a);
  overflow: hidden;
}

.impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200")
    center/cover;
  opacity: 0.1;
}

.impact-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 16px;
}

.impact-number {
  font-size: 48px;
  font-weight: 900;
  color: white;
  display: inline;
  line-height: 1;
}

.impact-plus {
  font-size: 32px;
  font-weight: 700;
  color: #4caf50;
  display: inline;
}

.impact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.impact-bar {
  width: 40px;
  height: 3px;
  background: var(--gradient-secondary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ==================== TRAINING SECTION ==================== */
.training-section {
  background: white;
}

.training-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.training-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.training-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.training-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--susteno-off-white);
  border-radius: 12px;
  transition: var(--transition);
}

.training-feature:hover {
  background: rgba(46, 125, 50, 0.08);
  transform: translateX(5px);
}

.training-feature i {
  font-size: 24px;
  color: var(--susteno-green);
  width: 30px;
  text-align: center;
}

.training-feature h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.training-feature p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.training-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.training-image img {
  width: 100%;
  transition: var(--transition);
}

.training-image:hover img {
  transform: scale(1.05);
}

.training-overlay-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
}

.training-overlay-badge span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.training-overlay-badge small {
  font-size: 11px;
  opacity: 0.9;
}

/* ==================== EXPERTS SECTION ==================== */
.experts-section {
  background: #dff0c2;
}

.expert-category-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.expert-category-card {
  border: 2px solid #0b6b3a;
}

.expert-category-card:hover {
  border-color: #0b6b3a;
  border-width: 3px;
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.expert-cat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.expert-category-card:hover .expert-cat-icon {
  transform: scale(1.1) rotate(-10deg);
}

.expert-category-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.expert-category-card p {
  color: #666;
  font-size: 13px;
  margin-bottom: 12px;
}

.expert-count {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--susteno-green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ==================== RESEARCH SECTION ==================== */
.research-section {
  background: white;
}

.research-card {
  background: var(--susteno-off-white);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.research-type {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.research-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.research-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.research-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  color: #888;
  font-size: 13px;
}

.research-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  background: #d0eba8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.8),
    rgba(21, 101, 192, 0.8)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  margin-bottom: 8px;
}

.gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* ==================== NEWS SECTION ==================== */
.news-section {
  background: white;
}

.news-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
}

.date-day {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--susteno-green);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.news-content {
  padding: 24px;
}

.news-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-link {
  color: var(--susteno-green);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--susteno-green-dark);
  gap: 12px;
}

/* ==================== PARTNERSHIPS ==================== */
.partnerships-section {
  background: #d0eba8;
  padding-top: 60px;
}

.partner-carousel {
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  animation: scrollPartners 30s linear infinite;
  gap: 40px;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
}

.partner-placeholder {
  width: 180px;
  height: 100px;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  padding: 12px;
}

.partner-placeholder:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.partner-placeholder i {
  font-size: 28px;
  color: var(--susteno-green);
}

.partner-placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0a1628, #1a3a2a);
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(76, 175, 80, 0.1) 0%,
    transparent 70%
  );
}

.cta-card {
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  height: 100%;
}

.cta-card:hover {
  background: rgba(10, 22, 40, 0.7);
  transform: translateY(-8px);
}

.cta-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.volunteer-card .cta-icon {
  color: #81c784;
}
.intern-card .cta-icon {
  color: #64b5f6;
}
.donate-card .cta-icon {
  color: #ffb74d;
}

.cta-card h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  color: white;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: white;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--susteno-off-white);
  border-radius: var(--border-radius);
  padding: 24px;
  border-left: 4px solid var(--susteno-green);
}

.contact-info-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.contact-info-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

.contact-info-card p i {
  color: var(--susteno-green);
  width: 16px;
}

.contact-social h5 {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.contact-form-container {
  background: var(--susteno-off-white);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--susteno-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.btn-submit-form {
  background: var(--gradient-primary);
  color: white;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
  color: white;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-title {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

/* ==================== PREMIUM FOOTER ==================== */
.premium-footer {
  position: relative;
  margin-top: -60px;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(46,125,50,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(76,175,80,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(21,101,192,0.04) 0%, transparent 40%),
    linear-gradient(135deg, #f5faf5, #ecf5ec, #e8f3e8, #f0f8f0);
  color: #333;
  box-shadow: 0 -4px 20px rgba(46,125,50,0.06);
  overflow: hidden;
}


@keyframes footerBorderSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 400% 0; }
}

/* Footer CTA Strip */
.footer-cta-strip {
  position: relative;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #f1f8e9);
  padding: 0;
  margin: 30px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(46,125,50,0.25);
  margin-bottom: 0;
}
.footer-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(76,175,80,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(21,101,192,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.footer-cta-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  animation: footerShine 4s ease-in-out infinite;
}
@keyframes footerShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 60px;
  position: relative;
  z-index: 1;
}
.footer-cta-text h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #1b5e20;
  margin: 10px 0 8px;
  line-height: 1.3;
}
.footer-cta-text h3 .text-gradient {
  background: linear-gradient(135deg, #2e7d32, #1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-cta-text p {
  color: #2e7d32;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: #2e7d32;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-cta-badge i {
  font-size: 10px;
}
.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.footer-donate-btn {
  background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
  color: #fff !important;
  padding: 16px 36px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 30px rgba(46,125,50,0.25);
  border-radius: 50px !important;
  border: none !important;
  transition: all 0.3s !important;
}
.footer-donate-btn i {
  margin-right: 8px;
}
.footer-donate-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(46,125,50,0.35) !important;
}
.footer-contact-btn {
  background: transparent !important;
  border: 2px solid #2e7d32 !important;
  color: #2e7d32 !important;
  padding: 16px 36px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s !important;
}
.footer-contact-btn:hover {
  background: #2e7d32 !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(46,125,50,0.25) !important;
}

/* Footer Impact Stats */
.footer-impact {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 30px 0;
}
.footer-impact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-impact-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
  min-width: 120px;
}
.footer-impact-icon {
  font-size: 24px;
  margin-bottom: 4px;
  color: #2e7d32;
}
.footer-impact-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #2e7d32, #1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.footer-impact-label {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-wave {
  margin-top: -2px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}
.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1b5e20, #2e7d32, #4caf50, #66bb6a, #81c784, #66bb6a, #4caf50, #2e7d32, #1b5e20);
  box-shadow: 0 2px 10px rgba(46,125,50,0.25);
  z-index: 1;
  pointer-events: none;
}

.footer-col {
  position: relative;
  transition: transform 0.3s;
}
.footer-col:hover {
  transform: translateY(-3px);
}
.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(46,125,50,0.15), rgba(21,101,192,0.15), transparent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(46,125,50,0.2);
}

.footer-logo .brand-name {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: #1a1a2e;
  letter-spacing: 2px;
}

.footer-logo .brand-sub {
  display: block;
  font-size: 9px;
  color: #2e7d32;
  letter-spacing: 3px;
  font-weight: 600;
}

.footer-logo-img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  max-width: none !important;
  display: inline-block !important;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .footer-logo-img {
    height: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-logo-img {
    height: 5rem;
  }
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

.footer-legal {
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(46,125,50,0.05);
  border-radius: 8px;
  border-left: 3px solid #2e7d32;
}

.footer-legal p {
  font-size: 12px;
  margin-bottom: 4px;
  color: #555;
}

.status-green {
  color: #2e7d32;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(46,125,50,0.35);
}

.footer-links h5 {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links h5 i {
  color: #2e7d32;
  font-size: 16px;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32, #4caf50);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.footer-links:not(.no-dots) ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2e7d32;
  opacity: 1;
  transition: all 0.3s;
}

.footer-links ul li:hover::before {
  opacity: 1;
  background: #2e7d32;
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(46,125,50,0.4);
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #2e7d32;
  transform: translateX(6px);
  font-weight: 600;
}

/* Footer Links with colored icons */
.footer-links ul li a i {
  color: #2e7d32;
  margin-right: 6px;
  width: 16px;
  font-size: 11px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #444;
  font-size: 13px;
}
.footer-contact-list li i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(21,101,192,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.footer-contact-list li:hover i {
  background: linear-gradient(135deg, #2e7d32, #1565c0);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(46,125,50,0.25);
}

/* SDG Mini Icons */
.footer-sdg-row {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
}

.footer-sdg-row h6 {
  color: #2e7d32;
  font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.sdg-mini-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.sdg-mini-icons span {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
  cursor: default;
  opacity: 0.9;
}

.sdg-mini-icons span:hover {
  transform: scale(1.25);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  background: linear-gradient(135deg, #1b5e20, #2e7d32, #0d47a1);
  position: relative;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.5), transparent);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.footer-credit-link {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: #66bb6a;
  text-decoration: underline;
}

/* ==================== HERO H1 STYLES ==================== */
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px !important;
  line-height: 1.15 !important;
}
@media (max-width: 768px) {
  .hero-h1 {
    font-size: 36px !important;
  }
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  color: white;
}

.whatsapp-btn {
  background: #25d366;
  animation-delay: 0s;
}

.call-btn {
  background: var(--susteno-blue);
  animation-delay: 0.5s;
}

.email-btn {
  background: var(--susteno-green);
  animation-delay: 1s;
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.story-float-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.story-float-icon-green {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
}

.story-float-icon-blue {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  color: #fff;
}

.story-float-icon-teal {
  background: linear-gradient(135deg, #00897b, #26a69a);
  color: #fff;
}

.story-float-icon-orange {
  background: linear-gradient(135deg, #e65100, #ff8f00);
  color: #fff;
}

.story-float-icon-center {
  top: 50% !important;
  left: 50% !important;
  margin-top: -22px;
  margin-left: -22px;
}

@media (max-width: 767px) {
  .story-float-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .story-float-icon-center {
    margin-top: -18px;
    margin-left: -18px;
  }
}

@media (max-width: 480px) {
  .story-float-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .story-float-icon-center {
    margin-top: -15px;
    margin-left: -15px;
  }
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199px) {
  .glass-navbar .nav-link {
    font-size: 13px;
    padding: 6px 10px !important;
  }
}

@media (max-width: 991px) {
  .section-padding {
  padding: 35px 0;
  }
  .premium-footer {
    margin-top: -35px;
  }

  .hero-title .title-accent {
    font-size: 48px;
  }

  .hero-visual {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .about-img-secondary {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-info-bar .info-items {
    justify-content: center;
    text-align: center;
  }

  .top-info-bar .separator {
    display: none;
  }

  .social-links-top {
    display: none;
  }

  .hero-title .title-accent {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .hero-title .title-main {
    font-size: 14px;
    letter-spacing: 6px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    justify-content: center;
    width: auto;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 15px;
  }

  .sdg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-tall,
  .gallery-item-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .impact-number {
    font-size: 36px;
  }

  .glass-dropdown {
    background: rgba(245, 249, 245, 0.98) !important;
    border: none;
    box-shadow: none;
    margin-top: 0 !important;
    border-radius: 0 !important;
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-cta {
    margin: 16px 0;
  }

  .btn-donate {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .sdg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-keywords {
    gap: 6px;
  }

  .keyword {
    font-size: 11px;
    padding: 4px 12px;
  }
}

/* ==================== UTILITY ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(46, 125, 50, 0.2);
  color: var(--susteno-green-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--susteno-green), var(--susteno-blue));
  border-radius: 4px;
}

/* Page Transition Loading */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(46, 125, 50, 0.1);
  border-top-color: var(--susteno-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==================== NAVBAR FIXES (Tailwind override prevention) ==================== */
/* ==================== NAVBAR FIXES ==================== */
.container {
  width: 100%;
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}

/* DO NOT force display on navbarContent - breaks Bootstrap collapse */
/* #navbarContent - leave Bootstrap to manage this */

.glass-navbar {
  border-bottom: 3px solid #2e7d32 !important;
  background: #ffffff !important;
}

/* Force all nav links visible and styled */
.glass-navbar .navbar-nav .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 10px 16px !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
  background: transparent;
  border: none;
  white-space: nowrap;
}

.glass-navbar .navbar-nav .nav-link:hover,
.glass-navbar .navbar-nav .nav-link.active {
  color: var(--susteno-green) !important;
  background: rgba(46, 125, 50, 0.05) !important;
}

/* Ensure dropdown items are visible */
.glass-dropdown .dropdown-item {
  color: #222222 !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
}

/* Fix Tailwind preflight interference on lists */
.glass-dropdown ul,
.navbar-nav,
.navbar-nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure navbar-collapse works with Bootstrap JS */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
  }

  .navbar-collapse.show {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-collapse.show .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
  }

  .navbar-collapse.show .dropdown-menu {
    position: static !important;
    float: none !important;
    border: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    align-items: center !important;
  }

  .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
}

.glass-navbar {
  border-bottom: 3px solid #2e7d32 !important;
  background: #ffffff !important;
}

.glass-navbar .navbar-nav .nav-link {
  display: inline-flex !important;
  align-items: center;
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 10px 16px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fix dropdown toggle arrow - right side of nav links */
.glass-navbar .navbar-nav .dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.glass-navbar .navbar-nav .dropdown-toggle::after {
  display: inline-block !important;
  content: "▼" !important;
  border: none !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;
  margin: 0 !important;
  vertical-align: middle !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  position: static !important;
  transform: none !important;
  line-height: 1 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  color: #000000;
  opacity: 1;
} /* Reduce navbar height more, keep logo size same */
.glass-navbar {
  --bs-navbar-padding-y: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: auto !important;
}

.glass-navbar > .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
  gap: 8rem !important;
}

.glass-navbar .navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
}

.glass-navbar .logo-container {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* keep logo size same — do not set .navbar-logo-img height */

.glass-navbar .navbar-collapse,
.glass-navbar .navbar-nav {
  align-items: center !important;
}

.glass-navbar .navbar-nav .nav-link {
  padding-top: 0.28rem !important;
  padding-bottom: 0.28rem !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  line-height: 1.2 !important;
  font-size: 16px !important;
}

.glass-navbar .btn-donate {
  padding-top: 0.28rem !important;
  padding-bottom: 0.28rem !important;
  line-height: 1.1 !important;
}

.glass-navbar .navbar-toggler {
  padding: 0.2rem 0.4rem !important;
  line-height: 1 !important;
}
/* More spacing between navbar links */
@media (min-width: 992px) {
  .glass-navbar .navbar-nav {
    gap: 36px !important;
  }
}

@media (max-width: 991.98px) {
  .glass-navbar .navbar-nav {
    gap: 16px !important;
  }
}
/* ===== SDC SECTION - CORNER & SIDE ANIMATIONS (CSS ONLY) ===== */

/* ===== TOP RIGHT CORNER - ROTATING RINGS ===== */
.sdc-section-new::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 200px;
  height: 200px;
  border: 3px solid transparent;
  border-top: 3px solid rgba(46, 125, 50, 0.3);
  border-right: 3px solid rgba(46, 125, 50, 0.15);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 14s linear infinite;
  box-shadow:
    inset 0 0 30px rgba(46, 125, 50, 0.05),
    0 0 20px rgba(46, 125, 50, 0.03);
}

.sdc-section-new::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  border: 2px solid transparent;
  border-bottom: 2px solid rgba(21, 101, 192, 0.25);
  border-left: 2px solid rgba(21, 101, 192, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 18s linear infinite reverse;
}

/* Top Right - Inner Dashed Ring */
.sdc-bg-elements::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 72px;
  width: 105px;
  height: 105px;
  border: 2px dashed rgba(46, 125, 50, 0.15);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 24s linear infinite;
}

/* Top Right - Center Glowing Dot */
.sdc-bg-elements::after {
  content: "";
  position: absolute;
  top: 115px;
  right: 115px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: sdcCenterGlow 3s ease-in-out infinite;
  box-shadow:
    0 0 15px rgba(46, 125, 50, 0.5),
    0 0 35px rgba(46, 125, 50, 0.2),
    0 0 60px rgba(46, 125, 50, 0.08);
}

/* ===== BOTTOM LEFT CORNER - ROTATING RINGS ===== */
.sdc-bg-gradient-1::before {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 200px;
  height: 200px;
  border: 3px solid transparent;
  border-bottom: 3px solid rgba(21, 101, 192, 0.25);
  border-left: 3px solid rgba(21, 101, 192, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 16s linear infinite;
}

.sdc-bg-gradient-1::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 150px;
  height: 150px;
  border: 2px solid transparent;
  border-top: 2px solid rgba(0, 137, 123, 0.2);
  border-right: 2px solid rgba(0, 137, 123, 0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 20s linear infinite reverse;
}

/* Bottom Left - Inner Dashed Ring */
.sdc-bg-gradient-2::before {
  content: "";
  position: absolute;
  bottom: 72px;
  left: 72px;
  width: 105px;
  height: 105px;
  border: 2px dashed rgba(21, 101, 192, 0.12);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: sdcCornerSpin 26s linear infinite;
}

/* Bottom Left - Center Glowing Dot */
.sdc-bg-gradient-2::after {
  content: "";
  position: absolute;
  bottom: 115px;
  left: 115px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: sdcCenterGlow 3.5s ease-in-out infinite 1s;
  box-shadow:
    0 0 15px rgba(21, 101, 192, 0.5),
    0 0 35px rgba(21, 101, 192, 0.2),
    0 0 60px rgba(21, 101, 192, 0.08);
}

/* ===== LEFT SIDE - VERTICAL LINE & DOTS ===== */
.sdc-bg-grid::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 200px;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(46, 125, 50, 0.25) 20%,
    rgba(46, 125, 50, 0.4) 50%,
    rgba(21, 101, 192, 0.25) 80%,
    transparent
  );
  animation: sdcSideLineGlow 4s ease-in-out infinite;
}

/* Left Side - Dot Trail */
.sdc-bg-grid::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  background: rgba(46, 125, 50, 0.5);
  box-shadow:
    0 -45px 0 -2px rgba(46, 125, 50, 0.35),
    0 -90px 0 -3px rgba(46, 125, 50, 0.2),
    0 45px 0 -2px rgba(21, 101, 192, 0.35),
    0 90px 0 -3px rgba(21, 101, 192, 0.2),
    0 0 12px rgba(46, 125, 50, 0.4);
  animation: sdcSideDotsFloat 5s ease-in-out infinite;
}

/* ===== RIGHT SIDE - VERTICAL LINE & DOTS ===== */
.sdc-bg-map-outline::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 180px;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(21, 101, 192, 0.2) 20%,
    rgba(21, 101, 192, 0.35) 50%,
    rgba(0, 137, 123, 0.2) 80%,
    transparent
  );
  animation: sdcSideLineGlow 5s ease-in-out infinite 1s;
  left: auto;
}

/* Right Side - Spinning Diamond */
.sdc-bg-map-outline::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(21, 101, 192, 0.3);
  z-index: 2;
  pointer-events: none;
  left: auto;
  animation: sdcSideDiamondSpin 8s linear infinite;
  box-shadow:
    0 -50px 0 -4px rgba(21, 101, 192, 0.15),
    0 50px 0 -4px rgba(0, 137, 123, 0.15);
}

/* ===== TOP LEFT - L-SHAPED ACCENT ===== */
.sdc-orb-1::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 55px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(46, 125, 50, 0.35),
    rgba(46, 125, 50, 0.05)
  );
  z-index: 1;
  pointer-events: none;
  animation: sdcAccentPulse 4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(46, 125, 50, 0.15);
}

.sdc-orb-1::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 3px;
  height: 55px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(46, 125, 50, 0.35),
    rgba(46, 125, 50, 0.05)
  );
  z-index: 1;
  pointer-events: none;
  animation: sdcAccentPulse 4s ease-in-out infinite 0.5s;
  box-shadow: 0 0 8px rgba(46, 125, 50, 0.15);
}

/* ===== BOTTOM RIGHT - L-SHAPED ACCENT ===== */
.sdc-orb-2::before {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    270deg,
    rgba(21, 101, 192, 0.35),
    rgba(21, 101, 192, 0.05)
  );
  z-index: 1;
  pointer-events: none;
  animation: sdcAccentPulse 4s ease-in-out infinite 1s;
  box-shadow: 0 0 8px rgba(21, 101, 192, 0.15);
}

.sdc-orb-2::after {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 3px;
  height: 55px;
  border-radius: 2px;
  background: linear-gradient(
    0deg,
    rgba(21, 101, 192, 0.35),
    rgba(21, 101, 192, 0.05)
  );
  z-index: 1;
  pointer-events: none;
  animation: sdcAccentPulse 4s ease-in-out infinite 1.5s;
  box-shadow: 0 0 8px rgba(21, 101, 192, 0.15);
}

/* ===== TOP LEFT - CORNER DOT ===== */
.sdc-orb-3::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: sdcCornerDotGlow 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

/* ===== BOTTOM RIGHT - CORNER DOT ===== */
.sdc-orb-3::after {
  content: "";
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  background: #42a5f5;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: sdcCornerDotGlow 2.5s ease-in-out infinite 1.2s;
  box-shadow: 0 0 12px rgba(66, 165, 245, 0.6);
}

/* ===== FLOATING SHAPES - LEFT SIDE ===== */
.sdc-orb-4::before {
  content: "⬡";
  position: absolute;
  left: 50px;
  top: 25%;
  font-size: 40px;
  color: rgba(46, 125, 50, 0.1);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  animation: sdcHexagonFloat 8s ease-in-out infinite;
}

.sdc-orb-4::after {
  content: "◇";
  position: absolute;
  left: 55px;
  bottom: 28%;
  font-size: 24px;
  color: rgba(0, 137, 123, 0.1);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  animation: sdcDiamondCharFloat 7s ease-in-out infinite 2s;
}

/* ===== FLOATING SHAPES - RIGHT SIDE ===== */
.sdc-orb-5::before {
  content: "⬡";
  position: absolute;
  right: 50px;
  bottom: 22%;
  font-size: 32px;
  color: rgba(21, 101, 192, 0.08);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  animation: sdcHexagonFloat 10s ease-in-out infinite 3s;
}

.sdc-orb-5::after {
  content: "+";
  position: absolute;
  right: 55px;
  top: 28%;
  font-size: 28px;
  font-weight: 200;
  color: rgba(245, 124, 0, 0.1);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  animation: sdcCrossCharFloat 6s ease-in-out infinite 1s;
}

/* ===== ALL KEYFRAMES ===== */
@keyframes sdcCornerSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sdcCenterGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
    box-shadow:
      0 0 15px rgba(46, 125, 50, 0.4),
      0 0 35px rgba(46, 125, 50, 0.15);
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
    box-shadow:
      0 0 25px rgba(46, 125, 50, 0.6),
      0 0 50px rgba(46, 125, 50, 0.25),
      0 0 80px rgba(46, 125, 50, 0.1);
  }
}

@keyframes sdcSideLineGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-50%) scaleY(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleY(1.2);
  }
}

@keyframes sdcSideDotsFloat {
  0%,
  100% {
    transform: translateY(-50%);
    opacity: 0.5;
  }
  25% {
    transform: translateY(calc(-50% - 15px));
    opacity: 0.8;
  }
  50% {
    transform: translateY(calc(-50% - 5px));
    opacity: 1;
  }
  75% {
    transform: translateY(calc(-50% + 10px));
    opacity: 0.7;
  }
}

@keyframes sdcSideDiamondSpin {
  0% {
    transform: translateY(-50%) rotate(45deg) scale(1);
  }
  25% {
    transform: translateY(-50%) rotate(135deg) scale(1.2);
  }
  50% {
    transform: translateY(-50%) rotate(225deg) scale(1);
  }
  75% {
    transform: translateY(-50%) rotate(315deg) scale(0.8);
  }
  100% {
    transform: translateY(-50%) rotate(405deg) scale(1);
  }
}

@keyframes sdcAccentPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes sdcCornerDotGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
  }
  50% {
    transform: scale(2);
    opacity: 1;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.7);
  }
}

@keyframes sdcHexagonFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(15deg);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-35px) rotate(0deg);
    opacity: 0.08;
  }
  75% {
    transform: translateY(-15px) rotate(-10deg);
    opacity: 0.14;
  }
}

@keyframes sdcDiamondCharFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-25px) rotate(45deg);
    opacity: 0.18;
  }
}

@keyframes sdcCrossCharFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-12px) rotate(45deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.1;
  }
  75% {
    transform: translateY(-8px) rotate(135deg);
    opacity: 0.13;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .sdc-section-new::before {
    width: 160px;
    height: 160px;
  }
  .sdc-section-new::after {
    width: 120px;
    height: 120px;
    top: 40px;
    right: 40px;
  }
  .sdc-bg-elements::before {
    width: 85px;
    height: 85px;
    top: 58px;
    right: 58px;
  }
  .sdc-bg-elements::after {
    top: 93px;
    right: 93px;
    width: 14px;
    height: 14px;
  }
  .sdc-bg-gradient-1::before {
    width: 160px;
    height: 160px;
  }
  .sdc-bg-gradient-1::after {
    width: 120px;
    height: 120px;
    bottom: 40px;
    left: 40px;
  }
  .sdc-bg-gradient-2::before {
    width: 85px;
    height: 85px;
    bottom: 58px;
    left: 58px;
  }
  .sdc-bg-gradient-2::after {
    bottom: 93px;
    left: 93px;
  }
}

@media (max-width: 991px) {
  .sdc-section-new::before {
    width: 120px;
    height: 120px;
    top: 15px;
    right: 15px;
    border-width: 2px;
  }
  .sdc-section-new::after {
    width: 90px;
    height: 90px;
    top: 30px;
    right: 30px;
  }
  .sdc-bg-elements::before {
    width: 60px;
    height: 60px;
    top: 45px;
    right: 45px;
  }
  .sdc-bg-elements::after {
    top: 68px;
    right: 68px;
    width: 10px;
    height: 10px;
  }
  .sdc-bg-gradient-1::before {
    width: 120px;
    height: 120px;
    bottom: 15px;
    left: 15px;
    border-width: 2px;
  }
  .sdc-bg-gradient-1::after {
    width: 90px;
    height: 90px;
    bottom: 30px;
    left: 30px;
  }
  .sdc-bg-gradient-2::before {
    width: 60px;
    height: 60px;
    bottom: 45px;
    left: 45px;
  }
  .sdc-bg-gradient-2::after {
    bottom: 68px;
    left: 68px;
    width: 10px;
    height: 10px;
  }

  /* Hide side decorations */
  .sdc-bg-grid::before,
  .sdc-bg-grid::after,
  .sdc-bg-map-outline::before,
  .sdc-bg-map-outline::after,
  .sdc-orb-4::before,
  .sdc-orb-4::after,
  .sdc-orb-5::before,
  .sdc-orb-5::after {
    display: none;
  }

  /* Smaller L-accents */
  .sdc-orb-1::before {
    width: 35px;
  }
  .sdc-orb-1::after {
    height: 35px;
  }
  .sdc-orb-2::before {
    width: 35px;
  }
  .sdc-orb-2::after {
    height: 35px;
  }
}

@media (max-width: 767px) {
  .sdc-section-new::before {
    width: 80px;
    height: 80px;
    top: 8px;
    right: 8px;
  }
  .sdc-section-new::after {
    width: 60px;
    height: 60px;
    top: 18px;
    right: 18px;
  }
  .sdc-bg-elements::before {
    display: none;
  }
  .sdc-bg-elements::after {
    top: 40px;
    right: 40px;
    width: 8px;
    height: 8px;
  }
  .sdc-bg-gradient-1::before {
    width: 80px;
    height: 80px;
    bottom: 8px;
    left: 8px;
  }
  .sdc-bg-gradient-1::after {
    width: 60px;
    height: 60px;
    bottom: 18px;
    left: 18px;
  }
  .sdc-bg-gradient-2::before {
    display: none;
  }
  .sdc-bg-gradient-2::after {
    bottom: 40px;
    left: 40px;
    width: 8px;
    height: 8px;
  }

  /* Smaller L-accents */
  .sdc-orb-1::before {
    width: 28px;
    top: 15px;
    left: 15px;
  }
  .sdc-orb-1::after {
    height: 28px;
    top: 15px;
    left: 15px;
  }
  .sdc-orb-2::before {
    width: 28px;
    bottom: 15px;
    right: 15px;
  }
  .sdc-orb-2::after {
    height: 28px;
    bottom: 15px;
    right: 15px;
  }

  .sdc-orb-3::before {
    width: 6px;
    height: 6px;
    top: 13px;
    left: 13px;
  }
  .sdc-orb-3::after {
    width: 6px;
    height: 6px;
    bottom: 13px;
    right: 13px;
  }
}

@media (max-width: 480px) {
  .sdc-section-new::before {
    width: 55px;
    height: 55px;
    top: 5px;
    right: 5px;
  }
  .sdc-section-new::after {
    display: none;
  }
  .sdc-bg-elements::after {
    display: none;
  }
  .sdc-bg-gradient-1::before {
    width: 55px;
    height: 55px;
    bottom: 5px;
    left: 5px;
  }
  .sdc-bg-gradient-1::after {
    display: none;
  }
  .sdc-bg-gradient-2::after {
    display: none;
  }

  /* Hide L-accents and corner dots on very small */
  .sdc-orb-1::before,
  .sdc-orb-1::after,
  .sdc-orb-2::before,
  .sdc-orb-2::after,
  .sdc-orb-3::before,
  .sdc-orb-3::after {
    display: none;
  }
}

/* ==================== GLOBAL FONT UNIFICATION ==================== */
*:not([class*=" fa-"]):not([class*="fas"]):not([class*="far"]):not([class*="fab"]):not([class*="fa-solid"]):not([class*="fa-regular"]):not([class*="fa-brands"]) {
  font-family: "Poppins", sans-serif !important;
}

/* ==================== VOLUNTEER & DONATE - DECORATIVE ELEMENTS ==================== */
.vd-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.vd-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: vdFloat 10s ease-in-out infinite;
}
.vd-orb-1 {
  width: 350px; height: 350px;
  background: rgba(76, 175, 80, 0.12);
  top: -100px; left: 10%;
  animation-delay: 0s;
}
.vd-orb-2 {
  width: 280px; height: 280px;
  background: rgba(33, 150, 243, 0.1);
  bottom: -80px; right: 15%;
  animation-delay: -3s;
}
.vd-orb-3 {
  width: 200px; height: 200px;
  background: rgba(255, 183, 77, 0.08);
  top: 40%; left: 60%;
  animation-delay: -6s;
}
.vd-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  animation: vdPulse 8s ease-in-out infinite;
}
.vd-ring-1 {
  width: 400px; height: 400px;
  top: -120px; right: 10%;
}
.vd-ring-2 {
  width: 300px; height: 300px;
  bottom: 10%; left: 5%;
  animation-delay: -2s;
}
.vd-ring-3 {
  width: 200px; height: 200px;
  top: 20%; right: 35%;
  animation-delay: -4s;
  border-color: rgba(76, 175, 80, 0.08);
}
.vd-particle {
  position: absolute;
  border-radius: 50%;
  animation: vdParticle 6s ease-in-out infinite;
}
.vd-p-1 {
  width: 6px; height: 6px;
  background: rgba(76, 175, 80, 0.4);
  top: 15%; left: 20%;
  animation-delay: 0s;
}
.vd-p-2 {
  width: 4px; height: 4px;
  background: rgba(33, 150, 243, 0.4);
  top: 60%; left: 80%;
  animation-delay: -1s;
}
.vd-p-3 {
  width: 8px; height: 8px;
  background: rgba(255, 183, 77, 0.3);
  top: 30%; left: 70%;
  animation-delay: -2s;
}
.vd-p-4 {
  width: 5px; height: 5px;
  background: rgba(76, 175, 80, 0.3);
  top: 75%; left: 30%;
  animation-delay: -3s;
}
.vd-p-5 {
  width: 7px; height: 7px;
  background: rgba(255, 255, 255, 0.15);
  top: 10%; left: 50%;
  animation-delay: -4s;
}
.vd-p-6 {
  width: 4px; height: 4px;
  background: rgba(33, 150, 243, 0.3);
  top: 50%; left: 15%;
  animation-delay: -5s;
}
@keyframes vdFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -40px) scale(1.05); }
  50% { transform: translate(-30px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}
@keyframes vdPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.6; }
}
@keyframes vdParticle {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(15px, -15px); opacity: 0.8; }
}

/* Enhanced Card Styles */
.cta-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(76,175,80,0.3), transparent 40%, rgba(33,150,243,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.cta-card:hover::before {
  opacity: 1;
}
.cta-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.vd-card-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.15), transparent 70%);
  top: -40px; right: -40px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s;
}
.cta-card:hover .vd-card-glow {
  opacity: 1;
  transform: scale(3);
}
.cta-icon {
  transition: all 0.4s;
}
.cta-card:hover .cta-icon {
  transform: scale(1.2) rotate(-5deg);
}
.btn-cta {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

/* CTA Section Background */
.cta-section {
  position: relative;
  background:
    url("../images/home/cta.jpg") center / cover no-repeat;
  overflow: hidden;
  padding: 60px 0;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 767px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-actions .btn {
    width: 100%;
  }
  .footer-impact-row {
    gap: 20px;
  }
  .footer-impact-item {
    flex: 0 0 calc(50% - 20px);
  }
}

/* ===== SDG SIMPLE CARDS ===== */
.sdg-simple-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  animation: sdgCardIn 0.5s ease-out both;
}

@keyframes sdgCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sdg-simple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sdg-simple-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
}

.sdg-simple-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.sdg-simple-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sdg-simple-body {
  padding: 0 20px 20px;
}

.sdg-simple-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: -12px;
  transition: all 0.4s ease;
  animation: sdgIconFloat 3s ease-in-out infinite;
}

@keyframes sdgIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.sdg-simple-card:hover .sdg-simple-icon {
  animation-play-state: paused;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.sdg-simple-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sdg-simple-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.sdg-simple-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.06), transparent);
  margin-bottom: 12px;
}

.sdg-simple-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sdg-simple-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  border: 1px solid;
}

/* ===== SDG RIGHT SIDE ANIMATIONS ===== */
@keyframes sdgSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sdgSpinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes sdgPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}
@keyframes sdgGlobeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sdgCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes sdgMarkerPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.sdg-orb-marker {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(46,125,50,0.3);
  animation: sdgMarkerPulse 3s ease-in-out infinite;
}
.sdg-orb-marker-sm {
  width: 22px;
  height: 22px;
  font-size: 9px;
  background: #1565c0;
}
.sdg-orb-marker:nth-child(2) { background: #1565c0; animation-delay: 0.5s; }
.sdg-orb-marker:nth-child(3) { background: #00897b; animation-delay: 1s; }
.sdg-orb-marker:nth-child(4) { background: #4caf50; animation-delay: 1.5s; }

.sdg-right-card {
  border-radius: 20px;
  padding: 20px 22px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  animation: sdgCardFloat 4s ease-in-out infinite;
}
.sdg-right-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation-play-state: paused;
}
.sdg-right-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
}
.sdg-right-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sdg-right-card p {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
}
.sdg-right-card-abs {
  position: absolute;
  width: 240px;
}

/* ==================== FOUR PILLARS CARDS ==================== */
.pillar-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.4);
  background: #ffffff;
}
.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -8px var(--pillar-glow);
  border-color: rgba(255,255,255,0.15);
}
.pillar-card-top {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  border-radius: 28px 28px 0 0;
}
.pillar-card-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: 0.08;
  filter: blur(28px);
  transition: all 0.5s;
}
.pillar-card:hover .pillar-card-glow {
  opacity: 0.2;
  transform: scale(1.3);
}
.pillar-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 1.3rem;
  transition: all 0.5s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.pillar-card:hover .pillar-icon {
  transform: rotate(6deg) scale(1.08);
}
.pillar-num {
  border-radius: 12px;
  padding: 0.25rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  border: 1px solid;
  flex-shrink: 0;
}
.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.75rem;
}
.pillar-feats {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
  flex: 1;
}
.pillar-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
}
.pillar-feat i {
  margin-top: 0.15rem;
  color: var(--feat-color);
  flex-shrink: 0;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}
.pillar-link:hover {
  gap: 0.85rem;
  color: #000 !important;
}
.pillar-link i {
  transition: transform 0.3s;
}
.pillar-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .story-float-badge {
    padding: 6px 12px;
    font-size: 11px;
    gap: 6px;
  }
  .story-float-badge strong {
    font-size: 13px !important;
  }
  .story-float-badge span[style*="font-size: 11px"] {
    font-size: 10px !important;
  }
  .story-float-badge[style*="left: 30px"][style*="top: 30px"] {
    top: 12px !important;
    left: 12px !important;
  }
  .story-float-badge[style*="right: 30px"][style*="top: 30px"] {
    top: 12px !important;
    right: 12px !important;
  }
  .story-float-badge[style*="bottom: 30px"][style*="left: 30px"] {
    bottom: 12px !important;
    left: 12px !important;
  }
  .story-float-badge[style*="bottom: 30px"][style*="right: 30px"] {
    bottom: 12px !important;
    right: 12px !important;
  }
}

@media (max-width: 480px) {
  .story-float-badge {
    padding: 4px 10px;
    font-size: 10px;
  }
  .story-float-badge strong {
    font-size: 11px !important;
  }
  .story-float-badge[style*="left: 30px"][style*="top: 30px"] {
    top: 8px !important;
    left: 8px !important;
  }
  .story-float-badge[style*="right: 30px"][style*="top: 30px"] {
    top: 8px !important;
    right: 8px !important;
  }
  .story-float-badge[style*="bottom: 30px"][style*="left: 30px"] {
    bottom: 8px !important;
    left: 8px !important;
  }
  .story-float-badge[style*="bottom: 30px"][style*="right: 30px"] {
    bottom: 8px !important;
    right: 8px !important;
  }
}

/* ==================== DONATE & VOLUNTEER BANNER ==================== */
.dv-banner {
  padding: 0;
  background-image:
    url('../images/element2.png'),
    url('../images/element2.png'),
    linear-gradient(135deg, #f8fffe, #e3f2fd);
  background-position: left center, right center, 0 0;
  background-size: auto 100%, auto 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat, repeat;
  position: relative;
  z-index: 0;
}
.dv-banner .container-fluid > .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}
.dv-banner .dv-card {
  margin: 8px;
}
.dv-banner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2e7d32, #1565c0, #4caf50, #42a5f5, #2e7d32);
  background-size: 400% 400%;
  animation: dvBorderFlow 6s ease infinite;
  z-index: -1;
}
.dv-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 3px solid #2e7d32;
  border-left: 3px solid #1565c0;
  z-index: 1;
}
.dv-banner .dv-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid #2e7d32;
  border-right: 3px solid #1565c0;
  z-index: 1;
}
@keyframes dvBorderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.dv-card {
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}
.dv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.dv-donate {
  background: linear-gradient(135deg, #ffe0b2, #ffcc80);
  border: 1px solid rgba(255, 152, 0, 0.3);
}
.dv-volunteer {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.dv-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.dv-donate .dv-icon { color: #e65100; }
.dv-volunteer .dv-icon { color: #2e7d32; }
.dv-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.dv-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}
.dv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
  text-decoration: none !important;
}
.dv-btn-donate {
  background: linear-gradient(135deg, #ffb74d, #ff9800);
  color: #fff;
  border: none;
}
.dv-btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
  color: #fff;
}
.dv-btn-volunteer {
  background: linear-gradient(135deg, #81c784, #4caf50);
  color: #fff;
  border: none;
}
.dv-btn-volunteer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  color: #fff;
}
.dv-image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  background: #eee;
}
.dv-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.dv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dv-slide.active {
  opacity: 1;
}
.dv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dv-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.dv-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dv-slider-dots span.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
