/* Another page fintech */

.navbar {
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #198754 !important; /* Bootstrap success green */
}

.btn-success {
  background-color: #198754;
  border: none;
}

.btn-success:hover {
  background-color: #157347;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f9f6 100%
  );
  padding-top: 10px;
  position: relative;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Title */
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.hero-title span {
  color: #0d3f1f;
}

/* Subtitle */
.hero-subtitle {
  max-width: 600px;
  font-size: 1.1rem;
  color: #6c757d;
}

/* CropCura Primary Button */
.btn-cropcura {
  background-color: #083719;
  color: #fff;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cropcura:hover {
  background-color: #166b43; /* darker shade for hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 142, 90, 0.25);
}
/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}


/* ===============================
   PROBLEM SECTION
================================= */

.problem-section {
  background: #f3f5f4;
}

.section-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0d3f1f;
}

.problem-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.problem-subtitle {
  max-width: 650px;
  font-size: 1.1rem;
  color: #6c757d;
}

/* Card */
.problem-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.icon-box {
  width: 55px;
  height: 55px;
  background: #e6f4ec;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  color: #198754;
}

/* Stats */
.problem-stat {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.problem-text {
  color: #6c757d;
  margin-bottom: 10px;
}

.problem-source {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .problem-title {
    font-size: 1.8rem;
  }

  .problem-card {
    padding: 30px;
  }
}

/* ===============================
   SOLUTION SECTION
================================= */

.solution-section {
  background: #0d3f1f;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Background Aesthetic Shapes */
.solution-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #1faa59;
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: #20c997;
  bottom: -150px;
  right: -150px;
}

/* Headings */
.solution-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.solution-subtitle {
  max-width: 650px;
  color: white;
}

/* Cards */
.solution-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.solution-card h5 {
  font-weight: 600;
  margin-top: 20px;
}

.solution-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.solution-card:hover {
  transform: translateY(-8px);
}

/* Featured Middle Card */
.featured-card {
  transform: scale(1.05);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Icons */
.icon-circle {
  width: 65px;
  height: 65px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto;
}

/* Arrows */
.flow-arrow {
  font-size: 2rem;
  font-weight: bold;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .solution-title {
    font-size: 1.8rem;
  }

  .featured-card {
    transform: none;
  }
}


/* ===============================
   VISION SECTION (UPGRADED)
================================= */

.vision-section {
  background: linear-gradient(180deg, #f5f9f6 0%, #ffffff 100%);
  position: relative;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.vision-subtitle {
  max-width: 600px;
  color: #6c757d;
  font-size: 1rem;
}

/* Card */
.vision-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Subtle top accent line */
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  opacity: 0;
  transition: 0.3s;
}

.vision-card:hover::before {
  opacity: 1;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Middle Featured Card */
.featured-vision {
  background: #0d3f1f;
  color: #ffffff;
  transform: scale(1.05);
}

.featured-vision p,
.featured-vision .sdg-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Icon */
.vision-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: #e6f4ec;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #198754;
}

.featured-vision .vision-icon {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* SDG Label */
.sdg-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0d3f1f;
  margin-bottom: 10px;
}

/* Typography */
.vision-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-vision {
    transform: none;
  }
}

/* ===============================
   VISION QUOTE SECTION
================================= */

.vision-quote-section {
  background: #0d3f1f;
  position: relative;
  overflow: hidden;
}

/* Background Glow Effects */
.vision-quote-section::before,
.vision-quote-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.vision-quote-section::before {
  width: 400px;
  height: 400px;
  background: #20c997;
  top: -100px;
  left: -100px;
}

.vision-quote-section::after {
  width: 500px;
  height: 500px;
  background: #ffffff;
  bottom: -150px;
  right: -150px;
}

.vision-quote-box {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 60px 50px;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Large Quote Mark */
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 5px;
}

/* Main Text */
.vision-quote-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
}

/* Highlighted Number */
.highlight-number {
  color: #d1ffea;
  font-weight: 700;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .vision-quote-text {
    font-size: 1.2rem;
  }

  .vision-quote-box {
    padding: 40px 25px;
  }
}

/* ===============================
   CLEAN GREEN FOOTER
================================= */

.footer-section {
  background: #f2f2f2;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle Glow Background */
.footer-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #20c997;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  top: -150px;
  left: -150px;
}

/* Heading */
.footer-heading {
  font-weight: 600;
  font-size: 1.8rem;
  color: #000;
}

/* Contact */
.footer-contact span {
  font-size: 1rem;
  opacity: 0.9;
  color: #000;
}

.footer-contact i {
  color: #000;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #ccc;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

/* Copyright */
.footer-copy {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #000;
}

/* =========================
   ELIGIBILITY HERO SECTION
========================= */

.eligibility-hero {
  background: #2f7d4f;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.eligibility-title {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.eligibility-subtitle {
  color: #d8f3e6;
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Soft background circles */
.eligibility-hero::before,
.eligibility-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.eligibility-hero::before {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
}

.eligibility-hero::after {
  width: 450px;
  height: 450px;
  bottom: -200px;
  left: -150px;
}


/* =========================
   GET FINANCED CARD
========================= */

.finance-section {
  background: #f2f2f2;
  padding: 80px 20px;
}

.finance-card {
  background: #dce8df;
  border: 1px solid #7cc69d;
  border-radius: 30px;
  padding: 50px 60px;
}

.finance-text h2 {
  color: #145a32;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.finance-text p {
  max-width: 600px;
  color: #2c3e50;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Button */
.btn-green {
  background: #1e7e34;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-green:hover {
  background: #16692b;
  color: #fff;
}

/* =========================
   GET THE APP SECTION
========================= */

.app-section {
  background: #f4f4f2;
  padding: 100px 20px;
}

.app-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.app-subtitle {
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 17px;
  color: #6c757d;
  line-height: 1.6;
}

/* Store Buttons */
.store-btn {
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.store-btn i {
  font-size: 28px;
}

.store-text {
  text-align: left;
}

.store-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.store-text span {
  font-size: 18px;
  font-weight: 600;
}

.store-btn:hover {
  background: #0f2d23;
  color: #fff;
}