* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f6fff9;
}

/* ---------- Top Navigation (Nav) ---------- */
.top-nav {
  background: linear-gradient(100deg, #f8e58c 13%, #36ad5d 90%);
  padding: 18px 0 10px 0;
  backdrop-filter: saturate(130%) blur(2.5px);
  box-shadow: 0 4px 16px 0 rgba(50, 175, 105, 0.06);
}

.top-nav .container a {
  color: #fff;
}

nav.top-nav .nav-link {
  position: relative;
  color: #fff !important;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Underline effect */
nav.top-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: transparent;
  border-radius: 2px;
  transition: background-color 0.3s ease, height 0.3s ease, left 0.3s ease,
    width 0.3s ease;
}

nav.top-nav .nav-link.active::after,
nav.top-nav .nav-link:hover::after {
  background-color: #fff;
  height: 2px;
  left: 25%;
  width: 50%;
}

nav.top-nav .btn-outline-success {
  color: #fff !important;
  border-color: #198754;
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}
nav.top-nav .btn-outline-success:hover,
nav.top-nav .btn-outline-success:focus {
  color: #fff !important;
  background-color: #198754 !important;
  border-color: #198754 !important;
}

/* Responsive styles: Mobile devices (<576px) */
@media (max-width: 575.98px) {
  nav.top-nav .nav-link {
    padding-bottom: 0;
    font-size: 0.9rem;
    color: #36ad5d !important;
    cursor: pointer;
  }

  nav.top-nav .nav-link::after {
    background-color: transparent !important;
    height: 0 !important;
    width: 0 !important;
    left: 50% !important;
  }

  nav.top-nav .nav-link.active::after,
  nav.top-nav .nav-link:hover::after {
    background-color: transparent !important;
    height: 0 !important;
    width: 0 !important;
    left: 50% !important;
  }

  nav.top-nav .btn-outline-success {
    color: #36ad5d !important;
    border-color: #36ad5d !important;
  }
  nav.top-nav .btn-outline-success:hover,
  nav.top-nav .btn-outline-success:focus {
    color: #fff !important;
    background-color: #36ad5d !important;
    border-color: #36ad5d !important;
  }
}

/* ---------- Hero Section ---------- */
.hero-section {
  background: linear-gradient(100deg, #f8e58c 13%, #36ad5d 90%);
  color: #174d19;
  padding: 4.8rem 0 2.5rem 0;
}
.cta-btn {
  border-radius: 28px;
  background: #fff;
  color: #1f811c;
  font-weight: 700;
  padding: 14px 38px;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.cta-btn:hover {
  background: #d1b82f;
  color: #fff;
}

/* ---------- About Section ---------- */
.about-section {
  position: relative;
  overflow: hidden;
  background: #f2fbf4;
  border-radius: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 8px 30px rgba(70, 190, 86, 0.12);
}

/* Floating leaves */
.floating-leaves-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.floating-leaf {
  position: absolute;
  width: 42px;
  opacity: 0.5;
  animation: floatLeaf 12s linear infinite;
}
.leaf1 {
  top: 14%;
  left: 9%;
  animation-duration: 14s;
  animation-delay: 0s;
  transform: rotate(-18deg);
}
.leaf2 {
  top: 44%;
  left: 65%;
  animation-duration: 20s;
  animation-delay: -6s;
  transform: rotate(8deg);
}
.leaf3 {
  top: 70%;
  left: 40%;
  animation-duration: 18s;
  animation-delay: 4s;
  transform: rotate(-30deg);
}
.leaf4 {
  top: 15%;
  left: 80%;
  animation-duration: 16s;
  animation-delay: -8s;
  transform: rotate(16deg);
}
.leaf5 {
  top: 70%;
  left: 82%;
  animation-duration: 13s;
  animation-delay: 3s;
  transform: rotate(12deg);
}
.leaf6 {
  top: 84%;
  left: 17%;
  animation-duration: 17s;
  animation-delay: -5s;
  transform: rotate(-10deg);
}
.leaf7 {
  top: 54%;
  left: 90%;
  animation-duration: 12s;
  animation-delay: -2s;
}
.leaf8 {
  top: 75%;
  left: 10%;
  animation-duration: 5s;
  animation-delay: -7s;
}

/* Leaf float animation */
@keyframes floatLeaf {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  15% {
    transform: translateY(-10px) scale(1.06) rotate(3deg);
  }
  30% {
    transform: translateY(-17px) scale(0.97) rotate(-2deg);
  }
  50% {
    transform: translateY(-25px) scale(1.09) rotate(6deg);
  }
  70% {
    transform: translateY(-15px) scale(1.02) rotate(-4deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Step Circles */
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.07);
}

/* Ambient Glow */
.ambient-glow {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 1.6rem;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.35),
    transparent 70%
  );
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

/* Trio Cards */
.trio-card {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2.5px);
  position: relative;
  overflow: hidden;
  border-left-width: 9px !important;
  box-shadow: 0 10px 32px rgba(31, 120, 30, 0.1);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.15s;
  min-height: 340px;
}
.trio-card:hover {
  box-shadow: 0 24px 54px 0 rgba(80, 190, 86, 0.17);
  transform: scale(1.045);
  border-left-width: 13px !important;
}
.trio-icon svg {
  display: block;
  border-radius: 34px;
  box-shadow: 0 2px 16px #d6f2b7ae;
}
/* Contact Us Buttons */
.trio-cta-btn {
  margin-top: 10px;
  border: none;
  border-radius: 23px;
  padding: 9px 32px;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  display: inline-block;
  box-shadow: 0 2px 12px #c0dbb733;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  outline: none;
}
.trio-cta-btn.green {
  background: #2f855a;
  color: #fff;
}
.trio-cta-btn.gold {
  background: #e0b71c;
  color: #fff;
}
.trio-cta-btn.blue {
  background: #9ed223;
  color: #fff;
}
.trio-cta-btn:hover,
.trio-cta-btn:focus {
  color: #fff !important;
  box-shadow: 0 8px 28px #a3f4e766;
  text-decoration: none;
}

/* Modern Gradient Text */
.modern-gradient-text {
  background: linear-gradient(100deg, #36ad5d 5%, #c6a824 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature Icons */
.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  transition: transform 0.19s cubic-bezier(0.58, 2, 0.55, 1);
}
.bg-gradient-green {
  background: linear-gradient(120deg, #668a26 15%, #2e5b3d 90%);
  color: #fff;
}
.bg-gradient-blue {
  background: linear-gradient(120deg, #94d80d 13%, #36ad5d 90%);
  color: #fff;
}
.bg-gradient-orange {
  background: linear-gradient(120deg, #fba927 10%, #ec7e4a 95%);
  color: #fff;
}
.feature-modern-card:hover .feature-icon {
  transform: scale(1.18) rotate(-7deg);
  box-shadow: 0 5px 25px -8px #64fadf55;
}

/* Plan Section */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #177d43 !important;
}
.plan-new-card {
  border-radius: 1.4rem;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1.5px);
  box-shadow: 0 10px 45px rgba(31, 120, 30, 0.11);
  transition: 0.18s;
  overflow: hidden;
}
.plan-new-card:hover {
  box-shadow: 0 18px 54px rgba(80, 190, 86, 0.14);
  transform: translateY(-4px) scale(1.036);
  border-left-width: 7px !important;
}
.plan-badge {
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 40px 40px 40px 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  box-shadow: 0 2px 12px #b0cfb735;
}
.plan-card-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #18823b;
}
.unique-cta-btn {
  border-radius: 2.2em;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  padding: 10px 0;
  transition: background 0.16s, color 0.13s;
  margin-top: 4px;
  border: none;
  box-shadow: 0 2px 12px #b0cfb735;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.unique-cta-btn:hover {
  filter: brightness(0.92) drop-shadow(0 3px 14px #bfffaa66);
  outline: 0;
}

/* Footer */
.footer-solid {
  background: linear-gradient(100deg, #668a26 13%, #2e5b3d 90%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-top-left-radius: 1.7rem;
  border-top-right-radius: 1.7rem;
  letter-spacing: 0.01em;
  box-shadow: 0 -3px 22px #26b7b11a;
}
.footer-link-head {
  color: #ffe87c;
  font-size: 1.04em;
  font-weight: 700;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
.footer-links {
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 0.37em;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
  opacity: 0.97;
}
.footer-link:hover {
  color: #ffe87c;
  opacity: 1;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  color: #0b8960;
  font-size: 1.4rem;
  box-shadow: 0 2px 12px #13e5ae26;
  text-align: center;
  transition: background 0.2s, box-shadow 0.19s, transform 0.18s, color 0.17s;
  overflow: hidden;
}
.footer-social:hover {
  background: #1d7024;
  color: #fff;
  box-shadow: 0 4px 19px #23a96f99;
  transform: scale(1.11);
}
.solid-footer-bar {
  border: 0;
  border-top: 2.2px solid #ffe87c77;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

/* ===== Responsive Media Queries ===== */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .about-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .trio-card {
    min-height: 280px;
    margin-bottom: 1.5rem;
    border-left-width: 7px !important;
  }
  .plan-new-card {
    margin-bottom: 1.9rem;
  }
  .footer-link-head,
  .footer-links {
    text-align: center;
  }
}

/* Small devices (phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 3rem 1rem 2rem 1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
  .trio-card {
    min-height: auto;
    padding: 1rem;
  }
  .trio-icon svg {
    width: 40px;
    height: 40px;
  }
  .plan-card-price {
    font-size: 1.12rem;
  }
  .about-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .cta-btn {
    padding: 10px 22px;
  }
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .floating-leaf {
    width: 28px;
  }
  .footer-social {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

/* Leaf Size Responsive */
@media (max-width: 700px) {
  .floating-leaf {
    width: 28px;
  }
}

/* How it Works */

/* Gradient Text for Headings */
.gradient-text {
  background: linear-gradient(90deg, #36ad5d 0%, #d6b51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 1.2px;
  user-select: none;
  margin-bottom: 0.8rem;
}

/* Glass Card Styles */
.glass-card {
  background: rgba(255 255 255 / 0.9);
  backdrop-filter: saturate(200%) blur(16px);
  border-radius: 2rem;
  /* box-shadow: 0 15px 45px rgba(54, 173, 93, 0.25); */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  height: 100%;
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.glass-card:hover {
  transform: translateY(-18px) scale(1.07);
  /* box-shadow: 0 28px 75px rgba(54, 173, 93, 0.42); */
}

.step-img {
  /* width: 96px; */
  width: 110px;
  height: 110px;
  /* height: 96px; */
  border-radius: 1.6rem;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(54, 173, 93, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: drop-shadow(0 5px 12px rgba(54, 173, 93, 0.5));
}

/* Step Titles */
.step-title {
  margin-top: 1.8rem;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1e6025ff;
  letter-spacing: 1.1px;
  user-select: none;
}

/* Step Descriptions */
.step-desc {
  font-size: 1.1rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 300px;
  user-select: text;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .step-img {
    width: 80px;
    height: 80px;
  }

  .step-title {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }

  .step-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .glass-card {
    padding: 2.2rem 1.6rem;
  }
}

@media (max-width: 576px) {
  .step-img {
    width: 64px;
    height: 64px;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-desc {
    font-size: 0.95rem;
  }

  .glass-card {
    padding: 1.8rem 1rem;
  }
}

.impact-stats {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.stat-item {
  flex: 1 1 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .eco-tips ul li {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }

  .how-step-card h5 {
    font-size: 1.1rem;
  }
}

/* Testimonials */
.testimonials .testimonial-text {
  font-size: 1.22rem;
  max-width: 620px;
  margin: 0 auto 1.2rem;
  color: #3a3a3a;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-author {
  font-weight: 700;
  color: #2f855a;
  letter-spacing: 0.07em;
}

/* Carousel Arrow Colors */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(35%) sepia(66%) saturate(324%) hue-rotate(96deg);
}

/* Eco Tips Section */
.eco-tips {
  background: #e9f7e8;
  /* box-shadow: 0 10px 24px rgba(70, 190, 86, 0.2); */
  border-radius: 1.8rem;
  padding: 3rem 2.5rem;
  user-select: text;
}

.eco-tips h3 {
  color: #277a2f;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 1.2px;
  user-select: none;
}

.eco-tips ul {
  list-style: none;
  padding-left: 0;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #3a3a3a;
}

.eco-tips ul li {
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 36px;
}

/* Custom bullet - Leaf icon */
.eco-tips ul li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Call to Action Button */
.btn-gradient-shadow {
  background: #36ad5d;
  border: none;
  color: white;
  padding: 18px 60px;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 12px 48px rgba(214, 181, 30, 0.9);
  border-radius: 56px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  text-transform: uppercase;
  user-select: none;
}

.btn-gradient-shadow:hover,
.btn-gradient-shadow:focus {
  box-shadow: 0 20px 64px rgba(214, 181, 30, 1);
  transform: translateY(-5px);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gradient-text {
    font-size: 2.3rem;
  }

  .icon-wrapper img {
    width: 72px;
    height: 72px;
  }

  .btn-gradient-shadow {
    font-size: 1.3rem;
    padding: 16px 50px;
  }

  .glass-card p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.2rem;
  }

  .icon-wrapper img {
    width: 64px;
    height: 64px;
  }

  .btn-gradient-shadow {
    font-size: 1.2rem;
    padding: 14px 45px;
  }
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 1.8rem;
  }

  .glass-card h5 {
    font-size: 1.15rem;
  }

  .eco-tips h3 {
    font-size: 1.4rem;
  }

  .icon-wrapper img {
    width: 56px;
    height: 56px;
  }

  .btn-gradient-shadow {
    font-size: 1rem;
    padding: 12px 40px;
  }
}

/* End How it Works */

/* Partner */
/* body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f9fdfa;
  color: #2e3a2f;
} */

.gradient-textt {
  background: linear-gradient(90deg, #36ad5d 0%, #d6b51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 2.8rem;
  user-select: none;
  margin-bottom: 3rem;
}

/* Section Headers */
section h2,
section h3 {
  font-weight: 800;
  user-select: none;
}

/* Icon Circles */
.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: rgba(54, 173, 93, 0.13);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  cursor: default;
  user-select: none;
  font-size: 3.8rem;
}

.icon-circle i {
  font-size: 2.6rem;
}

.icon-circle:hover i {
  color: #d6b51e;
  transition: color 0.3s;
}

/* Why Become Partner Section */
.partner-benefits {
  background: #ffffff;
  padding: 3rem 1rem;
  border-radius: 18px;
}

.partner-benefits h5 {
  margin-top: 1rem;
  font-weight: 700;
  color: #277a2f;
  letter-spacing: 0.03em;
  user-select: none;
}

.partner-benefits p {
  color: #4a6f3a;
  font-size: 1rem;
  margin-top: 0.4rem;
  user-select: text;
  min-height: 80px;
}

/* How To Become Partner Section */
.partner-guide {
  background: #e6f7e7;
  padding: 3rem 1rem;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(54, 173, 93, 0.1);
}

.guide-step {
  background: white;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 28px rgba(54, 173, 93, 0.15);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  user-select: none;
}

.guide-step h5 {
  font-weight: 700;
  color: #2f640f;
  margin-top: 1rem;
  font-size: 1.3rem;
}

.guide-step p {
  color: #517d2f;
  font-size: 1rem;
  margin-top: 0.5rem;
  flex-grow: 1;
  user-select: text;
}

/* Partner Impact Section */
.partner-impact {
  background-color: #f0f9f0;
  padding: 4rem 2rem;
  border-radius: 18px;
  user-select: none;
  box-shadow: 0 12px 50px rgba(54, 173, 93, 0.15);
}

.impact-item {
  min-width: 170px;
  max-width: 280px;
  flex: 1 1 220px;
  margin: 2.2rem 2rem;
}

.impact-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(90deg, #36ad5d 0%, #d6b51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.4px;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: visible;
  user-select: none;
}

.impact-item p {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2e7a1c;
  user-select: none;
}

/* Testimonials Section */
.partner-testimonials {
  background-color: #e9f7e7;
  border-radius: 18px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 13px 45px rgba(54, 173, 93, 0.15);
  user-select: none;
}

.partner-testimonials h3 {
  font-weight: 900;
  font-size: 2.2rem;
  background: linear-gradient(90deg, #36ad5d 0%, #d6b51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #3a3a3a;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  user-select: text;
}

.testimonial-author {
  font-weight: 700;
  color: #2f855a;
  letter-spacing: 0.06em;
  user-select: none;
}

/* Call to Action Section */
.partner-cta {
  padding: 4rem 2rem;
  background-color: #d9f0d9;
  text-align: center;
  border-radius: 2rem;
  user-select: none;
  margin-bottom: 4rem;
}

.partner-cta h3 {
  font-weight: 900;
  font-size: 2.6rem;
  color: #2f7b1a;
  margin-bottom: 2.5rem;
}

.partner-cta .btn-success {
  padding: 1.3rem 5rem;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 70px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.partner-cta .btn-success:hover {
  transform: translateY(-7px);
  color: white;
}

/* Responsive Design */

@media (max-width: 992px) {
  .partner-testimonials h3 {
    font-size: 1.9rem;
  }

  .gradient-text {
    font-size: 2.2rem;
  }

  .impact-number {
    font-size: 3rem;
  }

  .partner-cta h3 {
    font-size: 2.1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .icon-circle {
    width: 80px;
    height: 80px;
    font-size: 3rem !important;
  }

  .partner-cta {
    padding: 3rem 1rem;
  }

  .partner-cta .btn-success {
    padding: 1.1rem 4rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .gradient-text {
    font-size: 1.8rem;
  }

  .impact-number {
    font-size: 2.2rem;
  }

  .partner-cta h3 {
    font-size: 1.7rem;
  }

  .icon-circle i {
    font-size: 2.4rem !important;
  }
}
/* Price */

.gradient-ttextt {
  background: linear-gradient(90deg, #36ad5d 0%, #d6b51e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 2.8rem;
  user-select: none;
}

.pricing-card {
  background: #fff;
  border-radius: 1.8rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(54, 173, 93, 0.15);
  text-align: center;
  transition: box-shadow 0.4s ease, transform 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  box-shadow: 0 26px 70px rgba(54, 173, 93, 0.3);
  transform: translateY(-10px);
}

.plan-title {
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #27672c;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  color: #3a8e3a;
}

.plan-price span {
  font-size: 1.6rem;
  font-weight: 700;
}

.plan-details {
  text-align: left;
  margin-bottom: 2.4rem;
  color: #4d5c46;
  font-size: 1.15rem;
  padding-left: 1.3rem;
}

.plan-details li {
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 1.5rem;
}

.plan-details li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #36ad5d;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.btn-gradient {
  background-color: #36ad5d !important;
  color: #fff !important;
  border: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover,
.btn-gradient:focus {
  background-color: #2e7d32 !important;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.6);
  color: #fff !important;
}

.btn-gradient:focus,
.btn-gradient:active {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(54, 173, 93, 0.5);
}

/* FAQ Accordion */
.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: #27672c;
  letter-spacing: 0.02em;
}

.accordion-button:not(.collapsed) {
  background: #e1f1de;
  color: #194d15;
  box-shadow: inset 2px 0 10px rgba(54, 173, 93, 0.2);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plan-title {
    font-size: 1.7rem;
  }

  .plan-price {
    font-size: 2.3rem;
  }

  .plan-details {
    font-size: 1rem;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .plan-title {
    font-size: 1.45rem;
  }

  .plan-price {
    font-size: 1.8rem;
  }

  .plan-details {
    font-size: 0.95rem;
  }
}
