/* ===========================
   CSS Variables
   =========================== */
:root {
  --primary-color: #009865;
  --primary-light: #00bc7c1a;
  --primary-dark: #007a52;
  --text-dark: #0f1729;
  --text-gray: #64748b;
  --text-light: #00000033;
  /*--bg-light: #f9fafb;*/
  --bg-light: #00bc7c0d;
  --border-color: #e2e8f0;
  --white: #ffffff;
  
  
  
    
  --btn-text-color: #ffffff;
  --btn-border-color: #009865;

}



.hero-content .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero-content .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 152, 101, 0.3);
}




.hero-content .btn-outline-primary {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero-content .btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}



.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-light);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title .text-primary {
  color: var(--primary-color);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  max-width: 780px;
  margin: 0 auto 2rem;
}



/* ===========================
   Features Section
   =========================== */
.features-section {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  margin-bottom: 2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   CTA Card
   =========================== */
.cta-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-content {
  max-width: 400px;
}

.cta-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cta-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===========================
   Bottom CTA Section
   =========================== */
.bottom-cta-section {
  background-color: var(--primary-color);
  padding: 6rem 2rem;
  color: var(--white);
}

.cta-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
}

.cta-main-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}



/* ===========================
   Responsive Adjustments
   =========================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 1.5rem;
    min-height: auto;
  }
  
  .features-section {
    padding: 4rem 1.5rem;
  }
  
  .bottom-cta-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-card {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .features-section {
    padding: 3rem 1rem;
  }
  
  .bottom-cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-main-title {
    font-size: 1.75rem;
  }
  
  .cta-main-description {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 20px;
  }
  
  .badge-pill {
    font-size: 12px;
    padding: 4px 12px;
  }
  
  .badge-pill img {
    width: 20px;
    height: 20px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon img {
    width: 20px;
    height: 20px;
  }
}



