.hero {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e9eef7, #f0f5ff);
}

/* BOX */
.hero-box {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  /* height: 700px; */
}

/* LAYOUT */
.hero-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* IMAGE */
.hero-image {
  max-width: 550px;
  width: 570px;
  height:410px;
}

/* CONTENT */
.hero-topic {
  font-size: 37px;
  font-weight: 800;
  color: #416bc4;
  /* COLORED HEADING */
  margin-bottom: 28px;
}

.hero-content {
  font-size: 18px;
  color: #212222;
  line-height: 2;
  /* SPACE BETWEEN SENTENCES */
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-buttons button {
  cursor: pointer;
}

.primary-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 15px;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 15px;
}

.secondary-btn:hover {
  background-color: #2563eb;
  color: white;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-buttons {
    justify-content: center;
  }
}


/* ===== FEATURES SECTION ===== */
.features {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #feffff, #f0f3f6);
}

.features-title {
  font-size: 38px;
  font-weight: 800;
  color: #416bc4;
  margin-bottom: 60px;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
}

.feature-box {
  background: #ffffff;
  width: 340px;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(100, 114, 146, 0.12);
  transition: 0.3s ease;
  border: 1px solid #b9cdfb;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px rgba(73, 73, 73, 0.2);
}

/* ===== ICON (BACKGROUND REMOVED + HEART BEAT) ===== */
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: heartBeat 1.6s infinite;
}

.feature-icon img{
  width:50px;
  height:50px;
}
/* SIMPLE HEART BEAT ANIMATION */
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.feature-box h3 {
  font-size: 24px;
  color: #1e3a8a;
  margin-bottom: 14px;
}

.feature-box p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}


/* =========================
   WHY CHOOSE SECTION
========================= */


.why-choose {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f1f5ff, #eef3ff);
}

.why-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #416bc4;
  margin-bottom: 40px;
}

.why-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comment-box {
  background-color: #feffff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-left-color 0.25s ease;
}

.comment-box:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 12, 150, 0.08);
  transform: translateY(-2px);
  border-left-color: #1e40af;
}

.comment-icon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.comment-box:hover .comment-icon {
  transform: scale(1.1);
}

.comment-box h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.comment-box p {
  font-size: 17px;
  color: #19191a;
  line-height: 1.8;
  margin: 0;
}


/* ===== FOOTER ===== */
.footer {
  background: #0b1e48;
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 150px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #e1e8ff;
  margin-bottom: 12px;
}

.village-link {
  display: inline-block;
  margin-top: 8px;
  color: #38bdf8;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.village-link:hover {
  text-decoration: underline;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 15px;
}

.footer-section ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #394454;
  text-align: center;
  font-size: 14px;
  color: #c0daff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(28px, 10vw, 55px);
  }

  .hero-topic {
    font-size: clamp(16px, 4vw, 22px);
  }

  .hero-content {
    font-size: clamp(14px, 3vw, 18px);
  }

  .features-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-box {
    width: 100%;
    max-width: 340px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }
}