#about-intro {
  width: 100%;
  padding: 50px 20px;
  background: #f9f5ff;
  box-sizing: border-box;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-capsule {
  display: inline-block;
  margin-bottom: 25px;
  padding: 9px 24px;
  border: 1px solid #111;
  border-radius: 50px;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-container h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 35px;
}
.about-text {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 2;
  color: #555;
}

.about-btn {
  display: inline-block;
  margin-top: 45px;
  padding: 16px 36px;
  border: 1px solid #111;
  border-radius: 50px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {
  #about-intro {
    padding: 80px 20px;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.contact-info-box--subtle {
  max-width: 1200px;
  margin: 15px auto 70px;
}

.contact-info-box--subtle .contact-info-item {
  flex: 1 1 280px;
}

.contact-info-box--subtle .contact-info-item:last-child {
  flex: 0 0 100%;
  min-width: 0;
}

#expertise {
  width: auto;
  background: #a4a5a883; /* Change to your preferred color */
  padding: 1rem;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
}

#expertise h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 600;
  color: #2b5887;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.expertise-card {
  position: relative;
  flex: 0 1 280px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  color: #16304d;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  text-wrap: balance;
  transition: all 0.25s ease;
}

.expertise-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #2b5887, #3cb043);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-3px);
  border-color: #b0b0b0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  #expertise {
    padding: 4rem 1rem;
  }
}

/* MISSION AND VISION */
#mission-vision {
  width: 100%;
  padding: 120px 20px;
  background: #161f32;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
}

.mv-wrapper {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 30px;
}

.mv-card {
  position: relative;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  background: #061225;
  transition: 0.35s;
}

.mv-icon {
  width: 2rem;
  height: auto;
  margin-bottom: -10px;
  margin-right: 1rem;
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: #4da3ff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mv-label {
  display: inline-block;
  /* font-size: 0.8rem; */
  letter-spacing: 4px;
  color: #8fb8ff;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.mv-card h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.mv-card p {
  color: #d4d4d4;
  line-height: 1.9;
  font-size: 1.05rem;
}

.divider {
  position: relative;
  height: 220px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #4da3ff, transparent);
  justify-self: center;
}

@media (max-width: 900px) {
  .mv-wrapper {
    grid-template-columns: 1fr;
  }

  .divider {
    width: 220px;
    height: 2px;
  }

  .mv-card {
    padding: 35px;
  }
}
@media (min-width: 1230px) {
  .vision {
    padding: 2.5rem;
  }
}

/*==============================
        STATISTICS
==============================*/

.section-divider {
  position: relative;
  width: 80vw;
  height: 5px;
  margin: 0 auto;
  border: none;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 30%,
    #000 70%,
    transparent 100%
  );
  clip-path: polygon(0% 50%, 10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%);
  background: black;
}
#statistics,
#industries {
  padding: 100px 20px;
}

.stats-container {
  max-width: 1200px;

  margin: auto;
}

.stats-heading {
  text-align: center;

  margin-bottom: 60px;
}

.stats-heading p {
  max-width: 650px;

  margin: auto;

  color: #666;

  line-height: 1.8;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.stat-card {
  background: #fff;

  border-radius: 22px;

  padding: 30px 20px;

  text-align: center;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

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

.stat-card h3 {
  font-size: 1.8rem;

  color: #2d66ff;

  margin-bottom: 10px;
}

#industries .stat-card h3 {
  font-size: 1.6rem;
}

#industries .stat-card {
  border: 1px solid #e8ecf2;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}

#industries .stat-card:hover {
  border-color: #c8d0dd;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

#industries .stat-card:nth-child(odd) h3 {
  color: #2d66ff;
}

#industries .stat-card:nth-child(even) h3 {
  color: #3cb043;
}

.stat-card span {
  color: #555;

  font-weight: 500;
}

.section-tag {
  font-size: 2.6rem;

  color: #22315f;
  text-align: center;
  margin: 15px 0;
}

/* Mobile */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #statistics,
  #industries {
    padding: 70px 20px;
  }

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