/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Helvetica, sans-serif;
  background-color: white;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Helvetica, sans-serif;
}

/* Navigation Bar */
.nav-bar {
  width: 100%;
  height: 80px;
  background-color: white;
  box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 0 156px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-root {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 37px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: 0;
  text-decoration: none;
}

.nav-link-text {
  font-family: 'Poppins', Helvetica;
  font-weight: 500;
  color: black;
  font-size: 16px;
  line-height: normal;
}

.dropdown-icon {
  width: 24px;
  height: 24px;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  height: auto;
  background-color: #603f83;
  border-radius: 10px;
  padding: 10px 20px;
  color: white;
}

.btn-primary:hover {
  background-color: #4e3269;
}

.btn-text {
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: white;
  font-size: 16px;
  white-space: nowrap;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 44px 156px 20px;
  background-color: #f9f9fb;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 58% at 50% -6%,
    rgba(96, 63, 131, 0.4) 0%,
    rgba(129, 92, 168, 0.24) 38%,
    rgba(129, 92, 168, 0.12) 56%,
    rgba(129, 92, 168, 0) 78%
  );
  opacity: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-heading {
  font-family: 'Poppins', Helvetica;
  font-weight: 700;
  color: #5e3d80;
  font-size: 68px;
  line-height: 1.2;
}

.hero-subtitle {
  width: 100%;
  max-width: 520px;
  font-family: 'Poppins', Helvetica;
  font-weight: 500;
  color: #727272;
  font-size: 36px;
  line-height: 1.3;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.btn-primary-cta {
  height: auto;
  width: 182px;
  padding: 14px 16px;
  background-color: #603f83;
  border-radius: 8px;
  font-family: 'Poppins', Helvetica;
  font-weight: 500;
  color: white;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  border: none;
}

.btn-primary-cta:hover {
  background-color: #4e3269;
}

.btn-outline-cta {
  height: auto;
  width: 286px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.4px solid #603f83;
  background-color: transparent;
  font-family: 'Poppins', Helvetica;
  font-weight: 500;
  color: #603f83;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}

.hero-image-wrap {
  width: 700px;
  max-width: 56%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: calc(50% - 50vw);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Trusted Logos Stripe */
.trusted-logos-section {
  width: 100%;
  background: #f7f7f8;
  border-top: 1px solid #ececf1;
  border-bottom: 1px solid #ececf1;
  padding: 30px 156px 24px;
}

.trusted-logos-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.trusted-logos-label {
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 22px;
}

.trusted-logos-viewport {
  width: 100%;
  overflow: hidden;
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  flex-wrap: nowrap;
  animation: trustedLogosScrollRight 22s linear infinite;
}

.trusted-logo-image {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
}

@keyframes trustedLogosScrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.btn-outline-cta:hover {
  background-color: rgba(96, 63, 131, 0.05);
}

/* Trust Highlights Section */
.trust-highlights-section {
  width: 100%;
  background: linear-gradient(180deg, rgba(96, 63, 131, 1) 0%, rgba(87, 56, 121, 1) 53%, rgba(74, 50, 100, 1) 100%);
  padding: 14px 156px;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  overflow: hidden;
}

.stat-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1 1 0;
  min-width: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-align: center;
}

.stat-value {
  font-family: 'Poppins', Helvetica;
  font-weight: 600;
  color: white;
  font-size: 42px;
  text-align: center;
  line-height: 44px;
}

.stat-label {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  opacity: 0.35;
}

/* About Section */
.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 94px 16px;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: 1128px;
}

.about-images {
  position: relative;
  width: 552px;
  flex-shrink: 0;
  height: 549px;
}

.about-image-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 552px;
  height: 320px;
  border-radius: 12px;
  background-image: url(/assets/abot\ large.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.about-image-bottom-right {
  position: absolute;
  top: 336px;
  left: 284px;
  width: 268px;
  height: 216px;
  border-radius: 12px;
  background: url(/assets/about\ right.svg) 50% 50% / cover, linear-gradient(0deg, rgba(221, 221, 221, 1) 0%, rgba(221, 221, 221, 1) 100%);
}

.about-image-bottom-left {
  position: absolute;
  top: 336px;
  left: 0;
  width: 268px;
  height: 216px;
  border-radius: 16px;
  background: url(/assets/about\ left.svg) 50% 50% / cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  width: 528px;
  gap: 22px;
}

.about-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #0f172a;
  font-size: 48px;
  line-height: normal;
}

.about-text-section {
  display: flex;
  flex-direction: column;
  gap: 37px;
  width: 100%;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.about-paragraph {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 18px;
  line-height: 29.2px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: #0f172a;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
}

.feature-description {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

/* Locations Section */
.locations-section {
  width: 100%;
  padding: 40px 16px;
}

.locations-card {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  background-color: #11233b;
  border-radius: 16px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 41px;
  padding: 38px 37px;
}

.locations-heading {
  width: 272px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.locations-subtitle {
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.locations-title {
  width: 266px;
  margin-top: 8px;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: white;
  font-size: 30px;
  line-height: normal;
}

.locations-description {
  margin-top: 15px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.locations-grid {
  --location-col-width: 161px;
  --location-col-gap: 122px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-width: 0;
}

.locations-row {
  display: flex;
  flex-direction: row;
  gap: var(--location-col-gap);
}

.location-item {
  display: flex;
  flex-direction: column;
  width: var(--location-col-width);
  gap: 4px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.location-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.location-city {
  flex: 1;
  margin-top: -1px;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: white;
  font-size: 18px;
  line-height: 28px;
}

.badge {
  margin-left: 4px;
  padding: 4px 8px;
  background-color: white;
  color: #5d4c94;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  border-radius: 4px;
  white-space: nowrap;
  height: auto;
}

.location-address {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.location-address-line {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
}

.location-divider {
  width: calc((var(--location-col-width) * 3) + (var(--location-col-gap) * 2));
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 6px 0;
  margin-left: 0;
  flex-shrink: 0;
}

/* Engagement Section */
.engagement-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 16px 150px;
}

.engagement-container {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  max-width: 1123px;
  align-items: flex-start;
}

.engagement-image {
  position: relative;
  width: 552px;
  min-width: 552px;
  height: 838px;
  border-radius: 16px;
  background-image: url(/assets/Container\ trust.svg);
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}

.trusted-badge {
  position: absolute;
  bottom: -60px;
  left: 180px;
  width: 489px;
  height: 135px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  background-color: #274d7f;
  border-radius: 20px;
  border: 10px solid white;
}

.trusted-icon {
  width: 62px;
  height: 62px;
  margin-left: 56px;
  flex-shrink: 0;
}

.trusted-text {
  display: flex;
  flex-direction: column;
}

.trusted-title {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: white;
  font-size: 36.9px;
  line-height: 49.2px;
  white-space: nowrap;
}

.trusted-subtitle {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: white;
  font-size: 21.5px;
  line-height: 30.8px;
  white-space: nowrap;
}

.engagement-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 57px;
  padding-top: 91px;
}

.engagement-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  font-size: 48px;
  line-height: 67.2px;
  margin-bottom: 40px;
  width: 473px;
}

.engagement-heading-black {
  color: black;
}

.engagement-heading-purple {
  color: #6b4c9a;
}

.engagement-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 10px;
}

.engagement-feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.engagement-feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.engagement-feature-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  flex: 1;
}

.engagement-feature-title {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: #0f172a;
  font-size: 24px;
  line-height: 32px;
  white-space: nowrap;
}

.engagement-feature-description {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 16px;
  line-height: 26px;
  max-width: 418px;
}

/* Value Section (Engagement Models) */
.value-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(179deg, rgba(11, 35, 57, 1) 0%, rgba(56, 38, 76, 1) 40%, rgba(53, 35, 72, 1) 98%);
  padding: 120px 0;
}

.blur-circle {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 26843500px;
  filter: blur(48px);
  pointer-events: none;
}

.blur-circle-top {
  top: 0;
  right: calc(50% - 353px);
  background-color: rgba(107, 76, 154, 0.1);
}

.blur-circle-bottom {
  bottom: 0;
  left: 0;
  background-color: rgba(30, 77, 123, 0.1);
}

.value-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 53px;
  padding: 0 16px;
}

.value-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: white;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
  white-space: nowrap;
}

.value-subheading {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: white;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
}

.value-cards {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

.value-card {
  width: 360px;
  height: 447px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 0.8px solid #9650e0;
  flex-shrink: 0;
}

.value-card-content {
  position: relative;
  top: 54px;
  left: 32px;
  width: 297px;
}

.value-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.value-card-category {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #1f7aff;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 20px;
  margin-bottom: 8px;
}

.value-card-title {
  font-family: 'Poppins', Helvetica;
  font-weight: 600;
  color: #f6f7ff;
  font-size: 24px;
  line-height: 32px;
  white-space: nowrap;
  margin-bottom: 11px;
}

.value-card-description {
  font-family: 'Poppins', Helvetica;
  font-weight: 400;
  color: rgba(235, 238, 248, 0.82);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}

.value-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 20px;
}

.value-card-dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 26843500px;
  flex-shrink: 0;
}

.value-card-feature-text {
  font-family: 'Poppins', Helvetica;
  font-weight: 400;
  color: rgba(227, 231, 244, 0.86);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.value-card:nth-child(2) .value-card-category {
  color: #1cf27d;
}

.value-card:nth-child(3) .value-card-category {
  color: #df35ff;
}

/* Quality Section (How It Works) */
.quality-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 43, 1) 0%, rgba(30, 77, 123, 1) 50%, rgba(15, 23, 43, 1) 100%);
}

.quality-heading {
  width: 100%;
  max-width: 1128px;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #faf6ff;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
}

.quality-cards-wrapper {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.quality-cards-wrapper:active {
  cursor: grabbing;
}

.quality-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.quality-cards-wrapper {
  scrollbar-width: none;
}

.quality-cards {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
  width: max-content;
  animation: qualityMarquee 28s linear infinite;
  will-change: transform;
}

@keyframes qualityMarquee {
  0% {
    transform: translate3d(calc(-50% - 12px), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.quality-card {
  flex-shrink: 0;
  width: 552px;
  height: 556px;
  border-radius: 24px;
  border: 0;
  box-shadow: none;
}

.quality-card-blue {
  background-color: rgb(239, 246, 255);
}

.quality-card-purple {
  background-color: rgb(250, 245, 255);
}

.quality-card-green {
  background-color: rgb(240, 253, 244);
}

.quality-card-amber {
  background-color: rgb(254, 252, 232);
}

.quality-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 40px 0;
  height: 100%;
}

.quality-card-info {
  position: relative;
  width: 100%;
  height: 164px;
}

.quality-card-number {
  position: absolute;
  top: 0;
  left: 0;
  height: 48px;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.8);
  font-size: 48px;
  line-height: 48px;
  white-space: nowrap;
}

.quality-card-title {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: 36px;
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #0f172a;
  font-size: 30px;
  line-height: 36px;
}

.quality-card-description {
  position: absolute;
  top: 112px;
  left: 0;
  width: 100%;
  height: 52px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 16px;
  line-height: 26px;
}

.quality-card-image {
  width: 100%;
  height: 288px;
  border-radius: 16px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.quality-card-image-1 {
  background-image: url(/assets/quality\ 1.png);
}

.quality-card-image-2 {
  background-image: url(/assets/selection\ 2.png);
}

.quality-card-image-3 {
  background-image: url(/assets/readiness\ 2.png);
}

.quality-card-image-4 {
  background-image: url(/assets/last\ img.png);
}

/* Levels Section (Our Quality System) */
.levels-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80.8px;
  background: linear-gradient(180deg, rgba(42, 99, 154, 1) 0%, rgba(5, 3, 33, 1) 83%, rgba(0, 0, 0, 1) 100%);
  padding: 140px 0;
}

.levels-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.levels-heading {
  width: 653px;
  font-weight: 700;
  color: white;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
  font-family: 'Inter', Helvetica;
}

.levels-subheading {
  width: 653px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: white;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  margin-top: 16px;
}

.levels-cards {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.level-card {
  position: relative;
  width: 360px;
  height: 650px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  border: 0.8px solid #919098;
  backdrop-filter: blur(2px) brightness(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 1px 0 0 rgba(255, 255, 255, 0.32), inset 0 -1px 1px rgba(0, 0, 0, 0.13), inset -1px 0 1px rgba(0, 0, 0, 0.11);
  padding: 0;
}

.level-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 228px;
  background-size: cover;
  background-position: center;
}

.level-card-image-1 {
  background-image: url(/assets/quality\ img\ 1.png);
}

.level-card-image-2 {
  background-image: url(/assets/quality\ img\ 2.png);
}

.level-card-image-3 {
  background-image: url(/assets/quality\ img\ 3.png);
}

.level-card-content {
  position: absolute;
  top: 249px;
  left: 24px;
  width: 291px;
  height: 377px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}

.level-card-icon {
  width: 48px;
  height: 48px;
}

.level-card-title {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: white;
  font-size: 20px;
  line-height: 28px;
}

.level-card-description {
  width: 100%;
  min-height: 78px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 26px;
}

.level-card-strengths {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.level-card-strengths-title {
  font-family: 'Poppins', Helvetica;
  font-weight: 600;
  color: white;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.level-card-strengths-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.level-card-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 20px;
}

.level-card-dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.level-card-strength-text {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
}

/* Capabilities Section */
.capabilities-section {
  width: 100%;
  background-color: #f6eeff;
  padding: 120px 0;
}

.capabilities-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 16px;
}

.capabilities-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.capabilities-heading {
  font-weight: 700;
  color: #0f172a;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
  font-family: 'Inter', Helvetica;
  white-space: nowrap;
}

.capabilities-subheading {
  color: rgba(15, 23, 42, 0.7);
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  max-width: 629px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.capability-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 294px;
  padding: 0.8px;
  background-color: white;
  border-radius: 14px;
  overflow: hidden;
  border: 0.8px solid rgba(0, 0, 0, 0.1);
}

.capability-card-image {
  position: relative;
  width: 100%;
  height: 128px;
  flex-shrink: 0;
  background-size: cover;
  background-position: 50% 50%;
}

.capability-card-image-1 {
  background-image: url(/assets/capability\ 1.png );
}

.capability-card-image-2 {
  background-image: url(/assets/capability\ 2.png);
}

.capability-card-image-3 {
  background-image: url(/assets/capability\ 3.png);
}

.capability-card-image-4 {
  background-image: url(/assets/capability\ 4.png);
}

.capability-card-image-5 {
  background-image: url(/assets/capability\ 5.png);  
}

.capability-card-image-6 {
  background-color: #ececf0;
  background-image: url(/assets/capability\ 6.png);
}

.capability-card-image-7 {
  background-image: url(/assets/capabilty\ 7.png);
}

.capability-card-image-8 {
  background: url(/assets/capability\ 8.png) 50% 50% / cover, linear-gradient(0deg, rgba(236, 236, 240, 1) 0%, rgba(236, 236, 240, 1) 100%);
}

.capability-card-image-9 {
  background-image: url(/assets/capability\ 9.png);
}

.capability-card-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex: 1;
  min-height: 0;
}

.capability-card-title {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: #0f172a;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
  margin-bottom: 8px;
}

.capability-card-description {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 14px;
  line-height: 19.2px;
  margin-bottom: 12px;
  flex: 1;
}

.capability-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.capability-tag {
  background-color: #6b4c9a;
  color: white;
  font-size: 12px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  line-height: 16px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Team Section */
.team-section {
  width: 100%;
  padding: 72px 0 52px;
  background-color: #ffffff;
}

.team-header {
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  padding: 0 156px;
}

.team-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #0f172a;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.02em;
}

.team-heading-accent {
  color: #1e4d7b;
}

.team-subheading {
  margin-top: 12px;
  max-width: 680px;
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.7);
  font-size: 16px;
  line-height: 28px;
}

.team-container {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 156px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.team-container::-webkit-scrollbar {
  display: none;
}

.team-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  min-width: 320px;
  gap: 12px;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  scroll-snap-align: start;
}

.team-card-image {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.team-card-image-1,
.team-card-image-2 {
  background: linear-gradient(180deg, rgba(30, 74, 118, 1) 0%, rgba(16, 11, 26, 1) 100%);
}

.team-card-image-placeholder {
  background-image: url(/container-19.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.team-member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-photo-2 {
  top: 12px;
  width: 95%;
  left: 2.5%;
  height: 96%;
}

.team-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.team-member-name {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: #0f172a;
  font-size: 18px;
  line-height: 27px;
  white-space: nowrap;
}

.team-member-title {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.6);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* Inquiry Section */
.inquiry-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
  gap: 62.8px;
  background: linear-gradient(180deg, rgba(21, 25, 83, 1) 0%, rgba(7, 54, 92, 1) 27%, rgba(9, 41, 67, 1) 96%);
}

.inquiry-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 896px;
  padding: 0 16px;
}

.inquiry-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 700;
  color: white;
  font-size: 48px;
  text-align: center;
  line-height: 48px;
  white-space: nowrap;
}

.inquiry-subtitle {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  text-align: center;
  line-height: 28px;
  white-space: nowrap;
}

.inquiry-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.btn-inquiry-primary {
  height: auto;
  width: 177px;
  padding: 17px 24px;
  background-color: white;
  border-radius: 10px;
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: #1e4d7b;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  white-space: nowrap;
  border: none;
}

.btn-inquiry-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-inquiry-outline {
  height: auto;
  width: 180px;
  padding: 17px 24px;
  background-color: transparent;
  border-radius: 10px;
  border: 1.6px solid white;
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: white;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-inquiry-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mail-icon {
  width: 20px;
  height: 20px;
}

.inquiry-email {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}

.inquiry-email-text {
  font-weight: 500;
  color: white;
}

.inquiry-email-link {
  font-weight: 500;
  color: white;
  text-decoration: underline;
}

/* Footer Section */
.footer-section {
  width: 100%;
  background-color: #0f172a;
  padding: 64px 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 155px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 158px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  width: 226px;
  gap: 28px;
  flex-shrink: 0;
}

.footer-logo {
  width: 63px;
  height: 28.62px;
}

.footer-tagline {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 22.8px;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex: 1;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.footer-nav-heading {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: white;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  height: 20px;
  font-family: 'Inter', Helvetica;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: white;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.footer-social-link {
  display: block;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
}

.footer-divider {
  margin-top: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  height: 1px;
  width: 100%;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.footer-copyright-text {
  font-family: 'Inter', Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* Scrollbar Styles */
.quality-cards-wrapper::-webkit-scrollbar {
  height: 8px;
}

.quality-cards-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.quality-cards-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.quality-cards-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .nav-bar {
    padding: 0 40px;
  }

  .hero-section {
    padding: 80px 40px;
  }

  .locations-section {
    padding: 40px 40px;
  }

  .team-section {
    padding: 72px 0 52px;
  }

  .footer-container {
    padding: 0 40px;
  }
}

/* Tablet layout */
@media (max-width: 1024px) {
  .nav-bar {
    padding: 0 24px;
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-section {
    padding: 56px 24px 32px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-image-wrap {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .hero-heading {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .stats-container {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .stat-label {
    white-space: normal;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    width: 100%;
    max-width: 552px;
  }

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

  .locations-card {
    flex-direction: column;
  }

  .locations-heading {
    width: 100%;
  }

  .locations-description {
    white-space: normal;
  }

  .locations-grid {
    --location-col-gap: 64px;
  }

  .engagement-container {
    flex-direction: column;
  }

  .engagement-image {
    width: 100%;
    min-width: 0;
  }

  .engagement-content {
    padding: 64px 24px 0;
  }

  .engagement-heading {
    width: 100%;
  }

  .levels-heading,
  .levels-subheading {
    width: 100%;
    padding: 0 24px;
  }

  .levels-cards {
    flex-wrap: wrap;
    padding: 0 24px;
  }

  .capabilities-container {
    padding: 0 24px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-header {
    padding: 0 24px;
  }

  .team-container {
    padding: 0 24px;
  }

  .inquiry-heading {
    white-space: normal;
  }

  .inquiry-subtitle {
    white-space: normal;
  }

  .inquiry-buttons {
    flex-wrap: wrap;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-top {
    gap: 64px;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  .nav-bar {
    padding: 8px 12px;
    height: auto;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
    padding-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link-item {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.04);
    white-space: nowrap;
    min-width: max-content;
    line-height: 1.2;
  }

  .nav-link-text {
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
  }

  .nav-cta {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: max-content;
    padding: 7px 10px;
    line-height: 1.2;
  }

  .nav-cta .btn-text {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
  }

  .hero-image-wrap {
    /* Prevent horizontal overflow that creates right-side whitespace */
    margin-right: 0;
  }

  .btn-primary {
    padding: 8px 14px;
  }

  .hero-section {
    padding: 40px 16px 24px;
  }

  .hero-heading {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;
  }

  .trusted-logos-section {
    padding: 24px 16px 20px;
  }

  .trusted-logos-label {
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
  }

  .stat-divider {
    display: none;
  }

  .about-section {
    padding: 64px 16px;
  }

  .about-images {
    height: 460px;
    margin-bottom: 32px;
  }

  .about-image-large {
    width: 100%;
  }

  /* Re-anchor the collage so it doesn't overflow/collapse on small widths */
  .about-image-bottom-left {
    left: 0;
    top: 280px;
  }

  .about-image-bottom-right {
    left: auto;
    right: 0;
    top: 280px;
  }

  .about-image-bottom-right,
  .about-image-bottom-left {
    width: calc(50% - 8px);
  }

  .about-heading {
    font-size: 34px;
  }

  .feature-title,
  .feature-description {
    white-space: normal;
  }

  .locations-section {
    padding: 32px 16px;
  }

  .locations-grid {
    --location-col-width: 100%;
    --location-col-gap: 24px;
  }

  .locations-row {
    flex-direction: column;
  }

  .location-divider {
    width: 100%;
  }

  .value-section {
    padding: 80px 0;
  }

  .value-heading {
    font-size: 34px;
    white-space: normal;
  }

  .value-cards {
    flex-direction: column;
  }

  .value-card {
    width: 100%;
    max-width: 360px;
  }

  .quality-section {
    padding: 80px 0;
  }

  .quality-heading {
    font-size: 34px;
    padding: 0 16px;
  }

  .levels-section {
    padding: 96px 0;
  }

  .levels-cards {
    flex-direction: column;
    align-items: center;
  }

  .level-card {
    width: 100%;
    max-width: 360px;
  }

  .capabilities-section {
    padding: 80px 0;
  }

  .capabilities-heading {
    font-size: 34px;
    white-space: normal;
  }

  .capabilities-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-header {
    padding: 0 16px;
  }

  .team-heading {
    font-size: 34px;
  }

  .team-container {
    padding: 0 16px;
  }

  .inquiry-section {
    padding: 80px 0;
  }

  .inquiry-heading {
    font-size: 32px;
  }

  .inquiry-buttons {
    flex-direction: column;
  }

  .btn-inquiry-primary,
  .btn-inquiry-outline {
    width: 100%;
  }

  .footer-section {
    padding: 48px 0;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav-heading,
  .footer-nav-link,
  .footer-tagline {
    white-space: normal;
  }
}
