.Hero-section {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background-image: url("/images/about-us/hero-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

  .Hero-section .HSOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 100%);
    opacity: 0.9;
    z-index: 0;
  }

  .Hero-section h1 {
    position: relative;
    z-index: 1;
  }

@media (max-width: 768px) {
  .Hero-section {
    height: 150px;
  }
}

.WhoWeAreSection {
  padding: 112px 0;
}

  .WhoWeAreSection .WWASTitle {
    margin-top: 0.5rem;
    color: var(--primary-dark);
  }

  .WhoWeAreSection .WWASDesc {
    margin-top: 1rem;
    color: var(--text-medium);
  }

  .WhoWeAreSection .WWRSCard {
    background: var(--primary-light);
    border-radius: 16px;
    text-align: center;
    padding: 32px 16px;
    height: 100%;
    color: var(--primary-dark);
  }

    .WhoWeAreSection .WWRSCard i {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

  .WhoWeAreSection .WWASCardTitle {
    color: var(--primary-dark);
  }

@media (max-width: 768px) {
  .WhoWeAreSection {
    padding: 68px 0;
  }
}

.ContactUsSection {
  padding: 112px 0;
  background: var(--bg-primary-light);
}

.CUContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.CUTitle {
  margin: 0.5rem;
  color: var(--primary-dark);
}

.CUDesc {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.CUCard {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}

  .CUCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

    .CUCard:hover .CUIcon {
      background-size: 200% 200%;
      animation: gradientShift 0.5s ease forwards;
    }

.CUIcon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 20%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
  transition: all 0.5s ease;
}

  .CUIcon i {
    font-size: 24px;
    color: var(--white);
  }

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.CUContent {
  flex: 1;
}

.CUCardTitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.CUCardDesc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
  word-break: break-word;
}

  .CUCardDesc a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

    .CUCardDesc a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

@media (max-width: 768px) {
  .ContactUsSection {
    padding: 60px 0;
  }

  .CUCard {
    padding: 24px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .CUIcon {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.BuiltOnFoundationsSection {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.BOFContainer {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.BOFTitle {
  margin: 8px 0 32px;
  font-weight: 700;
  color: var(--primary-dark);
}

.BOFCard {
  background: var(--bg-primary-light);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

  .BOFCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

.BOFCard {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.BOFCardInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.BOFIcon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .BOFIcon i {
    font-size: 1.5rem;
    color: var(--white);
  }

.BOFCardTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.BOFCardDesc {
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .BuiltOnFoundationsSection {
    padding: 68px 0;
  }

  .BOFCard {
    padding: 32px 24px;
  }

  .BOFIcon {
    width: 56px;
    height: 56px;
  }

    .BOFIcon i {
      font-size: 28px;
    }

  .BOFCardTitle {
    font-size: 20px;
  }

  .BOFCardDesc {
    font-size: 15px;
  }
}

.OurMissionSection {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background-image: url("/images/about-us/hero-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 112px 0;
}

  .OurMissionSection .Overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 100%);
    opacity: 0.9;
    z-index: 0;
  }

  .OurMissionSection .Content {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    text-align: center;
    flex-direction: column;
    max-width: 720px;
  }

  .OurMissionSection .MissionTitle {
    margin-top: 12px;
  }

  .OurMissionSection .MissionDesc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
  }

@media (max-width: 768px) {
  .OurMissionSection {
    padding: 68px 0;
  }
}

.WhatWeDoSection {
  padding: 112px 0;
  background: var(--bg-primary-light);
}

  .WhatWeDoSection .WTDContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .WhatWeDoSection .WTDTitle {
    margin-top: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
  }

  .WhatWeDoSection .WTDDesc {
    max-width: 820px;
    margin: 1rem auto 0;
    color: var(--text-medium);
    line-height: 1.7;
  }

  .WhatWeDoSection .WTDCard {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

    .WhatWeDoSection .WTDCard:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

  .WhatWeDoSection .WTDHeader {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .WhatWeDoSection .WTDIcon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

    .WhatWeDoSection .WTDIcon i {
      font-size: 1rem;
      color: var(--white);
    }

  .WhatWeDoSection .WTDCardTitle {
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
  }

  .WhatWeDoSection .WTDCardDesc {
    margin-top: 10px;
    color: var(--text-medium);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: start;
  }

@media (max-width: 768px) {
  .WhatWeDoSection {
    padding: 68px 0;
  }
}

.WhyChooseUs {
  padding: 112px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
}

  .WhyChooseUs .WCUTitle {
    margin: 1rem 0 0.5rem;
    color: var(--white);
  }

  .WhyChooseUs .WCUDesc {
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  .WhyChooseUs .WCUListItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
  }

  .WhyChooseUs .WCUListItemText {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }

  .WhyChooseUs .WCUImage {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    border-radius: 16px;
    background-image: url("/images/about-us/why-choose.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* shadow from left & top */
    box-shadow: -20px -20px 0 rgba(13, 48, 89, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

    .WhyChooseUs .WCUImage:hover {
      transform: translate(6px, 6px);
      box-shadow: -16px -16px 0 rgba(13, 48, 89, 0.12), -32px -32px 0 rgba(13, 48, 89, 0.06);
    }

    .WhyChooseUs .WCUImage::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
    }

  .WhyChooseUs .WCUInfoContainer {
    display: flex;
    align-items: center;
    height: 100%;
  }
