/* #region Start Page Hero */
.page-hero {
  background-color: var(--secondary-color, #1a2a5e);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--main-color, #e2231a);
}

.page-hero-content {
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #94a3b8;
}

.breadcrumb a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .divider {
  color: var(--main-color, #e2231a);
}

.breadcrumb .current {
  color: #ffffff;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero h1 span {
  color: var(--main-color, #e2231a);
}

.page-hero p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero p {
    font-size: 14px;
  }
}
/* #endregion End Page Hero */

/* #region Start Visual Split Overview */
.about-overview-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-title-group {
  margin-bottom: 24px;
  text-align: left;
}

.section-title-group.text-center {
  text-align: center;
}

.section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  line-height: 1.25;
}

.lead-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color, #1a2a5e);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-text-content p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-stat-card {
  background-color: var(--light-gray, #f5f6f8);
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-inline-start: 4px solid var(--secondary-color, #1a2a5e);
}

.about-stat-card strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--main-color, #e2231a);
}

.about-stat-card span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--secondary-color, #1a2a5e);
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(26, 42, 94, 0.12);
  height: 420px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--secondary-color, #1a2a5e);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--main-color, #e2231a);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.badge-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--main-color, #e2231a);
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
/* #endregion End Visual Split Overview */

/* #region Start Vision & Mission */
.vision-mission-section {
  padding-block: var(--section-padding, 80px);
  background-color: var(--light-gray, #f5f6f8);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vm-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 14px;
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26, 42, 94, 0.06);
}

.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vm-icon.red {
  background-color: #fef2f2;
  color: var(--main-color, #e2231a);
}

.vm-icon.blue {
  background-color: #eff6ff;
  color: var(--secondary-color, #1a2a5e);
}

.vm-icon svg {
  width: 24px;
  height: 24px;
}

.vm-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}
/* #endregion End Vision & Mission */

/* #region Start Capabilities Visual Showcase */
.capabilities-showcase {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.capabilities-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-item-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.capability-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color, #1a2a5e);
  box-shadow: 0 14px 30px rgba(26, 42, 94, 0.08);
}

.card-thumb {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.capability-item-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-info {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--main-color, #e2231a);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-info p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}
/* #endregion End Capabilities Visual Showcase */

/* #region Start Visual Certifications Grid */
.certifications-showcase {
  padding-block: var(--section-padding, 80px);
  background-color: var(--light-gray, #f5f6f8);
}

.section-intro {
  font-size: 15px;
  color: #64748b;
  max-width: 650px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.cert-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.cert-logo-box {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 160px;
}

.cert-logo-box:hover {
  transform: translateY(-4px);
  border-color: var(--main-color, #e2231a);
  box-shadow: 0 10px 24px rgba(26, 42, 94, 0.08);
}

.cert-logo-box img {
  max-width: 85%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.cert-logo-box span {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary-color, #1a2a5e);
}
/* #endregion End Visual Certifications Grid */

/* #region Start Client Trust Strip */
.clients-trust-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.clients-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.client-logo-item {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 16px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.client-logo-item.black {
  background-color: #000;
}
.client-logo-item:hover {
  transform: translateY(-3px);
  border-color: var(--secondary-color, #1a2a5e);
  box-shadow: 0 10px 20px rgba(26, 42, 94, 0.06);
}

.client-logo-item img {
  max-width: 85%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* #endregion End Client Trust Strip */

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .cert-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image-wrapper {
    height: 320px;
  }

  .capabilities-image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clients-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .cert-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}