/* HERO SECTION */
.about-hero {
  position: relative;
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/slide2.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  filter: brightness(0.8);
}

/* CTA BELOW HERO */
.hero-cta {
  background: #202c60;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-cta h1 {
  color: #fccf21;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-cta p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  color: #ddd;
}

.hero-cta .cta-btn {
  background: #f97d1a;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta .cta-btn:hover {
  background: #e98059;
  transform: translateY(-3px);
}

/* OUR STORY */
.about-story {
  background: #fff;
  color: #202c60;
  padding: 5rem 0;
  text-align: center;
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-story p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

/* MISSION & VALUES */
.about-mission {
  background: #202c60;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.about-mission h2 {
  color: #fccf21;
  margin-bottom: 3rem;
}

.values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.value-card {
  background: #333;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
  color: #fccf21;
  margin-bottom: 1rem;
}

/* TEAM */
/* MEET OUR EXPERTS */
.about-team {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
}

.about-team h2 {
  color: #202c60;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2.5rem;
  justify-items: center;
}

.team-member {
  width: 100%;
  max-width: 260px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* Team Images */
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Orange Bar Under Image */
.name-bar {
  background: #202c60;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 0;
  font-size: 1rem;
}

/* Role / Title Below Card */
.team-card p {
  color: #202c60;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* DIFFERENCE */
.about-difference {
  background: #202c60;
  color: #fff;
  padding: 5rem 0;
}

.about-difference h2 {
  text-align: center;
  color: #fccf21;
  margin-bottom: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature {
  background: #333;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: #fccf21;
  margin-bottom: 1rem;
}

/* COMMUNITY */
.about-community {
  background: #fff;
  padding: 5rem 0;
  text-align: center;
}

.about-community h2 {
  color: #202c60;
  margin-bottom: 2rem;
}

.about-community p {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
}
