/* ===== PAGE HERO ===== */
.page-hero {
  height: 300px;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .5));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-hero-content span {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.page-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 8%;
}

.bg-dark2 {
  background: #111122;
}

/* ===== WHO WE ARE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.about-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #10b981;
  color: #fff;
  padding: 20px 28px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, .4);
}

.about-exp-badge h3 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.about-exp-badge p {
  font-size: 13px;

  opacity: .9;
  margin-top: 5px;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: #050505;
  margin: 15px 0 20px;
  line-height: 1.2;
}

.about-text>p {
  color: #999;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0 35px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 14px;
}

.about-feat-item i {
  color: #10b981;
  font-size: 16px;
}

/* ===== STATS ===== */
.about-stats {
  background: #10b981;
  padding: 60px 8%;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-stat i {
  font-size: 38px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 12px;
  display: block;
}

.about-stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.about-stat p {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  margin-top: 5px;
}

/* ===== MISSION VISION ===== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mv-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: .3s;
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 20px 50px rgba(16, 185, 129, .1);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: rgba(16, 185, 129, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  font-size: 28px;
  color: #10b981;
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.mv-card p {
  color: #999;
  line-height: 1.8;
  font-size: 14px;
}

/* ===== WHY CHOOSE US ===== */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 35px 25px;
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #10b981;
  box-shadow: 0 15px 40px rgba(16, 185, 129, .1);
}

.why-card-icon {
  width: 55px;
  height: 55px;
  background: rgba(16, 185, 129, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card-icon i {
  font-size: 22px;
  color: #10b981;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 20px 50px rgba(16, 185, 129, .1);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #10b981;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.team-card span {
  color: #10b981;
  font-size: 13px;
  font-weight: 600;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  transition: .3s;
  text-decoration: none;
}

.team-socials a:hover {
  background: #10b981;
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testi-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 35px;
  transition: .3s;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: #10b981;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testi-stars i {
  color: #10b981;
  font-size: 14px;
}

.testi-card>p {
  color: #999;
  line-height: 1.8;
  font-size: 15px;
  font-style: italic;
  margin-bottom: 25px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #10b981;
}

.testi-author h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  color: #888;
  font-size: 13px;
}

/* ===== CTA ===== */
.about-cta {
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
  padding: 120px 8%;
  position: relative;
  text-align: center;
  color: #fff;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .75), rgba(16, 185, 129, .3));
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 35px;
}

.about-cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.active-link {
  color: #10b981 !important;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-exp-badge {
    right: 10px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-content h1 {
    font-size: 40px;
  }
}

@media(max-width: 600px) {
  .about-section {
    padding: 60px 5%;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .page-hero-content h1 {
    font-size: 30px;
  }

  .about-cta-content h2 {
    font-size: 30px;
  }

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

  .about-exp-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    display: inline-block;
  }
}