main .banner-container {
  position: relative;
  margin: 20px 4% 50px;
  height: calc(100vh - 40px);
  min-height: 600px;
  background: none;
  /* Override background image */
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left-align like landing page branding */
  justify-content: center;
  z-index: 1;
  box-shadow: none;
  padding: 0 8%;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

main .banner-heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  z-index: 3;
  width: 100%;
  margin-top: 0;
  max-width: 800px;
}

main .banner-heading {
  color: #ffffff;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin: 0 0 15px 0;
  text-transform: none;
}

main .banner-subheading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

main .text-lightblue {
  color: #40A9FF;
}

@media (max-width: 991.98px) {
  main .banner-container {
    margin: 15px 2.5% 40px;
    width: 95%;
    height: 60vh;
    min-height: 400px;
    padding: 80px 6% 0;
  }

  .banner-heading {
    font-size: 2.4rem;
  }

  .banner-subheading {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  main .banner-container {
    height: 50vh;
    min-height: 320px;
    padding: 80px 5% 0;
  }

  .banner-heading {
    font-size: 1.8rem;
  }

  .banner-subheading {
    font-size: 1.1rem;
  }
}

.section {
  margin-bottom: 4rem;
  padding: 2rem 4rem;
}

.section h2 {
  font-size: 2.25rem;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
  border-left: 5px solid var(--color-accent);
  padding-left: 1rem;
}

.section p {
  color: var(--color-text-default);
  font-size: 1.1rem;
  max-width: 900px;
}

.image-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 2rem 0;
  border-radius: 12px;
}

.image-placeholder>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-box {
  background: var(--color-highlight);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-box:hover {
  background: var(--color-light-blue);
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.highlight-box h3 {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

ul.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 1rem;
}

ul.industry-list li {
  background: var(--color-light-blue);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--color-dark-blue);
}

.testimonial {
  background: #f4f7fa;
  padding: 1.5rem;
  border-left: 5px solid var(--color-accent);
  margin: 1.5rem 0;
  border-radius: 10px;
  color: var(--color-text-default);
  font-style: italic;
}

@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .section {
    margin-bottom: 2rem;
    padding: 2rem 2rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }
}

/* Commitment Section Styles */
.commitment-section {
  background: #013056;
  /* Brand match dark blue */
  padding: 80px 8%;
  color: #ffffff;
  overflow: visible;
}

.commitment-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-content {
  flex: 1.1;
  position: relative;
  padding-top: 10px;
}

.quote-img {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 80px;
  height: auto;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.commitment-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.commitment-text:last-of-type {
  margin-bottom: 0;
}

.commitment-image-wrapper {
  flex: 0.9;
  position: relative;
  display: inline-block;
}

.commitment-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.commitment-badge {
  position: absolute;
  bottom: -35px;
  right: -25px;
  background: #001529;
  /* Deep navy card */
  border-radius: 12px;
  padding: 20px 25px 25px 25px;
  width: 200px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-quote-img {
  width: 28px;
  height: auto;
  margin-bottom: 10px;
  display: block;
  filter: invert(53%) sepia(82%) saturate(1915%) hue-rotate(187deg) brightness(101%) contrast(101%);
}

.badge-text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 15px;
}

.badge-line {  margin-left: auto;
  width: 60px;
  height: 3px;
  background: #40A9FF;
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .commitment-section {
    padding: 60px 6%;
  }

  .commitment-container {
    flex-direction: column;
    gap: 60px;
  }

  .commitment-badge {
    bottom: -20px;
    right: 0;
    width: 230px;
    padding: 20px 25px;
  }
}

/* Who We Are Section */
.who-we-are-section {
  padding: 80px 8%;
  background: #ffffff;
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are-title {
  font-size: 3rem;
  color: #40A9FF;
  font-weight: 700;
  margin-bottom: 2rem;
}

.who-we-are-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.quote-icon-left {
  flex-shrink: 0;
  width: 80px;
  height: auto;
  margin-top: 10px;
  filter: invert(53%) sepia(82%) saturate(1915%) hue-rotate(187deg) brightness(101%) contrast(101%);
}

.who-we-are-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2D3748;
  font-weight: 400;
  margin: 0;
  padding-right: 40px;
}

.quote-icon-right {
  position: absolute;
  right: 10px;
  bottom: -40px;
  width: 120px;
  height: auto;
  opacity: 0.15;
  transform: rotate(180deg);
  pointer-events: none;
  filter: invert(53%) sepia(82%) saturate(1915%) hue-rotate(187deg) brightness(101%) contrast(101%);
}

@media (max-width: 991.98px) {
  .who-we-are-section {
    padding: 40px 6%;
  }

  .who-we-are-title {
    font-size: 2.2rem;
  }

  .who-we-are-text {
    font-size: 1.3rem;
  }

  .quote-icon-left {
    width: 45px;
    height: 45px;
  }

  .quote-icon-right {
    width: 70px;
    height: 70px;
    bottom: -30px;
  }
}

@media (max-width: 575.98px) {
  .who-we-are-content {
    flex-direction: column;
    gap: 12px;
  }

  .quote-icon-left {
    margin-top: 0;
  }

  .who-we-are-text {
    font-size: 1.15rem;
    padding-right: 0;
  }

  .quote-icon-right {
    display: none;
  }
}

/* Our Expertise Section Custom Redesign */
.expertise-section {
  position: relative;
  margin-top: 4%;
  margin-bottom: 4%;
  background: #013056;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  padding: 80px 6% 60px;
  overflow: visible;
}

.expertise-tab-wrapper {
  position: absolute;
  top: -25px;
  left: 5%;
}

.expertise-tab {
  background: #ffffff;
  padding: 12px 35px;
  border-radius: 20px;
}

.expertise-tab h2 {
  font-size: 2.2rem;
  color: #40A9FF;
  font-weight: 700;
  margin: 0;
  border: none;
  padding: 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
  margin-top: 20px;
}

.expertise-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.expertise-number {
  position: absolute;
  top: -48px;
  right: -30px;
  font-size: 6.5rem;
  font-weight: 800;
  color: #97D0FF;
  z-index: 1;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  line-height: 1;
  pointer-events: none;
}

.expertise-card {
  position: relative;
  z-index: 2;
  background: #2D527133;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #BFE2FF;
  border-top: 4px solid #BFE2FF;
  border-radius: 26px;
  padding: 30px;
  min-height: 180px;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(191, 226, 255, 0.15);
  background: rgba(45, 82, 113, 0.35);
}

.expertise-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 991.98px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .expertise-section {
    padding: 70px 6% 40px;
  }

  .expertise-tab h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .expertise-tab-wrapper {
    left: 4%;
    top: -20px;
  }

  .expertise-tab {
    padding: 10px 20px;
  }

  .expertise-tab h2 {
    font-size: 1.5rem;
  }

  .expertise-card {
    padding: 20px;
    border-radius: 20px;
  }

  .expertise-number {
    font-size: 4rem;
    top: -30px;
  }
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 80px 0px 8% 0px;
  background: #ffffff;
}

.mission-vision-container {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.mission-row,
.vision-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.mission-content {
  flex: 1.1;
  padding-left: 8%;
  padding-right: 4%;
  padding-top: 20px;
  /* offset slightly to line up with the top of the image */
}

.vision-content {
  position: relative;
  flex: 1.1;
  padding-right: 8%;
  padding-left: 10%;
  /* pushed more to the right side */
  padding-top: 20px;
}

.vision-decor-img {
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 140px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.mission-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.vision-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-start;
}

.blob-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blob-img:hover {
  transform: scale(1.02);
}

.mission-header-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.mission-quote {
  position: absolute;
  top: -45px;
  left: -35px;
  width: 90px;
  height: auto;
  opacity: 0.15;
  filter: invert(53%) sepia(82%) saturate(1915%) hue-rotate(187deg) brightness(101%) contrast(101%);
  pointer-events: none;
}

.section-title {
  font-size: 2.8rem;
  color: #071d38;
  font-weight: 700;
  margin: 0;
}

.text-lightblue-custom {
  color: #40A9FF;
}

.mission-vision-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #374151;
  font-weight: 400;
  margin: 0;
}

.vision-header-wrapper {
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .mission-vision-section {
    padding: 60px 6%;
  }

  .mission-row,
  .vision-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .vision-row {
    flex-direction: column-reverse;
  }

  .mission-image {
    margin-right: -6%;
    margin-left: 0;
    justify-content: flex-end;
    display: flex;
  }

  .vision-image {
    margin-left: -6%;
    margin-right: 0;
    justify-content: flex-start;
    display: flex;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .mission-quote {
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }

  .mission-vision-text {
    font-size: 1.15rem;
  }
}

/* Values & Culture Section */
.values-culture-section {
  position: relative;
  background: #ffffff;
  overflow: visible;
  padding-bottom: 0;
}

.values-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.values-content {
  position: relative;
  flex: 1.1;
  padding-left: 8%;
  padding-right: 4%;
  padding-top: 20px;
}

.values-decor-img {
  position: absolute;
  left: 0;
  bottom: -280px;
  width: 160px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.values-quote-img {
  position: absolute;
  right: 15%;
  bottom: -60px;
  width: 100px;
  height: auto;
  opacity: 0.15;
  transform: rotate(180deg);
  filter: invert(53%) sepia(82%) saturate(1915%) hue-rotate(187deg) brightness(101%) contrast(101%);
  pointer-events: none;
}

.values-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

/* Culture Block */
.culture-block {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 120px 8%;
  background: #013056;
  color: #ffffff;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

.culture-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.culture-title {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.culture-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 991.98px) {
  .values-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .values-image {
    margin-right: -6%;
    margin-left: 0;
    justify-content: flex-end;
    display: flex;
  }

  .values-decor-img {
    left: 0;
    transform: none;
    top: -30px;
  }

  .values-quote-img {
    right: 50%;
    transform: translateX(50%) rotate(180deg);
    bottom: -50px;
  }

  .culture-block {
    padding: 80px 6%;
    clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
  }

  .culture-title {
    font-size: 2.2rem;
  }

  .culture-text {
    font-size: 1.15rem;
  }
}

/* What Defines Us Section */
.defines-us-section {
  padding: 80px 8% 20px;
  background: transparent;
  position: relative;
  z-index: 2;
}

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

.defines-us-title {
  font-size: 3rem;
  color: #071d38;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: left;
}

.defines-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: -120px;
  position: relative;
  z-index: 3;
}

.defines-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 2px 2px 2.6px rgba(3, 19, 44, 0.6);
  border: 1px solid rgba(3, 19, 44, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.defines-card:hover {
  transform: translateY(-6px);
  box-shadow: 4px 4px 10px rgba(3, 19, 44, 0.4);
}

.defines-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(38, 132, 255, 0.1);
  color: #2684ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  overflow: hidden;
}

.defines-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.defines-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #071d38;
  margin-bottom: 12px;
  line-height: 1.3;
}

.defines-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* How We Work Section */
.how-we-work-section {
  position: relative;
  background: transparent;
  color: #ffffff;
  padding: 260px 8% 220px;
  margin-top: -100px;
  margin-bottom: 360px;
  z-index: 1;
}

.how-we-work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #013056;
  clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0 100%);
  z-index: -1;
}

.how-we-work-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-we-work-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6%;
  margin-bottom: 60px;
  padding-top: 40px;
}

.how-we-work-content {
  flex: 1.1;
}

.how-we-work-title {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.how-we-work-desc {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}

.how-we-work-image-wrapper {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-we-work-img {
  width: 100%;
  max-width: 480px;
  max-height: 500px;
  border-radius: 24px;
  object-fit: cover;
}

.how-we-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-bottom: -320px;
  position: relative;
  z-index: 3;
}

.how-step-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 2px 2px 2.6px rgba(3, 19, 44, 0.6);
  border: 1px solid rgba(3, 19, 44, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.how-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 4px 4px 10px rgba(3, 19, 44, 0.4);
}

.how-step-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.how-step-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  transform: scale(1.08);
}

.how-step-card:hover .how-step-img-wrapper img {
  transform: scale(1.15);
}

.how-step-body {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
}

.how-step-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #013056;
  margin-bottom: 12px;
}

.how-step-body p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.testimonial-section {
  padding-top: 400px !important;
  background: #ffffff;
  position: relative;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .defines-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: -80px;
  }

  .defines-us-title,
  .how-we-work-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .how-we-work-section {
    padding: 160px 8% 120px;
    margin-top: -40px;
    margin-bottom: 220px;
  }

  .how-we-work-intro {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .how-we-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: -180px;
  }

  .testimonial-section {
    padding-top: 240px !important;
  }
}

@media (max-width: 600px) {

  .defines-us-grid,
  .how-we-work-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .defines-us-section {
    padding: 60px 6%;
  }

  .how-we-work-section {
    padding: 100px 6% 60px;
    margin-top: 0;
    margin-bottom: 30px;
    clip-path: none;
  }

  .testimonial-section {
    padding-top: 60px !important;
  }
}