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

:root {
  --primary-color: #1e5631;
  --secondary-color: #2d7a4a;
  --light-color: #f0f8f4;
  --dark-color: #0d3019;
  --accent-color: #4caf50;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.header-body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  /* padding: 1rem 0; */
  position: sticky;
  top: 0;
  z-index: 999999999 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Desktop Links */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.navbar-links > li > a,
.dropdown-btn {
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.navbar-links > li > a::after,
.dropdown-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffeb3b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-links > li > a:hover::after,
.dropdown-btn:hover::after {
  width: 80%;
}

.navbar-links > li > a:hover,
.dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #333;
  list-style: none;
  padding: 0.8rem 0;
  width: 220px;
  display: none;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideDown 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform-origin: top;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: #1e5631;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

.dropdown-menu li a:hover {
  background: rgba(30, 86, 49, 0.08);
  padding-left: 2rem;
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 99999 !important;
  width: 40px;
  height: 40px;
  padding: 0;
}

.navbar-toggle i {
  display: inline-block;
  /* z-index: 3000 !important; */
}

.navbar-toggle.active i::before {
  content: "\f00d";
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100vh;
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  padding: 5rem 1.5rem 2rem;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 1rem;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
  margin: 0.5rem 0;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

/* Mobile Dropdown */
.mobile-dropdown-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  padding: 1rem 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.mobile-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-btn.active {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
  animation: slideDown 0.3s ease;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu li a {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  margin: 0.3rem 0;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar {
    padding: 0 1rem;
  }
}

/* Modern Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(30, 86, 49, 0.9) 0%,
      rgba(45, 122, 74, 0.9) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e5631" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0 100px;
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: url(../images/akhuwatbg.webp);
  background-image: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, white, transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: #0d301981;
  padding: 10px;
  border-radius: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Modern Cards */
.modern-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Section Styling */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Application Form */
.application-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8f0e8;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
  background-color: #f9fdf9;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
  background-color: white;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 86, 49, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-card .amount {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Plans Section */
.plan-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-number {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-amount {
  font-size: 2.2rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-installment {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.plan-duration {
  color: #888;
  font-size: 0.95rem;
}

/* Note Section */
.note-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border-left: 5px solid #ffc107;
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.note-section h3 {
  color: #856404;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.note-section ul {
  list-style: none;
  padding-left: 0;
}

.note-section li {
  padding: 10px 0;
  color: #856404;
  position: relative;
  padding-left: 30px;
}

.note-section li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Steps List */
.steps-list {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 16px 16px 0 0;
}

.steps-list ol {
  padding-left: 20px;
}

.steps-list li {
  padding: 15px 0;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
}

.steps-list li::marker {
  font-weight: bold;
  color: var(--primary-color);
}

/* Quote Section */
.quote-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.05"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43 7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM11 88c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 0c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43 7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z"/></svg>');
  background-size: 300px;
}

.quote-section blockquote {
  font-size: 1.8rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-section cite {
  display: block;
  margin-top: 2rem;
  font-size: 1.3rem;
  font-style: normal;
  opacity: 0.9;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .application-form {
    padding: 30px 20px;
  }
}

.footer {
  background: rgb(29, 28, 28);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
  .chat-withus {
    font-size: 17px !important;
    padding: 5px;
    top: 85%;
    right: 23px;
  }
}

.loan-info {
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  color: white;
  margin-top: 50px;
  border-radius: 20px;
  /* padding: 20px; */
}

.loan-type {
  /* padding: 20px; */
  font-weight: bolder;
  font-size: 23px;
}

.loan-amount {
  font-size: 20px;
}
.loan-para {
  font-size: 17px;
  padding: 20px;
}

.chat-withus {
  z-index: 1000 !important;
  top: 77%;
  right: 30px;
  position: fixed;
  color: white;
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  border-radius: 20px;
  padding: 10px;
  transform: translateX(-15%);
  font-size: 35px !important;
  transition: 0.8s transform;
  animation: chat-icon 1.5s ease-in-out infinite;
}

/* Floating animation */
@keyframes chat-icon {
  0% {
    transform: translateX(-15%) translateY(0);
  }
  50% {
    transform: translateX(-15%) translateY(-10px);
  }
  100% {
    transform: translateX(-15%) translateY(0);
  }
}

.login-container {
  width: 100%;
  max-width: 450px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-section {
  text-align: center;
  margin-bottom: 35px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.logo-icon i {
  font-size: 35px;
  color: white;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 14px;
  color: #718096;
  font-weight: 400;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 8px;
  display: block;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.3s;
}

.toggle-password {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.toggle-password:hover {
  color: #667eea;
}

.form-control {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s;
  background: #f7fafc;
}

.form-control:focus {
  outline: none;
  border-color: #1e5631;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-control:focus + .input-icon {
  color: #667eea;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
  transform: translateY(0);
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e2e8f0;
}

.divider-text {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #a0aec0;
  font-size: 13px;
}

.signup-link {
  text-align: center;
  font-size: 14px;
  color: #718096;
}

.signup-link a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.signup-link a:hover {
  color: #764ba2;
}

.alert {
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 25px;
  border: none;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
}

/* Responsive */
@media (max-width: 576px) {
  .login-card {
    padding: 30px 25px;
  }

  .login-title {
    font-size: 24px;
  }

  .logo-icon {
    width: 70px;
    height: 70px;
  }

  .logo-icon i {
    font-size: 30px;
  }
}
.row img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Maintains aspect ratio while filling container */
}

.stats-card {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  margin-bottom: 30px;
}

.icon {
  width: 120px;
  height: 120px;
  fill: #28a745;
  transition: transform 0.3s ease;
}

.stats-card:hover .icon {
  transform: scale(1.1);
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: #28a745;
  margin: 20px 0;
  font-family: "Arial", sans-serif;
}

.stats-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .counter {
    font-size: 2.5rem;
  }
  .stats-label {
    font-size: 1.2rem;
  }
  .icon {
    width: 90px;
    height: 90px;
  }
  .index-img {
    margin-top: 20px !important;
  }
}


/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s;
    color: var(--secondary-color);
}

.feature-icon i {
    font-size: 3.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-content {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-content p {
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s;
    color: var(--secondary-color);
}

.service-icon i {
    font-size: 3.5rem;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-content {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.why-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.why-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.why-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.why-title {
  font-size: 2.4rem;
  line-height: 1.3;
}

.why-subtitle {
  letter-spacing: 2px;
}

.why-text {
  font-size: 1rem;
  color: #444;
}

.success-success {
            background: linear-gradient(135deg, rgba(30, 86, 49, 0.495) 0%, rgba(45, 122, 74, 0.538) 100%), url('../images/carousel/2.webp');
            background-size: cover;
            background-position: left;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            background-repeat: no-repeat;
        }
        
        .success-content {
            position: relative;
            z-index: 2;
        }
        
        .success-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
        }
        
        .success-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }
        
        .success-padding {
            padding: 80px 0;
            margin: 30px;
        }
        
        .success-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .success-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .story-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--secondary-color);
        }
        
        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .story-number {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .story-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        
        .story-title {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .story-content {
            color: #555;
            line-height: 1.7;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--light-color) 0%, #e8f5e9 100%);
            border-radius: 16px;
            padding: 40px;
            margin: 40px 0;
            border-left: 5px solid var(--primary-color);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .value-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .value-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .impact-stats {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 60px 0;
            border-radius: 16px;
            margin: 60px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .timeline-date {
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .success-title {
                font-size: 2.5rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
        }