/* ============================
   About Hero Section Styles
============================ */

.hero-section {
  position: relative;
  overflow: hidden;
}
/* Title Animation */
.hero-title {
  animation: fadeDown 1.2s ease-in-out;
}
/* Subtitle Animation */
.hero-subtitle {
  animation: fadeUp 1.5s ease-in-out;
}
/* Keyframes */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Responsive Fix */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ============================
   About MSME Loans Section Styles
============================ */

/* Image Styling */
.about-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
}
/* Stats Animation */
@keyframes popUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.about-stats {
  animation: popUp 1s ease-in-out forwards;
}
/* Responsive Fix */
@media (max-width: 768px) {
  .about-img {
    max-width: 90%;
  }
}


/* =========================
   Our Services Section
========================= */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fefce8;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.service-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Responsive padding */
@media (max-width: 768px) {
  .service-card {
    padding: 18px;
  }
  .service-title {
    font-size: 1.1rem;
  }
  .service-text {
    font-size: 0.9rem;
  }
}
/* View More Button styling */
a[href="service.html"] {
  transition: all 0.3s ease;
}

a[href="service.html"]:hover {
  transform: scale(1.05);
}

