/* ------------------- HERO Section ------------------- */

.about-hero {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  padding-inline: clamp(1.5rem, 6vw, 9rem);
  background: #ffffff;
}

.about-hero-container {
  max-width: 90rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
}

/* LEFT */
.about-content {
  max-width: 34rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 999rem;
  background: #07a3c31a;
  color: #343434;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.pill-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #13b7a6;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.2;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.about-title span {
  background: linear-gradient(90deg, #12b5a6 0%, #0894b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);

  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  color: #6b7280;
  max-width: 42rem;
  margin-inline: auto;
  font-weight: 400;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.5vw, 0.9rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.about-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: #000000;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #13b7a6;
  font-weight: 600;
}

.about-actions {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  flex-wrap: wrap;
}

.btn {
  padding: clamp(0.6rem, 1.5vw, 0.85rem) clamp(1.4rem, 3vw, 2.2rem);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border-radius: clamp(0.4rem, 1vw, 0.6rem);
  text-decoration: none;
  font-weight: 500;
}

.btn.primary {
  background: linear-gradient(96deg, #13b7a6, #0892b2);
  color: #ffffff;
}

.btn.outline {
  border: 0.0625rem solid #d1d5db;
  color: #374151;
}

.about-visual {
  position: relative;
  max-width: 36rem;
}

.about-visual img {
  width: 100%;
  height: auto;
}

.floating-tag {
  position: absolute;
  top: clamp(0.5rem, 2vw, 1.2rem);
  right: clamp(0.5rem, 2vw, 1.5rem);
  background: linear-gradient(96deg, #13b7a6, #0892b2);
  color: #ffffff;
  padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.7rem, 2vw, 1rem);
  border-radius: 0.3125rem;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
}

.floating-card {
  position: absolute;
  bottom: clamp(0.5rem, 2vw, 1.2rem);
  left: clamp(0.5rem, 2vw, 1.5rem);
  background: #ffffff;
  padding: clamp(0.6rem, 1.5vw, 0.9rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: clamp(0.4rem, 1vw, 0.6rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
  text-align: center;
}

.floating-card.bottom {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.2rem);

  padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1rem, 2.5vw, 1.6rem);

  background: #ffffff;
  border-radius: clamp(1rem, 2vw, 1.4rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.floating-card.bottom strong {
  display: flex;
  align-items: center;
  justify-content: center;

  width: clamp(2.751rem, 6vw, 2.75rem);
  height: clamp(2.751rem, 6vw, 2.75rem);

  background: linear-gradient(90deg, #12b5a6 0%, #0894b0 100%);
  border-radius: clamp(0.52rem, 1.5vw, 0.5rem);

  font-size: clamp(1.25rem, 3vw, 1.256rem);
  font-weight: 400;
  color: #ffffff;
}

.floating-card.bottom span {
  display: flex;
  flex-direction: column;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: #6b7280;
  line-height: 1.2;
  align-items: flex-start;
}

.floating-card.bottom span::after {
  content: "Excellence";
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-weight: 500;
  color: #111827;
}

/* MOBILE */
@media (max-width: 48rem) {
  .about-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-actions {
    justify-content: center;
  }
}

/* ---------------- ABOUT US SECTION ------------------- */
.about-section {
  padding-block: clamp(3rem, 8vw, 5rem);
  text-align: center;
  background: linear-gradient(
    181.04deg,
    #ffffff 84.56%,
    rgba(115, 115, 115, 0.05) 335.34%
  );
}

.about-section h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  color: #111827;
  line-height: 1.2;
}

.about-card {
  max-width: clamp(45rem, 85vw, 68rem);
  margin-inline: auto;

  padding: clamp(1.8rem, 4vw, 3rem);

  background: #ffffff;
  border-radius: clamp(1rem, 2.5vw, 1.6rem);

  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.06);

  text-align: left;
}

.about-card p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: #4b5563;
}

.about-divider {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 3rem);

  border-top: clamp(0.15rem, 0.4vw, 0.2rem) solid transparent;

  border-image-source: linear-gradient(
    90deg,
    #ffffff 0%,
    #0ab5bb 49.04%,
    #ffffff 100%
  );
  border-image-slice: 1;

  filter: blur(0.02rem);
}

/* ----------------- WHY CHOOSE US SECTION --------------------------- */
.why-choose-text {
  width: 100%;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  justify-content: center;

  background-color: #ffffff;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.06);
}

.why-container {
  max-width: clamp(55rem, 80vw, 70rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2.5vw, 0.6rem);
  opacity: 0.9;
}

.why-container h2 {
  text-align: center;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  color: #111827;
  line-height: 1.2;
}

.why-container ul li {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: #4b5563;
  /* text-align: left; */

  max-width: 100%;
  letter-spacing: 0.01em;
}

/* ------------------ Mission and Vision Card Setion ------------------------ */
.mission-vision {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.mv-container {
  max-width: clamp(70rem, 90vw, 88rem);
  margin-inline: auto;

  display: flex;
  flex-direction: row;
  gap: clamp(1.6rem, 3vw, 2.5rem);
}

.mv-card {
  flex: 1;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);

  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.mv-card h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 500;
}

.mv-card p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.mv-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.mv-card ul li {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  /* line-height: clamp(1.5rem, 3vw, 1.8rem); */
  opacity: 0.95;

  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.mv-icon {
  width: clamp(3rem, 5vw, 3.6rem);
  height: clamp(3rem, 5vw, 3.6rem);
  border-radius: clamp(0.6rem, 1.5vw, 0.9rem);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon img {
  width: clamp(1.4rem, 2.6vw, 1.75rem);
  height: clamp(1.4rem, 2.6vw, 1.75rem);
}

.mv-card.mission {
  background: linear-gradient(114.63deg, #11243d 0.86%, #133f7d 97.24%);
}

.mv-card.vision {
  background: linear-gradient(295.32deg, #0dc5b5 1.68%, #07a3c3 100%);
}

@media (max-width: 48rem) {
  .mv-container {
    flex-direction: column;
  }
}

/* ---------------- VALUES SECTION ---------------- */

.values {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
}

.values-container {
  max-width: clamp(42rem, 60vw, 56rem);
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);

  text-align: center;
}

.values-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #111827;
  text-align: center;
}

.values-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  color: #4b5563;
}

/* ---------------- CTA SECTION ---------------- */

.cta {
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 3rem);
  padding-inline: clamp(1.5rem, 6vw, 10rem);
}

.cta-container {
  max-width: clamp(40rem, 60vw, 52rem);
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);

  text-align: center;
}

.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #111827;
  text-align: center;
}

.cta-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: #4b5563;

  max-width: clamp(28rem, 50vw, 40rem);
}

.cta-button {
  margin-top: clamp(0.8rem, 2vw, 1.2rem);

  font-family: "Poppins", sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 500;

  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.5rem, 3vw, 2rem);

  border-radius: clamp(0.4rem, 0.8vw, 0.6rem);

  color: #ffffff;
  background: linear-gradient(96.12deg, #13b7a6 0%, #0892b2 100%);

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.15);
}
