@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap');

body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222;
}

/* Hero Header */
.hero-about {
  background: url('/Images/work/31.jpg') no-repeat center center / cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  position: relative;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-about .hero-text {
  position: relative;
  z-index: 2;
}

.hero-about h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero-about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* OUR STORY */
.about-story {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 12%;
}

.about-story img {
  max-width: 100%;
  border-radius: 12px;
  width: 500px;
  object-fit: cover;
}

.about-story .text {
  flex: 1;
  min-width: 280px;
}

.about-story h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

/* MISSION / VISION */
.mv-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 80px 5%;
}

.mv-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.mv-card img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}

.mv-card h3 {
  margin-top: 16px;
  font-size: 1.5rem;
}

/* METRICS */
.metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 80px 5%;
}

.metric {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.metric i {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 12px;
}

.metric h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.metric p {
  font-size: 1rem;
  color: #444;
}

/* FAQ ACCORDION */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 5%;
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.accordion-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-question i {
  transition: transform 0.3s ease;
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #555;
  padding-top: 0;
}

.accordion-item.active .accordion-answer {
  max-height: 300px;
  padding-top: 10px;
}

.accordion-item.active .accordion-question i {
  transform: rotate(180deg);
}

/* CTA */
.cta {
  text-align: center;
  background-color: #0077b6;
  color: white;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 80px 5%;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta a {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fff;
  color: #0077b6;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta a:hover {
  background-color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 2.2rem;
  }

  .about-story {
    flex-direction: column;
  }

  .metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mv-section {
    flex-direction: column;
  }

  .cta {
    margin: 60px 5% 40px;
  }
}
