/* =========================
   ABOUT SECTION BASE
========================= */
.about-us-section {
  padding: 6rem 5%;
  background-color: #fff;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
/* =========================
   TYPOGRAPHY SYSTEM
========================= */

.text-lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: #4b5563;
  font-weight: 500;
}

.text-body {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.8;
  color: #6b7280;
}

.text-muted-strong {
  color: #4b5563;
  font-style: italic;
}
.about-us-section p {
  margin-bottom: 1rem;
}
/* =========================
   PERFECT CIRCLE IMAGES
========================= */
.circle-image-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin: 2rem auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.circle-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.circle-image-wrapper:hover img {
  transform: scale(1.08);
}

/* Custom image positioning */
#history .circle-image-wrapper img {
  object-position: center;
}
#vision .circle-image-wrapper img {
  object-position: 50% 20%;
}
#mission .circle-image-wrapper img {
  object-position: center;
}

/* =========================================================
   SECTION HEADER
========================================================= */
.about-us-section .title-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #0f5ea8;
  margin-bottom: clamp(8px, 1.5vw, 16px);
  font-weight: 700;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.about-us-section .section-description {
  max-width: 760px;
  margin: 0 auto clamp(30px, 5vw, 60px);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
}

/* =========================
   NAVIGATION TABS
========================= */
.about-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 clamp(30px, 5vw, 50px);
  padding: 0;
  list-style: none; /* removes bullets */
}

.about-tab .nav-item {
  list-style: none; /* ensures no bullets */
}

.about-tab .nav-link {
  padding: 14px 18px;
  border-radius: 12px;
  background: #f5f5f5;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.about-tab .nav-link:hover {
  background: #fff;
  color: #f15825;
  border-color: #f15825;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-tab .nav-link.active {
  background: #f15825;
  color: #fff;
  box-shadow: 0 8px 24px rgba(241, 88, 37, 0.25);
}

/* =========================================================
   CARDS
========================================================= */
.snet-fullwidth .tab-content .card {
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   TITLES
========================================================= */
.tab-content .about-title {
  position: relative;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 35px;
}

.tab-content .about-title::before,
.tab-content .about-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 20px;
  background: #f15825;
}

.tab-content .about-title::before {
  width: 50px;
  bottom: -18px;
}
.tab-content .about-title::after {
  width: 100px;
  bottom: -8px;
}

/* =========================================================
   TEXT
========================================================= */
.tab-content .about-lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.tab-content .about-paragraph {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 14px;
}

.tab-content .about-tagline {
  margin-top: 24px;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  color: #111827;
}

/* =========================================================
   VISION CARDS
========================================================= */
.vision-card {
  background: #fff;
  border-radius: 12px;
  /* padding: 18px 20px; */
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-card i {
  font-size: 26px;
  color: #f15825;
  margin-bottom: 10px;
}

.vision-card h3 {
  font-size: 1rem;
  color: #0f5ea8;
  margin: 0;
}

/* =========================================================
   MISSION CARDS
========================================================= */
.mission-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f9f9;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  padding: 28px 22px;
  transition: all 0.3s ease;

  justify-content: flex-start; /* IMPORTANT CHANGE */
}

.mission-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.mission-card .icon {
  width: clamp(64px, 7vw, 78px);
  height: clamp(64px, 7vw, 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  border: 2px solid #f15825;
  background: #fff;
  transition: all 0.3s ease;
}

.mission-card:hover .icon {
  background: #f15825;
  transform: scale(1.05);
}

.mission-card .icon i {
  font-size: clamp(24px, 3vw, 34px);
  color: #f15825;
}

.mission-card:hover .icon i {
  color: #fff;
}

.mission-card h3 {
  margin-bottom: 12px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  text-align: center;
  color: #1f2937;
}

.mission-card p {
  margin: 0;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.7;
  color: #6b7280;
  text-align: center;
  max-width: 280px;
}

/* =========================================================
   RESPONSIVE FIXES
========================================================= */
@media (max-width: 575.98px) {
  .circle-image-wrapper {
    max-width: 220px;
  }
  .snet-fullwidth .tab-content .card {
    padding: 24px 18px;
  }
  .vision-card {
    padding: 12px 14px;
    font-size: 14px;
  }
  .mission-card {
    padding: 20px 16px;
  }
}
@media (max-width: 576px) {
  .about-tab {
    flex-direction: column !important;
    width: 100%;
  }

  .about-tab .nav-item {
    width: 100%;
  }

  .about-tab .nav-link {
    width: 100%;
    text-align: center;
  }

  .d-flex.justify-content-center.mb-4.pb-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
