﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lps-green: #1e6b3e;
  --lps-dark-green: #14532d;
  --lps-leaf: #61a744;
  --lps-blue: #0d6efd;
  --lps-orange: #f59e0b;
  --lps-cream: #f4f9f4;
  --lps-pink: #e83e8c;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fbf9;
  color: #1e3a2f;
  overflow-x: hidden;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomSlow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

/* TOP BAR  */
.top-bar {
  background: #b3123a;
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.top-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 40, 0, 0.06);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  padding: 0;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem !important;    
  text-decoration: none;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.03);
}

/*  Brand Text (Logo ke right)  */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--lps-dark-green, #14532d);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.4px;
  color: var(--lps-leaf, #61a744);
  white-space: nowrap;
  margin-top: 3px;
}

.navbar-brand:hover .brand-name {
  color: var(--lps-green, #1e6b3e);
}

/* NAVBAR LINKS */
.navbar .nav-link {
  color: #1e3a2f;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

/* .navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #b3123a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
} */

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #b3123a;
}

/*  DONATE BUTTON */
.btn-donate {
  background: #b3123a;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid #b3123a;
}

.btn-donate:hover {
  background: #8a0e2d;
  border-color: #8a0e2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(179, 18, 58, 0.5);
}

/*  RESPONSIVE  */
@media (max-width: 1200px) {
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { font-size: 0.62rem; }
}

@media (max-width: 991px) {
  .navbar-brand img { height: 65px; }
  .brand-name { font-size: 1rem; }
  .brand-tagline { font-size: 0.6rem; }
}

@media (max-width: 768px) {
  .brand-tagline { display: none; }   /* Mobile pe tagline hide */
}

@media (max-width: 576px) {
  .navbar-brand img { height: 55px; }
  .brand-name { font-size: 0.9rem; }
}


/*  HERO CAROUSEL */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 88vh;
  min-height: 550px;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoomSlow 8s ease-out forwards;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 15, 0.92) 0%, rgba(10, 30, 15, 0.75) 45%, rgba(10, 30, 15, 0.25) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.slide-tag {
  display: inline-block;
  background: rgb(189 22 63);
  border: 1px solid rgba(97, 167, 68, 0.5);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.slide-title {
  font-family: 'Merriweather', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #b3123a;
  color: #fff;
  border: 2px solid #b3123a;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: #4d8a35;
  border-color: #4d8a35;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(97, 167, 68, 0.6);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: #fff;
  color: #14532d;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(255, 255, 255, 0.3);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  opacity: 1;
}

.hero-carousel .carousel-control-prev {
  left: 25px;
}

.hero-carousel .carousel-control-next {
  right: 25px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Indicators */
.hero-carousel .carousel-indicators {
  bottom: 30px;
  gap: 10px;
}

.hero-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin: 0;
}

.hero-carousel .carousel-indicators button.active {
  background: var(--lps-leaf);
  border-color: #fff;
  width: 35px;
  border-radius: 10px;
}

.quick-highlights {
  background: #fff;
  padding: 3.5rem 0;
  border-bottom: 1px solid #e8f0e8;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: #f4fcf2;
  transform: translateY(-5px);
}

.highlight-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--lps-green);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background: var(--lps-green);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.highlight-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lps-green);
  margin-bottom: 0.3rem;
}

.highlight-item p {
  color: #5a7a65;
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #e1f0db;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.key-card {
  background: white;
  padding: 1.6rem 1.2rem;
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid #e2f0df;
}

.key-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -10px rgba(30, 107, 62, 0.15);
  border-color: #b8d9b0;
}

.key-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lps-dark-green);
  margin: 0;
  line-height: 1.4;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--lps-green);
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  color: #2c4a3b;
  font-weight: 500;
}

.highlight-box {
  background: white;
  border-radius: 30px;
  padding: 2rem 1.8rem;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #deecdb;
}

.list-areas li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #cde0cb;
  font-weight: 500;
  color: #1e4a2c;
  transition: 0.2s;
}

.list-areas li i {
  color: var(--lps-leaf);
  width: 24px;
}

.list-areas li:hover {
  padding-left: 8px;
  background: #f4fcf2;
  border-radius: 8px;
}

.btn-outline-lps {
  border: 2px solid var(--lps-green);
  color: var(--lps-green);
  font-weight: 500;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  transition: 0.3s;
}

.btn-outline-lps:hover {
  background: var(--lps-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 18px -8px rgba(30, 107, 62, 0.4);
}

.cta-section {
  background: #6d6e6e;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 167, 68, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.2rem;
}

.btn-cta {
  background: var(--lps-leaf);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--lps-leaf);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #4d8a35;
  border-color: #4d8a35;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(97, 167, 68, 0.6);
}

/* FOOTER Section  */

.contact-footer {
  position: relative;
  background: linear-gradient(180deg, #0f2b1d 0%, #0a1f14 100%);
  color: #d9ead9;
  padding: 0 0 1.5rem;
  border-top: 8px solid var(--lps-leaf);
  overflow: hidden;
}

/* Decorative wave at top */
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.contact-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 167, 68, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 107, 62, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-footer .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.footer-main {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(184, 224, 176, 0.15);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-brand:hover .footer-logo {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 10px 25px -8px rgba(97, 167, 68, 0.5);
}

.footer-brand-text h5 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 3px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.footer-brand-text span {
  font-size: 0.7rem;
  color: var(--lps-leaf);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.footer-about {
  color: #a8c4b0;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 224, 176, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8e0b0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lps-leaf);
  transform: scale(0);
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
  z-index: -1;
}

.footer-social-btn:hover {
  color: #fff;
  transform: translateY(-5px) rotate(-6deg);
  border-color: transparent;
  box-shadow: 0 12px 22px -8px rgba(97, 167, 68, 0.5);
}

.footer-social-btn:hover::before {
  transform: scale(1);
}

/* Brand colors on hover */
.footer-social-btn.facebook:hover::before { background: #1877f2; }
.footer-social-btn.twitter:hover::before { background: #1da1f2; }
.footer-social-btn.instagram:hover::before { 
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
}
.footer-social-btn.linkedin:hover::before { background: #0077b5; }
.footer-social-btn.youtube:hover::before { background: #ff0000; }
.footer-social-btn.whatsapp:hover::before { background: #25d366; }

.footer-heading {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading i {
  color: var(--lps-leaf);
  font-size: 0.95rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--lps-leaf), transparent);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links li a {
  color: #a8c4b0;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--lps-leaf);
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

.footer-focus li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #a8c4b0;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-focus li i {
  color: var(--lps-leaf);
  font-size: 0.85rem;
  width: 18px;
  transition: transform 0.3s ease;
}

.footer-focus li:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-focus li:hover i {
  transform: scale(1.2) rotate(-8deg);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(97, 167, 68, 0.15);
  border: 1px solid rgba(97, 167, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-leaf);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
  background: var(--lps-leaf);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 18px -6px rgba(97, 167, 68, 0.5);
}

.footer-contact-list li strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-list li p {
  color: #a8c4b0;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-footer a {
  color: #b8e0b0;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.contact-footer a:hover {
  color: #fff;
}

.contact-footer .footer-contact-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lps-leaf);
  transition: width 0.3s ease;
}

.contact-footer .footer-contact-list a:hover::after {
  width: 100%;
}

.footer-newsletter {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(135deg, rgba(97, 167, 68, 0.12), rgba(30, 107, 62, 0.08));
  border: 1px solid rgba(97, 167, 68, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.newsletter-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter-text i {
  font-size: 1.8rem;
  color: var(--lps-leaf);
  animation: floatLeaf 4s ease-in-out infinite;
}

.newsletter-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2px;
  font-family: 'Merriweather', serif;
}

.newsletter-text p {
  color: #a8c4b0;
  font-size: 0.82rem;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 224, 176, 0.2);
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #7a9985;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--lps-leaf);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(97, 167, 68, 0.15);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(97, 167, 68, 0.6);
}

.newsletter-form button i {
  transition: transform 0.3s ease;
}

.newsletter-form button:hover i {
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-bottom p {
  color: #8ba396;
  font-size: 0.85rem;
}

.footer-bottom p strong {
  color: #b8e0b0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
}

.footer-bottom-links li a {
  color: #8ba396;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-links li a:hover {
  color: var(--lps-leaf);
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 10px 25px -8px rgba(30, 107, 62, 0.5);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 30px -8px rgba(30, 107, 62, 0.6);
}


@media (max-width: 991px) {
  .footer-main { padding-bottom: 2rem; }
  .footer-logo { height: 60px; }
  .footer-brand-text h5 { font-size: 1rem; }
}

@media (max-width: 768px) {
  .contact-footer .container { padding-top: 2rem; }
  .footer-main { text-align: center; }
  .footer-heading {
    justify-content: center;
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-links li a {
    justify-content: center;
  }
  .footer-focus li {
    justify-content: center;
  }
  .footer-contact-list li {
    justify-content: center;
    text-align: left;
  }
  .newsletter-text {
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  .newsletter-form {
    justify-content: center;
  }
  .newsletter-form input {
    text-align: center;
  }
  .footer-bottom { text-align: center; }
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer-logo { height: 55px; }
  .footer-brand-text h5 { font-size: 0.92rem; }
  .footer-brand-text span { font-size: 0.65rem; }
  .footer-social-btn { width: 38px; height: 38px; font-size: 0.85rem; }
  .newsletter-text i { font-size: 1.4rem; }
  .newsletter-text strong { font-size: 0.9rem; }
  .footer-bottom-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-text {
    font-size: 1rem;
  }

  .hero-carousel .carousel-item {
    height: 75vh;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2rem;
  }

  .hero-carousel .carousel-item {
    height: 70vh;
    min-height: 450px;
  }

  .slide-overlay {
    background: linear-gradient(180deg, rgba(10, 30, 15, 0.5) 0%, rgba(10, 30, 15, 0.92) 100%);
  }

  .slide-content {
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .highlight-box {
    padding: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.7rem;
  }

  .top-bar {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .slide-title {
    font-size: 1.6rem;
  }

  .slide-text {
    font-size: 0.9rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
  }

  .hero-carousel .carousel-item {
    height: 80vh;
    min-height: 480px;
  }

  .slide-tag {
    font-size: 0.7rem;
    padding: 4px 14px;
  }

  .highlight-item h3 {
    font-size: 1.8rem;
  }
}



/* About Pages */

.about-hero {
  position: relative;
  background-image: url('../image/banner3.jpeg');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(61 68 63 / 94%) 0%, rgb(55 82 62 / 78%) 50%, rgb(65 94 72 / 35%) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 1rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.about-breadcrumb .breadcrumb-item a {
  color: #b8e0b0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.about-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.about-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.about-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
  padding: 0 0.6rem;
}

/* ================= ABOUT SUBTITLE ================= */
.about-subtitle {
  display: inline-block;
  color: var(--lps-leaf);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #f9fbf9;
  padding: 5rem 0;
}

.about-lead {
  font-size: 1.05rem;
  color: #2c4a3b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: #4a6b56;
  line-height: 1.8;
}

/* ---------- Image Collage ---------- */
.about-image-wrapper {
  position: relative;
  padding: 2rem 1rem 4rem 1rem;
  min-height: 480px;
}

.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(30, 107, 62, 0.25);
  width: 88%;
  position: relative;
  z-index: 1;
}

.about-image-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-image-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 15px 30px -10px rgba(30, 107, 62, 0.3);
  z-index: 2;
  animation: pulseSoft 4s ease-in-out infinite;
}

.about-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ---------- Experience Badge ---------- */
.about-experience-badge {
  position: absolute;
  top: 0;
  right: 5%;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px -8px rgba(30, 107, 62, 0.5);
  z-index: 3;
  animation: pulseSoft 3s ease-in-out infinite;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
  padding: 0 8px;
}

/* ---------- Floating Card ---------- */
.about-floating-card {
  position: absolute;
  bottom: 2rem;
  left: 0;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--lps-leaf);
  z-index: 3;
  animation: floatLeaf 5s ease-in-out infinite;
}

.about-floating-card i {
  font-size: 1.8rem;
  color: var(--lps-green);
}

.about-floating-card strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.9rem;
}

.about-floating-card small {
  color: #6b8574;
  font-size: 0.75rem;
}

/* ---------- Feature List ---------- */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2f0df;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 10px 20px -10px rgba(30, 107, 62, 0.2);
}

.feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.about-feature-item strong {
  color: var(--lps-dark-green);
  font-size: 0.95rem;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ================= VISION SECTION ================= */
.vision-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.vision-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lps-green), var(--lps-leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: #b8d9b0;
}

.vision-card.featured {
  background: linear-gradient(135deg, var(--lps-dark-green), var(--lps-green));
  color: #fff;
  border: none;
}

.vision-card.featured h4,
.vision-card.featured p {
  color: #fff;
}

.vision-card.featured .vision-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #b8e0b0;
}

.vision-card.featured::before {
  background: var(--lps-leaf);
  transform: scaleX(1);
}

.vision-icon {
  width: 64px;
  height: 64px;
  background: #e1f0db;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
  transform: rotate(-8deg) scale(1.08);
}

.vision-card h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.vision-card p {
  color: #4a6b56;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ================= VALUES SECTION ================= */
.values-section {
  background: #fff;
  padding: 5rem 0;
}

.value-card {
  background: #f9fbf9;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  border: 1px solid #e2f0df;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -15px rgba(30, 107, 62, 0.15);
  border-color: var(--lps-leaf);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--lps-green);
  color: #fff;
  transform: scale(1.1);
}

.value-card h5 {
  font-weight: 600;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: #6b8574;
}

/* ================= STATS SECTION ================= */
.stats-section {
  background: linear-gradient(135deg, #14532d 0%, #1e6b3e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 167, 68, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.stat-box {
  padding: 1.5rem 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 2rem;
  color: var(--lps-leaf);
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.15) rotate(-5deg);
}

.stat-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0.5rem 0 0.3rem;
  line-height: 1;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* ================= RESPONSIVE (ABOUT PAGE) ================= */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 2.3rem;
  }

  .about-image-wrapper {
    min-height: 420px;
    margin-bottom: 2rem;
  }

  .about-image-main img {
    height: 320px;
  }

  .about-image-secondary img {
    height: 160px;
  }

  .about-experience-badge {
    width: 90px;
    height: 90px;
  }

  .badge-number {
    font-size: 1.4rem;
  }

  .badge-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 0 4rem;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }

  .about-section,
  .vision-section,
  .values-section {
    padding: 3.5rem 0;
  }

  .about-image-wrapper {
    min-height: auto;
    padding: 1rem 0 4rem 0;
  }

  .about-image-main {
    width: 100%;
  }

  .about-image-main img {
    height: 260px;
  }

  .about-image-secondary {
    width: 60%;
    right: 0;
  }

  .about-image-secondary img {
    height: 130px;
  }

  .about-floating-card {
    padding: 0.7rem 1rem;
    bottom: 1rem;
  }

  .about-floating-card i {
    font-size: 1.4rem;
  }

  .about-floating-card strong {
    font-size: 0.8rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 4rem 0 3rem;
  }

  .about-hero-title {
    font-size: 1.6rem;
  }

  .about-image-main img {
    height: 220px;
  }

  .about-experience-badge {
    width: 80px;
    height: 80px;
    right: 2%;
  }

  .badge-number {
    font-size: 1.2rem;
  }

  .stat-box h3 {
    font-size: 1.7rem;
  }
}

/* Areas */

.areas-hero {
  position: relative;
  background-image: url('../image/banner2.jpeg');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.areas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(61 68 63 / 94%) 0%, rgb(55 82 62 / 78%) 50%, rgb(65 94 72 / 35%) 100%);
}

.areas-hero-content {
  position: relative;
  z-index: 2;
}

.areas-intro {
  background: #f9fbf9;
  padding: 4rem 0 2rem;
}

.areas-section {
  background: #f9fbf9;
  padding: 3rem 0 5rem;
}

.area-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.6rem 1.8rem;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lps-green), var(--lps-leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: #b8d9b0;
}

.area-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
}

.area-card:hover .area-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.area-number {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #e6f1e2;
  line-height: 1;
  transition: color 0.4s ease;
  z-index: 0;
}

.area-card:hover .area-number {
  color: #d0e6c8;
}

.area-card h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.area-card p {
  color: #4a6b56;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.area-link {
  display: inline-flex;
  align-items: center;
  color: var(--lps-green);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.area-link i {
  transition: transform 0.3s ease;
}

.area-link:hover {
  color: var(--lps-leaf);
}

.area-link:hover i {
  transform: translateX(5px);
}

.initiatives-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.initiative-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.initiative-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 45px -18px rgba(30, 107, 62, 0.22);
  border-color: #b8d9b0;
}

.initiative-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.initiative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.initiative-card:hover .initiative-image img {
  transform: scale(1.08);
}

.initiative-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -4px rgba(30, 107, 62, 0.5);
}

.initiative-body {
  padding: 1.6rem 1.5rem 1.8rem;
}

.initiative-body h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.initiative-body p {
  color: #4a6b56;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.initiative-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.initiative-tags span {
  background: #eaf5e7;
  color: var(--lps-green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.initiative-card:hover .initiative-tags span {
  background: #d8ecd3;
}

.programmes-section {
  background: #fff;
  padding: 5rem 0;
}

.programme-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: #f9fbf9;
  border-radius: 16px;
  border: 1px solid #e2f0df;
  height: 100%;
  transition: all 0.3s ease;
}

.programme-item:hover {
  background: #fff;
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 12px 25px -12px rgba(30, 107, 62, 0.2);
}

.programme-item i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  color: var(--lps-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.programme-item:hover i {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.programme-item strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.programme-item p {
  color: #6b8574;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .areas-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .area-number {
    font-size: 1.9rem;
  }

  .initiative-image {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .areas-hero {
    padding: 5rem 0 4rem;
  }

  .areas-intro {
    padding: 3rem 0 1rem;
  }

  .areas-section {
    padding: 2rem 0 3.5rem;
  }

  .initiatives-section,
  .programmes-section {
    padding: 3.5rem 0;
  }

  .area-card {
    padding: 1.6rem 1.3rem;
  }

  .area-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .area-number {
    font-size: 1.7rem;
    top: 1.2rem;
    right: 1.3rem;
  }

  .initiative-image {
    height: 170px;
  }

  .initiative-body {
    padding: 1.3rem 1.2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .areas-hero {
    padding: 4rem 0 3rem;
  }

  .area-card h4 {
    font-size: 1rem;
  }

  .area-card p {
    font-size: 0.88rem;
  }

  .initiative-body h4 {
    font-size: 1.05rem;
  }

  .initiative-body p {
    font-size: 0.88rem;
  }

  .programme-item {
    padding: 0.9rem 1rem;
  }
}


/* Experience */
.experience-hero {
  position: relative;
  background-image: url('../image/experience.png');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.experience-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(61 68 63 / 94%) 0%, rgb(55 82 62 / 78%) 50%, rgb(65 94 72 / 35%) 100%);
}

.experience-hero-content {
  position: relative;
  z-index: 2;
}

.experience-intro {
  background: #f9fbf9;
  padding: 4rem 0 2rem;
}

.major-initiatives {
  background: #f9fbf9;
  padding: 3rem 0 5rem;
}

.initiative-item {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.initiative-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--lps-green), var(--lps-leaf));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.initiative-item:hover::before {
  transform: scaleY(1);
}

.initiative-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: #b8d9b0;
}

.initiative-item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.4rem;
  transition: all 0.4s ease;
}

.initiative-item:hover .initiative-item-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.initiative-item-content {
  flex: 1;
  position: relative;
}

.initiative-item-number {
  position: absolute;
  top: -8px;
  right: 0;
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #e6f1e2;
  line-height: 1;
  transition: color 0.4s ease;
}

.initiative-item:hover .initiative-item-number {
  color: #d0e6c8;
}

.initiative-item h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  padding-right: 45px;
}

.initiative-item p {
  color: #4a6b56;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.jal-jeevan-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.jal-jeevan-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 45px -18px rgba(30, 107, 62, 0.3);
}

.jal-jeevan-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.jal-jeevan-image:hover img {
  transform: scale(1.05);
}

.jal-jeevan-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 4px solid var(--lps-leaf);
  box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.15);
  animation: floatLeaf 5s ease-in-out infinite;
}

.jal-jeevan-badge i {
  font-size: 1.8rem;
  color: var(--lps-green);
}

.jal-jeevan-badge strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.88rem;
}

.jal-jeevan-badge small {
  color: #6b8574;
  font-size: 0.72rem;
}

/* Jal Jeevan Stats */
.jal-jeevan-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.jal-stat {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2f0df;
  min-width: 160px;
  transition: all 0.3s ease;
}

.jal-stat:hover {
  transform: translateY(-4px);
  border-color: var(--lps-leaf);
  box-shadow: 0 12px 25px -12px rgba(30, 107, 62, 0.2);
}

.jal-stat-number {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--lps-green);
  line-height: 1;
}

.jal-stat-label {
  font-size: 0.82rem;
  color: #6b8574;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* Jal Jeevan List */
.jal-jeevan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.jal-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2f0df;
  font-size: 0.85rem;
  color: #2c4a3b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.jal-list-item:hover {
  background: #f4fcf2;
  border-color: var(--lps-leaf);
  transform: translateX(4px);
}

.jal-list-item i {
  color: var(--lps-leaf);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cultural-section {
  background: #fff;
  padding: 5rem 0;
}

.cultural-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 45px -18px rgba(30, 107, 62, 0.3);
}

.cultural-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cultural-image:hover img {
  transform: scale(1.05);
}

.cultural-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 4px solid var(--lps-orange);
  box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.15);
  animation: floatLeaf 5s ease-in-out infinite;
}

.cultural-badge i {
  font-size: 1.8rem;
  color: var(--lps-orange);
}

.cultural-badge strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.88rem;
}

.cultural-badge small {
  color: #6b8574;
  font-size: 0.72rem;
}

.cultural-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cultural-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2f0df;
  transition: all 0.3s ease;
}

.cultural-highlight:hover {
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 10px 20px -10px rgba(30, 107, 62, 0.2);
}

.cultural-highlight i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cultural-highlight:hover i {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.cultural-highlight strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.92rem;
}

.districts-section {
  background: #f9fbf9;
  padding: 5rem 0;
}

.district-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.district-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: var(--lps-leaf);
}

.district-card i {
  font-size: 2rem;
  color: var(--lps-leaf);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.district-card:hover i {
  transform: scale(1.15) rotate(-8deg);
  color: var(--lps-green);
}

.district-card h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.district-card p {
  color: #4a6b56;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.strength-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.strength-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.strength-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2f0df;
  transition: all 0.3s ease;
}

.strength-feature:hover {
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 10px 20px -10px rgba(30, 107, 62, 0.2);
}

.strength-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.strength-feature:hover .strength-feature-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.strength-feature strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.92rem;
}

/* Strength Stats Grid */
.strength-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.strength-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.strength-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: var(--lps-leaf);
}

.strength-stat-card i {
  font-size: 1.8rem;
  color: var(--lps-leaf);
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
}

.strength-stat-card:hover i {
  transform: scale(1.15) rotate(-8deg);
  color: var(--lps-green);
}

.strength-stat-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lps-green);
  margin: 0.3rem 0;
  line-height: 1;
}

.strength-stat-card p {
  color: #6b8574;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

.expertise-section {
  background: #fff;
  padding: 5rem 0;
}

.expertise-card {
  background: #f9fbf9;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  border: 1px solid #e2f0df;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lps-green), var(--lps-leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.15);
  border-color: var(--lps-leaf);
}

.expertise-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.expertise-card h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  color: #4a6b56;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .experience-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .jal-jeevan-image img,
  .cultural-image img {
    height: 380px;
  }

  .strength-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .experience-hero {
    padding: 5rem 0 4rem;
  }

  .experience-intro {
    padding: 3rem 0 1rem;
  }

  .major-initiatives {
    padding: 2rem 0 3.5rem;
  }

  .jal-jeevan-section,
  .cultural-section,
  .districts-section,
  .strength-section,
  .expertise-section {
    padding: 3.5rem 0;
  }

  .initiative-item {
    padding: 1.5rem 1.2rem;
    gap: 1rem;
  }

  .initiative-item-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .initiative-item-number {
    font-size: 1.6rem;
  }

  .initiative-item h5 {
    font-size: 0.95rem;
    padding-right: 40px;
  }

  .jal-jeevan-image img,
  .cultural-image img {
    height: 300px;
  }

  .jal-jeevan-list {
    grid-template-columns: 1fr;
  }

  .jal-jeevan-stats {
    gap: 1rem;
  }

  .jal-stat {
    min-width: 130px;
    padding: 0.8rem 1.2rem;
  }

  .jal-stat-number {
    font-size: 1.5rem;
  }

  .strength-stat-card h3 {
    font-size: 1.8rem;
  }

  .strength-stat-card i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .experience-hero {
    padding: 4rem 0 3rem;
  }

  .initiative-item {
    flex-direction: column;
    gap: 0.8rem;
  }

  .initiative-item-number {
    font-size: 1.5rem;
    top: -4px;
  }

  .initiative-item h5 {
    padding-right: 0;
  }

  .jal-jeevan-image img,
  .cultural-image img {
    height: 240px;
  }

  .jal-jeevan-badge,
  .cultural-badge {
    padding: 0.6rem 0.9rem;
  }

  .jal-jeevan-badge i,
  .cultural-badge i {
    font-size: 1.4rem;
  }

  .jal-jeevan-badge strong,
  .cultural-badge strong {
    font-size: 0.78rem;
  }

  .jal-jeevan-badge small,
  .cultural-badge small {
    font-size: 0.65rem;
  }

  .strength-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .strength-stat-card {
    padding: 1.3rem 1rem;
  }

  .strength-stat-card h3 {
    font-size: 1.5rem;
  }

  .strength-stat-card i {
    font-size: 1.3rem;
  }

  .strength-stat-card p {
    font-size: 0.75rem;
  }
}



/* Contact */

.contact-hero {
  position: relative;
  background-image: url('../image/area.jpeg');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(61 68 63 / 94%) 0%, rgb(55 82 62 / 78%) 50%, rgb(65 94 72 / 35%) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-info-section {
  background: #f9fbf9;
  padding: 5rem 0 3rem;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lps-green), var(--lps-leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: var(--lps-leaf);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.contact-card h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.contact-card p {
  color: #4a6b56;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.contact-card p a {
  color: var(--lps-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-card p a:hover {
  color: var(--lps-leaf);
  text-decoration: underline;
}

.contact-form-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  border: 1px solid #e2f0df;
  box-shadow: 0 20px 45px -20px rgba(30, 107, 62, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--lps-green), var(--lps-leaf));
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--lps-dark-green);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-form .form-label i {
  color: var(--lps-leaf);
  font-size: 0.85rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e2f0df;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: #1e3a2f;
  background: #f9fbf9;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.contact-form .form-control::placeholder {
  color: #9ab0a3;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--lps-leaf);
  box-shadow: 0 0 0 4px rgba(97, 167, 68, 0.12);
  background: #fff;
  outline: none;
}

.contact-form .form-control:hover,
.contact-form .form-select:hover {
  border-color: #b8d9b0;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  padding: 0.9rem 2.4rem;
  font-size: 0.95rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(97, 167, 68, 0.6);
}

/* Form Status */
.form-status {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  display: none;
}

.form-status.success {
  display: block;
  background: #e1f0db;
  color: var(--lps-green);
  border-left: 4px solid var(--lps-leaf);
}

.form-status.error {
  display: block;
  background: #fde8e8;
  color: #b3123a;
  border-left: 4px solid #b3123a;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-side-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-side-card:hover {
  border-color: #b8d9b0;
  box-shadow: 0 18px 35px -15px rgba(30, 107, 62, 0.18);
}

.contact-side-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-side-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-side-card:hover .contact-side-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.contact-side-header h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin: 0;
}

.office-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #e2f0df;
  font-size: 0.88rem;
}

.office-hours li:last-child {
  border-bottom: none;
}

.office-hours li span {
  color: #4a6b56;
}

.office-hours li strong {
  color: var(--lps-dark-green);
  font-weight: 600;
}

.office-hours li strong.closed {
  color: #b3123a;
}

/* Quick Contact */
.quick-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: #f9fbf9;
  border-radius: 14px;
  border: 1px solid #e2f0df;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  background: #fff;
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 10px 20px -10px rgba(30, 107, 62, 0.2);
}

.quick-contact-item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.quick-contact-item:hover .quick-contact-item-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.quick-contact-item strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.9rem;
}

.quick-contact-item small {
  color: #6b8574;
  font-size: 0.78rem;
}

.quick-contact-arrow {
  margin-left: auto;
  color: var(--lps-leaf);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.quick-contact-item:hover .quick-contact-arrow {
  transform: translateX(4px);
}

/* Social */
.contact-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f9fbf9;
  border: 1px solid #e2f0df;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px) rotate(-6deg);
  box-shadow: 0 12px 22px -8px rgba(30, 107, 62, 0.4);
}

.map-section {
  background: #f9fbf9;
  padding: 5rem 0 0;
}

.map-header {
  margin-bottom: 3rem;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 -10px 30px -15px rgba(30, 107, 62, 0.15);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.9) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
  filter: saturate(1.1) contrast(1);
}

/* Map Info Card Overlay */
.map-info-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  max-width: 340px;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--lps-leaf);
  z-index: 2;
  animation: fadeUp 0.9s ease forwards;
}

.map-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  animation: pulseSoft 3s ease-in-out infinite;
}

.map-info-text strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.map-info-text p {
  color: #4a6b56;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -8px rgba(30, 107, 62, 0.5);
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .map-info-card {
    top: 20px;
    left: 20px;
    max-width: 300px;
    padding: 1.3rem 1.2rem;
  }

  .map-wrapper {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 5rem 0 4rem;
  }

  .contact-info-section {
    padding: 3.5rem 0 2rem;
  }

  .contact-form-section {
    padding: 3.5rem 0;
  }

  .map-section {
    padding: 3.5rem 0 0;
  }

  .contact-form-wrapper {
    padding: 1.8rem 1.3rem;
    border-radius: 22px;
  }

  .contact-card {
    padding: 1.6rem 1.2rem;
  }

  .contact-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .map-wrapper {
    height: 380px;
  }

  .map-info-card {
    position: relative;
    top: 0;
    left: 0;
    margin: -80px auto 0;
    max-width: 92%;
    transform: translateY(-50%);
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 4rem 0 3rem;
  }

  .contact-form-wrapper::before {
    width: 4px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .map-wrapper {
    height: 340px;
  }

  .map-info-card {
    padding: 1.2rem 1rem;
    margin: -60px auto 0;
  }

  .map-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .map-info-text strong {
    font-size: 0.95rem;
  }

  .map-info-text p {
    font-size: 0.8rem;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}


/* Donate */

.donate-hero {
  position: relative;
  background-image: url('../image/about1.jpeg');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.donate-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(61 68 63 / 94%) 0%, rgb(55 82 62 / 78%) 50%, rgb(65 94 72 / 35%) 100%);
}

.donate-hero-content {
  position: relative;
  z-index: 2;
}


.donate-intro {
  background: #f9fbf9;
  padding: 4rem 0 2rem;
}

.donation-impact {
  background: #f9fbf9;
  padding: 3rem 0 5rem;
}

.impact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lps-green), var(--lps-leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.impact-card:hover::before {
  transform: scaleX(1);
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px -15px rgba(30, 107, 62, 0.2);
  border-color: var(--lps-leaf);
}

.impact-card.featured {
  background: linear-gradient(135deg, var(--lps-dark-green), var(--lps-green));
  border: none;
  color: #fff;
}

.impact-card.featured::before {
  background: var(--lps-leaf);
  transform: scaleX(1);
}

.impact-card.featured h5,
.impact-card.featured p {
  color: #fff;
}

.impact-card.featured .impact-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #b8e0b0;
}

.impact-card.featured .impact-amount {
  color: #b8e0b0;
}

.impact-popular {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--lps-orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.impact-amount {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lps-green);
  line-height: 1;
  margin-bottom: 1rem;
}

.impact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
  transform: rotate(-8deg) scale(1.08);
}

.impact-card h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.impact-card p {
  color: #4a6b56;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.donation-form-section {
  background: linear-gradient(120deg, #f0f8ee, #ffffff);
  padding: 5rem 0;
}

.donation-form-wrapper {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  border: 1px solid #e2f0df;
  box-shadow: 0 20px 45px -20px rgba(30, 107, 62, 0.15);
  position: relative;
  overflow: hidden;
}

.donation-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--lps-green), var(--lps-leaf));
}

/* Amount Selection */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.amount-btn {
  background: #f9fbf9;
  border: 2px solid #e2f0df;
  border-radius: 14px;
  padding: 1rem 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lps-dark-green);
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover {
  border-color: var(--lps-leaf);
  background: #f4fcf2;
  transform: translateY(-3px);
}

.amount-btn.active {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px -10px rgba(30, 107, 62, 0.45);
}

/* Custom Amount Input */
.input-group-custom {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 0.7rem;
  color: var(--lps-green);
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.input-group-custom .form-control {
  padding-left: 2.4rem;
}

/* Form Fields */
.donation-form .form-group {
  margin-bottom: 0;
}

.donation-form .form-label {
  font-weight: 600;
  color: var(--lps-dark-green);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.donation-form .form-label i {
  color: var(--lps-leaf);
  font-size: 0.85rem;
}

.donation-form .form-control {
  border: 2px solid #e2f0df;
  border-radius: 14px;
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  color: #1e3a2f;
  background: #f9fbf9;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.donation-form .form-control::placeholder {
  color: #9ab0a3;
}

.donation-form .form-control:focus {
  border-color: var(--lps-leaf);
  box-shadow: 0 0 0 4px rgba(97, 167, 68, 0.12);
  background: #fff;
  outline: none;
}

/* Payment Methods */
.payment-methods {
  margin-top: 1rem;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.payment-option {
  cursor: pointer;
  position: relative;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.6rem;
  background: #f9fbf9;
  border: 2px solid #e2f0df;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lps-dark-green);
  transition: all 0.3s ease;
}

.payment-option-content i {
  font-size: 1.2rem;
  color: var(--lps-green);
  transition: all 0.3s ease;
}

.payment-option:hover .payment-option-content {
  border-color: var(--lps-leaf);
  background: #f4fcf2;
}

.payment-option input:checked+.payment-option-content {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px -10px rgba(30, 107, 62, 0.4);
}

.payment-option input:checked+.payment-option-content i {
  color: #fff;
}

/* Submit Button */
.btn-donate-submit {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-donate-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(97, 167, 68, 0.6);
}

.donation-note {
  color: #6b8574;
  font-size: 0.82rem;
  margin: 0;
}

.donation-note i {
  color: var(--lps-leaf);
}

.donation-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.donation-side-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  border: 1px solid #e2f0df;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.donation-side-card:hover {
  border-color: #b8d9b0;
  box-shadow: 0 18px 35px -15px rgba(30, 107, 62, 0.18);
}

.donation-side-card.featured {
  background: linear-gradient(135deg, var(--lps-dark-green), var(--lps-green));
  color: #fff;
  border: none;
  text-align: center;
}

.donation-side-card.featured h5 {
  color: #fff;
}

.donation-side-icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8e0b0;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  animation: pulseSoft 3s ease-in-out infinite;
}

/* Why Donate */
.why-donate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.why-donate-list li {
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.why-donate-list li i {
  color: var(--lps-leaf);
  font-size: 0.95rem;
}

/* Bank Details */
.donation-side-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.donation-side-header-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.donation-side-card:hover .donation-side-header-icon {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.donation-side-header h5 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--lps-dark-green);
  font-size: 1.05rem;
  margin: 0;
}

.bank-details {
  display: flex;
  flex-direction: column;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #e2f0df;
  font-size: 0.88rem;
}

.bank-detail-row:last-child {
  border-bottom: none;
}

.bank-detail-row span {
  color: #6b8574;
}

.bank-detail-row strong {
  color: var(--lps-dark-green);
  font-weight: 600;
  text-align: right;
}

.bank-note {
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  background: #f4fcf2;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--lps-green);
  border-left: 3px solid var(--lps-leaf);
}

/* Other Ways */
.other-ways {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.other-way-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: #f9fbf9;
  border-radius: 14px;
  border: 1px solid #e2f0df;
  transition: all 0.3s ease;
}

.other-way-item:hover {
  background: #fff;
  transform: translateX(6px);
  border-color: var(--lps-leaf);
  box-shadow: 0 10px 20px -10px rgba(30, 107, 62, 0.2);
}

.other-way-item>i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e1f0db, #c8e0c0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lps-green);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.other-way-item:hover>i {
  background: linear-gradient(135deg, var(--lps-green), var(--lps-leaf));
  color: #fff;
  transform: rotate(-6deg);
}

.other-way-item strong {
  display: block;
  color: var(--lps-dark-green);
  font-size: 0.88rem;
}

.other-way-item a {
  color: var(--lps-green);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}

.other-way-item a:hover {
  color: var(--lps-leaf);
  text-decoration: underline;
}

.donation-stats-section {
  background: linear-gradient(135deg, #14532d 0%, #1e6b3e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.donation-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 167, 68, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.donation-stats-section .about-subtitle {
  color: #b8e0b0;
}

.donation-stats-section .section-title {
  color: #fff;
}

.donation-stat-box {
  padding: 1.5rem 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.donation-stat-box .stat-icon {
  font-size: 2rem;
  color: var(--lps-leaf);
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.donation-stat-box:hover .stat-icon {
  transform: scale(1.15) rotate(-5deg);
}

.donation-stat-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0.5rem 0 0.3rem;
  line-height: 1;
}

.donation-stat-box p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.donation-faq-section {
  background: #f9fbf9;
  padding: 5rem 0;
}

.donation-accordion .accordion-item {
  border: 1px solid #e2f0df;
  border-radius: 18px !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.donation-accordion .accordion-item:hover {
  border-color: #b8d9b0;
  box-shadow: 0 12px 28px -14px rgba(30, 107, 62, 0.18);
}

.donation-accordion .accordion-button {
  background: #fff;
  color: var(--lps-dark-green);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.2rem 1.4rem;
  border: none;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.donation-accordion .accordion-button i {
  color: var(--lps-leaf);
}

.donation-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f4fcf2, #eaf5e7);
  color: var(--lps-green);
}

.donation-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.donation-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e6b3e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.donation-accordion .accordion-body {
  color: #4a6b56;
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 1.4rem 1.4rem;
  border-top: 1px dashed #e2f0df;
  padding-top: 1.2rem;
}


@media (max-width: 991px) {
  .donate-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .donation-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-amount {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .donate-hero {
    padding: 5rem 0 4rem;
  }

  .donate-intro {
    padding: 3rem 0 1rem;
  }

  .donation-impact {
    padding: 2rem 0 3.5rem;
  }

  .donation-form-section {
    padding: 3.5rem 0;
  }

  .donation-faq-section {
    padding: 3.5rem 0;
  }

  .donation-form-wrapper {
    padding: 1.8rem 1.3rem;
    border-radius: 22px;
  }

  .donation-amounts {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .amount-btn {
    padding: 0.85rem 0.5rem;
    font-size: 0.9rem;
  }

  .donation-stat-box h3 {
    font-size: 2rem;
  }

  .impact-amount {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .donate-hero {
    padding: 4rem 0 3rem;
  }

  .donation-form-wrapper::before {
    width: 4px;
  }

  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-donate-submit {
    width: 100%;
    justify-content: center;
  }

  .impact-amount {
    font-size: 1.6rem;
  }

  .donation-stat-box h3 {
    font-size: 1.7rem;
  }

  .donation-stat-box .stat-icon {
    font-size: 1.5rem;
  }

  .donation-accordion .accordion-button {
    font-size: 0.88rem;
    padding: 1rem 1.1rem;
  }
}

/* ########Payment###### */
.payment-qr-box {
    margin-top: 25px;
    padding: 22px;
    background: #f7faf8;
    border: 1px solid #dfe8e2;
    border-radius: 16px;
}

.payment-qr-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.payment-qr-header > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f6ed;
    color: #145d2f;
    border-radius: 12px;
    font-size: 20px;
}

.payment-qr-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.payment-qr-header p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.payment-qr-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.payment-qr-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e1e7e3;
    border-radius: 12px;
}

.payment-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.payment-qr-info {
    flex: 1;
}

.payment-qr-info strong {
    display: block;
    margin-bottom: 6px;
    color: #145d2f;
    font-size: 16px;
}

.payment-qr-info p {
    margin: 0 0 12px;
    color: #5f6b63;
    font-size: 14px;
    line-height: 1.6;
}

.upi-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    color: #4b5563;
}

.upi-note i {
    color: #00a651;
    margin-top: 2px;
}

@media (max-width: 575px) {

    .payment-qr-box {
        padding: 18px;
    }

    .payment-qr-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-qr-image {
        width: 170px;
        height: 170px;
    }

    .upi-note {
        text-align: left;
    }
}


