@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lora", serif;
}

.about-container {
  width: 95%;
  max-width: 1260px;
  margin: auto;
  padding: 60px 0;
}

/* Mission & Vision */
.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #ff6f00;
  text-align: left !important;
}

.about-text p {
  color: #444;
  font-size: 1.05rem;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.second-aboutinfo {
  margin-top: 30px;
}

.about-highlight {
  color: #3cb815;
}

/* Why Choose Us */
.about-why-choose {
  display: flex;
  background-color: #f3f3f3;
  text-align: center;
}

.about-why-choose h2 {
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.about-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card i {
  font-size: 2.2rem;
  color: #43a047;
  margin-bottom: 15px;
}

.about-card h4 {
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Global Reset for About Page Sections */
.about-container {
  width: 90%;
  max-width: 1260px;
  margin: auto;
  padding: 60px 20px;
}

.about-container h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #2c2c2c;
}

/* ========== OUR TEAM ========== */
.about-our-team {
  background-color: #f9f9f9;
}

.team-members {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 260px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.team-card h4 {
  margin: 15px 0 5px;
  font-size: 20px;
  color: #333;
}

.team-card p {
  color: #777;
  font-size: 14px;
}

/* ========== TESTIMONIALS ========== */
.about-testimonials {
  background-color: #ffffff;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #f3f3f3;
  padding: 25px 20px;
  border-radius: 10px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-style: italic;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 40px;
  color: #ccc;
  position: absolute;
  top: -15px;
  left: 15px;
}

.testimonial-card p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

.testimonial-card h4 {
  text-align: right;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-features {
    flex-direction: column;
    align-items: center;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .team-card,
  .step-card,
  .testimonial-card {
    width: 100%;
  }

  .about-container h2 {
    font-size: 28px;
  }
}
