

/* ====== ABOUT US HERO SECTION ====== */

/* Background + Animations */
@keyframes fadeInBg {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeInBg 1.5s ease-in-out forwards;
  overflow: hidden;
}

/* Dark overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Brush stroke divider at the bottom */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://ibb.co/rV0BRfW') repeat-x bottom;
  background-size: contain;
  z-index: 2;
}

/* Text content styling */
.about-hero-content {
  position: relative;
  z-index: 3;
  animation: slideUp 1.2s ease-out forwards;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero h1 {
    font-size: 2.6rem;
  }

  .about-hero p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 65vh;
    padding: 0 20px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
  background: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  color: #d8232a;
  font-size: 2rem;
  margin-bottom: 10px;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.quote-icon {
  color: #d8232a;
  font-size: 2rem;
  margin-bottom: 15px;
}
.testimonial-card h4 {
  margin-top: 15px;
  color: #d8232a;
  font-weight: 600;
}

/* STATS SECTION */
.stats {
  background: #d8232a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-box {
  flex: 1;
  min-width: 200px;
  animation: fadeInUp 1s ease;
}
.stat-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 2rem;
  color: #d8232a;
  margin-bottom: 15px;
}
.cta p{
    margin-bottom: 15px;
}
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #d8232a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #b81923;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {font-size: 2.2rem;}
  .stat-box h2 {font-size: 2rem;}
}



















