/* ============================================================
   RESET & BASE
   ============================================================ */
.about-us,
.about-us * {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.about-us {
  background: #ffffff;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   NAVBAR (new flex navbar)
   ============================================================ */
.about-navbar {
  position: relative;
  z-index: 100;
  background: #ffffff;
  width: 100%;
  height: 103px;
}

.about-navbar-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  height: 103px;
  position: relative;
}

.about-navbar-logo {
  position: absolute;
  left: 53px;
  top: 16px;
  width: 207px;
  height: 76px;
  display: block;
  text-decoration: none;
}

.about-navbar-logo-img {
  width: 207px;
  height: 76px;
  object-fit: cover;
  aspect-ratio: 207 / 76;
}

.about-navbar-logo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.8px;
  background: #ffffff;
}

.about-navbar-links {
  position: static;
}

.about-nav-link {
  position: absolute;
  top: 42px;
  width: 112px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter-Medium", sans-serif;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  text-align: center;
}

.about-nav-active {
  color: #000000;
}

.about-navbar-links .about-nav-link:nth-child(1) {
  left: 390px;
}

.about-navbar-links .about-nav-link:nth-child(2) {
  left: 522px;
}

.about-navbar-links .about-nav-link:nth-child(3) {
  left: 654px;
}

.about-navbar-links .about-nav-link:nth-child(4) {
  left: 786px;
}

.about-solutions-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.about-solutions-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.about-solutions-trigger.is-open::after {
  transform: rotate(180deg);
}

.about-solutions-trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 4px;
}

.solutions-mega-menu {
  position: absolute;
  left: 50%;
  top: 88px;
  transform: translateX(-50%) translateY(8px);
  width: min(1180px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 140;
}

.solutions-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.solutions-mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.solutions-mega-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.solutions-mega-list {
  display: grid;
  gap: 14px;
}

.solutions-mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(30, 41, 59, 0.76);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}

.solutions-mega-link .material-symbols-outlined {
  color: rgba(236, 91, 19, 0.78);
  font-size: 20px;
}

.solutions-mega-link:hover {
  color: #ec5b13;
}

.solutions-mega-link-industry:hover {
  color: #2563eb;
}

.solutions-mega-link-industry .material-symbols-outlined {
  color: #2563eb;
}

.solutions-platform-list {
  display: grid;
  gap: 14px;
}

.solutions-platform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.solutions-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.solutions-platform-icon .material-symbols-outlined {
  font-size: 20px;
}

.solutions-platform-icon-teal { background: #ccfbf1; color: #0f766e; }
.solutions-platform-icon-red { background: #fee2e2; color: #b91c1c; }
.solutions-platform-icon-orange { background: #ffedd5; color: #c2410c; }
.solutions-platform-icon-green { background: #dcfce7; color: #15803d; }
.solutions-platform-icon-blue { background: #dbeafe; color: #1d4ed8; }

.solutions-platform-name {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.solutions-platform-meta {
  margin: 3px 0 0;
  color: rgba(30, 41, 59, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .solutions-mega-menu {
    width: calc(100vw - 20px);
    max-height: 70vh;
    overflow-y: auto;
    padding: 18px;
  }

  .solutions-mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-lang-switcher {
  position: absolute;
  left: 970px;
  top: 36px;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.about-lang-button {
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 4px 12px;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  cursor: pointer;
}

.about-lang-button.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.about-lang-button.is-inactive {
  color: #6b7280;
}

.about-navbar-cta-wrap {
  position: absolute;
  left: 1079px;
  top: 32px;
  width: 138px;
  height: 40px;
}

.about-navbar-cta-shadow {
  background: #0f172a;
  border-radius: 8px;
  position: absolute;
  inset: 0;
}

.about-navbar-cta {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  position: absolute;
  left: 11.77px;
  top: 10px;
  width: 114.47px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}

/* ============================================================
   NAVBAR (legacy absolute — kept for reference, elements removed)
   ============================================================ */
.chat-gpt-image-26-feb-2026-11-24-32-1 {
  position: absolute;
  left: 32px;
  top: 14px;
  width: 160px;
  height: auto;
  object-fit: contain;
  z-index: 10;
}

.works,
.about-us3,
.services,
.solutions {
  position: absolute;
  top: 20px;
  font-family: "Inter-Medium", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.works      { left: calc(50% - 190px); }
.about-us3  { left: calc(50% - 90px);  }
.services   { left: calc(50% + 10px);  }
.solutions  { left: calc(50% + 110px); }

.background6 {
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  right: 180px;
  top: 10px;
  z-index: 10;
}

.button3 {
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.button4 {
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.en {
  color: #0f172a;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.id {
  color: #6b7280;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.button-shadow2 {
  background: #0f172a;
  border-radius: 8px;
  position: absolute;
  right: 32px;
  top: 8px;
  padding: 10px 20px;
  z-index: 10;
}

.start-a-project {
  color: #ffffff;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  right: 32px;
  top: 8px;
  padding: 10px 20px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
}

/* ============================================================
   MAIN WRAPPER
   ============================================================ */
.main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 583px;
  height: 583px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.container49 {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.container50 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 763px;
  max-width: 763px;
  position: absolute;
  left: calc(50% - 582px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}

.overlay2 {
  background: rgba(12, 91, 237, 0.1);
  border-radius: 9999px;
  padding: 4px 16px;
  display: inline-flex;
  align-items: center;
}

.text22 {
  color: #0c5bed;
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.heading-1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
}

.hi-we-are-hexavara-tech {
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: #0f172a;
}

.hi-we-are-hexavara-tech-span {
  color: #0f172a;
  line-height: 1.1;
}

.hi-we-are-hexavara-tech-span2 {
  color: #0c5bed;
}

.container51 {
  width: 574.31px;
  max-width: 574.31px;
}

.founded-in-2013-by-its-students-hexavara-has-grown-from-an-academic-dream-into-a-powerhouse-of-digital-innovation-our-journey-began-with-a-shared-passion-for-technology-and-a-vision-to-transform-the-digital-landscape {
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  width: 100%;
  min-height: 88px;
}

.container52 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  height: 52px;
}

.button-shadow3 {
  background: #111827;
  border-radius: 12px;
  display: inline-block;
  position: relative;
}

.consult-now2 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  background: #111827;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  margin-top: 12px;
}

.container55 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container53 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 1;
}

.hero-about-visual {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.overlay-shadow2 {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  aspect-ratio: 559.5 / 584;
}

.overlay-shadow2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.background-border {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: -24px;
  bottom: -24px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.overlay-shadow3 {
  display: none;
}

.container54 {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.overlay3 {
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text23 {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  width: auto;
  height: auto;
}

.text24 {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  width: auto;
  height: auto;
}

/* ============================================================
   HERO BANNER IMAGE
   ============================================================ */
.biru-modern-ucapan-selamat-ulang-tahun-instagram-post-2-4 {
  width: 100vw;
  height: 583px;
  object-fit: cover;
  display: block;
  max-height: 583px;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  z-index: 0;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: #ffffff;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: static;
}

.container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  position: relative;
}

.container2 {
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: auto;
  overflow: visible;
}

.container2 img {
  max-width: 60px;
  height: auto;
}

.heading-2 {
  padding: 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  position: relative;
}

.text {
  color: #1e293b;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 700;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background {
  background: #0c5bed;
  border-radius: 9999px;
  width: 96px;
  height: 4px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   BACKGROUND RECTANGLES (hidden � replaced by bg on sections)
   ============================================================ */
.rectangle-39,
.rectangle-40,
.rectangle-41,
.rectangle-2 {
  display: none;
}

/* ============================================================
   CORE VALUES SECTION
   ============================================================ */
.container3 {
  background: #f5f6f8;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  position: static;
}

.heading-22 {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  position: relative;
}

.our-core-values {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container4 {
  max-width: 672px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.text2 {
  color: #475569;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.container5 {
  background: #f5f6f8;
  padding: 0 5% 80px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  position: static;
  height: auto;
}

.value-1,
.value-2,
.value-3 {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 380px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  flex-shrink: 0;
  position: relative;
}

.value-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.container6,
.container8,
.container9,
.container11 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.container6 img,
.container8 img,
.container9 img,
.container11 img {
  width: 28px;
  height: 28px;
}

.heading-3,
.heading-32,
.heading-33 {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.competitive-excellence,
.technology-driven-innovation,
.speed-performance {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.container7,
.container10 {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.we-compete-to-win-every-strategy-decision-and-execution-is-designed-to-position-our-clients-ahead-in-the-final-lap,
.we-leverage-smart-adaptive-and-forward-thinking-solutions-to-create-sustainable-competitive-advantage,
.speed-defines-us-we-move-fast-execute-with-precision-and-focus-on-measurable-results-to-ensure-peak-performance-at-every-stage {
  color: #475569;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: #0f172a;
  padding: 96px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  position: static;
  overflow: hidden;
}

.container37 {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.container38 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  align-self: stretch;
  position: relative;
}

.text14 {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  width: 100%;
  max-width: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container39 {
  max-width: 672px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.text15 {
  color: #94a3b8;
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.background4 {
  background: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

.container40 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.background5 {
  background: #0c5bed;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  position: relative;
}

.overlay-shadow {
  background: rgba(255, 255, 255, 0);
  border-radius: 9999px;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.container41 {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.video-link-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-link-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16) 0%, rgba(2, 6, 23, 0.72) 100%);
}

.video-link-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  z-index: 2;
}

.video-play-button {
  width: 88px;
  height: 88px;
  border-radius: 9999px;
  background: rgba(12, 91, 237, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.video-link-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 460px;
}

.video-link-label {
  color: #ffffff;
  font-family: "Inter-Bold", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.video-link-caption {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter-Regular", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

/* Star ratings in testimonials */
.star-rating {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}

/* ============================================================
   DEDICATED SQUAD SECTION
   ============================================================ */
.the-dedicated-squad-section {
  background: #f5f6f8;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: static;
  height: auto;
}

.container12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding-left: 0;
  position: relative;
}

.container13 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.text3 {
  color: #0f172a;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container14 {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.text4 {
  color: #475569;
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.button {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.text5 {
  color: #0c5bed;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  width: auto;
  height: auto;
  position: relative;
}

.container15 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.container16 {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  position: relative;
}

.member-1,
.member-2,
.member-3,
.member-4 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 0 1 280px;
  min-width: 220px;
  max-width: 320px;
  position: relative;
}

.background2 {
  background: #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 242.5 / 350;
  flex-shrink: 0;
  position: relative;
}

.background2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container17 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.heading-4 {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.alex-chen,
.sarah-jenkins,
.david-miller,
.emily-wong {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.cto-co-founder,
.creative-director,
.senior-engineer,
.product-manager {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.heading-34 {
  padding: 80px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  max-width: 768px;
  margin: 0 auto;
  position: static;
}

.some-of-our-happy-clients {
  color: #1e293b;
  text-align: center;
  font-family: "Inter-Medium", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
  max-width: 980px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.background7 {
  background: #0c5bed;
  border-radius: 9999px;
  width: 80px;
  height: 4px;
  margin: 8px auto 40px;
  display: block;
  position: static;
}

.clients-logos {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  gap: 28px 32px;
}

.clients-logos img {
  position: static !important;
  width: 100%;
  max-width: 118px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
}

.clients-logos .client-logo-large {
  max-width: 142px;
  height: 72px;
}

.button5 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 52px 0 32px;
  position: static !important;
}

.view-all {
  color: #6b7280;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  width: auto;
  height: auto;
  position: relative;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: #f5f6f8;
  margin-top: 60px;
  padding: 103px 5% 160px;
  display: flex;
  flex-direction: column;
  gap: 62px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: static;
}

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

.testimonials-title {
  color: #0f172a;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  width: 386.86px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonials-subtitle {
  color: #475569;
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 400px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1112px;
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  border-style: solid;
  border-color: #e2e8f0;
  border-width: 1px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  min-width: 0;
  min-height: 331px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonial-quote {
  color: #475569;
  text-align: left;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.testimonial-author {
  padding: 0;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.testimonial-avatar {
  background: #e2e8f0;
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  position: relative;
}

.testimonial-name {
  color: #0f172a;
  text-align: left;
  font-family: "Inter-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  width: auto;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.testimonial-role {
  color: #64748b;
  text-align: left;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  width: auto;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.testimonial-avatar .profile-avatar {
  width: 48px;
  height: 48px;
  display: block;
}

/* ============================================================
   IT SOLUTIONS SECTION
   ============================================================ */
.section {
  background: #ffffff;
  padding: 96px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: static;
  overflow: hidden;
}

.container42 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 48px;
  flex-shrink: 0;
  position: relative;
}

.left-image-content {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 400px;
  min-width: 300px;
  position: relative;
}

.it-solutions-consulting {
  width: 100%;
  max-width: 448px;
  overflow: hidden;
  position: relative;
}

.it-solutions-consulting img {
  width: 100%;
  height: auto;
  display: block;
}

.right-text-content {
  padding: 0 0 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 640px;
  position: relative;
}

.heading-2-margin {
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}

.heading-2-get-the-right-it-solutions-from-the-best-it-vendor-consult-with-us-today {
  color: #0f172a;
  font-family: "Inter-Thin", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 100;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.margin {
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}

.text16 {
  color: #475569;
  font-family: "Inter-Thin", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 100;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.button2 {
  background: #013d7c;
  border-radius: 9999px;
  padding: 16px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.button-shadow {
  background: rgba(255, 255, 255, 0);
  border-radius: 9999px;
  position: absolute;
  inset: 0;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.consult-now {
  color: #ffffff;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-2 {
  width: 100%;
  max-width: 499px;
  height: auto;
  object-fit: cover;
  display: block;
  position: static;
}

/* ============================================================
   ABOUT CTA (Homepage Style)
   ============================================================ */
.about-cta-section {
  background: linear-gradient(135deg, #0c1828 0%, #0f2e52 50%, #0c1828 100%);
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  top: -180px;
  right: 80px;
  pointer-events: none;
}

.about-cta-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  bottom: -120px;
  left: 60px;
  pointer-events: none;
}

.about-cta-full {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta-badge-label {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 9999px;
  padding: 5px 16px;
  color: #60a5fa;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-cta-main-heading {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-Bold", sans-serif;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.3;
  font-weight: 700;
}

.about-cta-blue {
  color: #3b82f6;
}

.about-cta-description {
  color: #94a3b8;
  text-align: center;
  font-family: "InriaSans-Regular", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 560px;
}

.about-cta-button {
  background: #2563eb;
  border-radius: 9999px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.about-cta-button-shadow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
}

.about-cta-consult-now {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
}

/* ============================================================
   ABOUT FOOTER (Homepage Style)
   ============================================================ */
.about-footer {
  background: #ffffff;
  padding: 58px 0 26px;
  width: 100%;
}

.about-footer-container {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.about-footer-simple {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
}

.about-footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 760px;
}

.about-footer-brand-top {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.about-footer-logo {
  width: 207px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-footer-brand-name {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.about-footer-brand-tag {
  color: #475569;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.about-footer-brand-description {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 740px;
}

.about-footer-nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
}

.about-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.about-footer-heading {
  color: #0f172a;
  font-family: "Inter-Bold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-footer-link,
.about-footer-contact-item {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.about-footer-contact-group {
  min-width: 210px;
}

.about-footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-footer-social-link {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.about-footer-social-link:hover {
  color: #0f172a;
}

.about-footer-bottom-bar {
  border-top: 1px solid #cbd5e1;
  margin-top: 14px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-footer-copyright {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.about-footer-policy-links {
  display: flex;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f172a;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: static;
}

.container43 {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.container44 {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
}

.container45 {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.container46 {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.text17 {
  color: #ffffff;
  font-family: "Inter-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.container47 {
  max-width: 384px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.text18 {
  color: #94a3b8;
  font-family: "Inter-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.heading-5 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}

.company,
.contact {
  color: #ffffff;
  font-family: "Inter-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
}

.item {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.about-us2,.our-process,.careers,.blog {
  color: #94a3b8;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.hello-hexavara-com,._1-555-000-0000,.silicon-valley-ca {
  color: #94a3b8;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 4px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.horizontal-border {
  border-top: 1px solid #1e293b;
  padding: 32px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
}

.text19 {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.container48 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-shrink: 0;
  position: relative;
}

.link {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.text20,.text21 {
  color: #64748b;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* ============================================================
   MISC HIDDEN / UTILITY
   ============================================================ */
.group-90,.group-16,.group-19 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ============================================================
   MEDIA QUERIES � TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    height: auto;
    padding: 72px 32px 60px;
  }

  .container49 {
    width: 100%;
    height: auto;
  }

  .container50,
  .container53 {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    padding: 0;
  }

  .container51 {
    width: 100%;
    max-width: 100%;
  }

  .founded-in-2013-by-its-students-hexavara-has-grown-from-an-academic-dream-into-a-powerhouse-of-digital-innovation-our-journey-began-with-a-shared-passion-for-technology-and-a-vision-to-transform-the-digital-landscape {
    width: 100%;
  }

  .biru-modern-ucapan-selamat-ulang-tahun-instagram-post-2-4 {
    width: 100%;
    height: 100%;
    max-height: none;
    inset: 0;
    left: auto;
    top: auto;
    translate: none;
  }

  .container50 {
    width: min(100%, 640px);
    max-width: 640px;
    margin: 0 auto;
  }

  .container53 {
    height: 420px;
    margin-top: 36px;
  }

  .the-dedicated-squad-section {
    padding: 60px 32px;
  }

  .container5 {
    padding: 0 32px 60px;
  }

  .container3 {
    padding: 60px 32px;
  }

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

  .about-footer-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ============================================================
   MEDIA QUERIES � MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .works,.about-us3,.services,.solutions {
    display: none;
  }

  .background6 {
    right: 110px;
    top: 12px;
  }

  .button-shadow2,.start-a-project {
    right: 16px;
    top: 12px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .chat-gpt-image-26-feb-2026-11-24-32-1 {
    left: 16px;
    top: 14px;
    width: 120px;
  }

  .hero-section {
    min-height: auto;
    height: auto;
    padding: 56px 20px 48px;
  }

  .container50,
  .container51 {
    width: 100%;
    max-width: 100%;
  }

  .container50 {
    left: auto;
    width: 100%;
  }

  .hi-we-are-hexavara-tech {
    font-size: clamp(36px, 9vw, 40px);
    line-height: 1.15;
  }

  .container53 {
    height: 300px;
    margin-top: 28px;
  }

  .container5 {
    flex-direction: column;
    align-items: center;
    padding: 0 20px 60px;
  }

  .value-1,.value-2,.value-3 {
    max-width: 100%;
    width: 100%;
  }

  .container3 {
    padding: 60px 20px;
  }

  .the-dedicated-squad-section {
    padding: 60px 20px;
  }

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

  .container16 {
    gap: 28px;
  }

  .member-1,.member-2,.member-3,.member-4 {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: 140px;
  }

  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-grid {
    flex-direction: column;
    max-width: 100%;
  }

  .testimonials-title,
  .testimonials-subtitle,
  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-1,.testimonial-2,.testimonial-3 {
    max-width: 100%;
    width: 100%;
  }

  .section {
    padding: 60px 20px 0;
  }

  .container42 {
    flex-direction: column;
  }

  .left-image-content,.right-text-content {
    flex: none;
    width: 100%;
    min-width: unset;
    padding: 0;
  }

  .right-text-content {
    padding-bottom: 48px;
  }

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

  .horizontal-border {
    flex-direction: column;
    align-items: flex-start;
  }

  .container37 {
    padding: 0 20px;
  }

  .video-section {
    padding: 60px 20px;
  }

  .heading-34 {
    padding: 60px 20px 16px;
  }

  .clients-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .about-cta-section {
    padding: 48px 20px;
  }

  .about-cta-main-heading {
    font-size: 28px;
  }

  .about-footer-container {
    padding: 0 20px;
  }

  .about-footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   MEDIA QUERIES � SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .clients-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-1,.member-2,.member-3,.member-4 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hi-we-are-hexavara-tech {
    font-size: 32px;
  }

  .text14 {
    font-size: 24px;
  }

  .container43 {
    padding: 0 16px;
  }
}
