* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* Core header (desktop, normal) */
.header {
  background: #fff;
  width: 100%;
  padding: 24px 0;
  /* box-shadow: 0 1px 0 #f5f5f5; */
  position: relative;
  z-index: 120;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #234692;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.get-started-button {
  background: #000;
  color: #fff;
  /* text & svg icon color */
  border: 1px solid transparent;
  padding: 16px 24px;
  border-radius: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.25s ease;
}

.get-started-button .button-text {
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
  color: inherit;
  /* inherits from button */
}

.get-started-button .chevron-icon {
  width: 16px;
  height: 16px;
}

.get-started-button:hover {
  background: #fff;
  color: #000;
  /* both text & icon turn black */
  border-color: #000;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 24px;
  height: 3px;
  background: #234692;
  border-radius: 2px;
  display: block;
  transition: all 0.25s cubic-bezier(.4, 2, .6, 1);
}

/* Horizontal nav (desktop) */
.nav-list {
  background: #d9d9d9;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  border-radius: 28px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 32px;
  z-index: 10;
  transition: none;
}

.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #000;
}

.nav-link-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #000;
  margin: 0;
}

.nav-link:hover .nav-link-text {
  color: #234692;
}

/* -------- Responsive -------- */
@media (max-width: 1000px) {
  .header-container {
    padding: 0 4vw;
  }

  .logo-text {
    font-size: 21px;
  }

  .get-started-button {
    font-size: 15px;
    padding: 12px 16px;
  }

  .header-right {
    gap: 10px;
  }

  .nav-toggle {
    display: flex;
  }

  /* Dropdown nav */
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 6px 20px rgba(20, 30, 70, 0.07);
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    min-width: 0;
    max-width: none;
    z-index: 140;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.33s, transform 0.33s;
  }

  .nav-link {
    width: 100vw;
    text-align: left;
    padding: 18px 8vw;
    border-bottom: 1px solid #f2f2f2;
    font-size: 17px;
    background: none;
    color: #000;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link-text {
    font-size: 17px;
  }

  /* Hamburger animation */
  .nav-toggle-bar {
    background: #234692;
  }

  body.menu-open .nav-list {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    animation: nav-slide-down 0.33s cubic-bezier(.4, 2, .6, 1);
  }

  @keyframes nav-slide-down {
    from {
      opacity: 0;
      transform: translateY(-25px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.menu-open .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  body.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .header-container {
    padding: 0 2vw;
  }

  .logo-text {
    font-size: 14px;
  }

  .get-started-button {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 15px;
  }

  .nav-link {
    font-size: 13px;
    padding: 13px 5vw;
  }

  .nav-link-text {
    font-size: 13px;
  }
}

/* Desktop: nav always horizontal, toggle hidden */
@media (min-width: 1001px) {
  .nav-list {
    display: flex !important;
    position: absolute !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #d9d9d9 !important;
    border-radius: 28px !important;
    gap: 32px !important;
    padding: 16px 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 32px !important;
    box-shadow: none !important;
    min-width: 0;
    max-width: 100vw;
    border: none;
    opacity: 1 !important;
    pointer-events: all !important;
    transition: none !important;
  }

  .nav-toggle {
    display: none !important;
  }
}


/* Hero Section */
.hero-section {
  background-color: #ffffff;
  width: 100%;
}

/* Main container for hero content */
.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

/* Left content block */
.hero-content {
  flex: 1;
  max-width: 536px;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  height: 356px;
  justify-content: flex-end;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 532px;
}

.hero-title-container {
  width: 532px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.35;
  letter-spacing: -0.0128px;
  margin: 0;
  color: #3c3c3c;
}

.title-normal {
  color: #000000;
}

.title-gradient {
  background: linear-gradient(to bottom, #4b6eba 0%, #234692 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.0032px;
}

.hero-description {
  width: 473px;
}

.hero-description p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.0036px;
  color: #6e6e6e;
  margin: 0;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Primary Button */
.hero-btn-primary {
  background-color: #000;
  color: #fff;
  border: 1px solid transparent;
  padding: 16px 24px;
  border-radius: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.hero-btn-primary .btn-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.0032px;
  text-transform: capitalize;
  white-space: nowrap;
  color: inherit;
  /* inherits button color */
}

.hero-btn-primary .chevron-icon {
  width: 16px;
  height: 16px;
}

.hero-btn-primary:hover {
  background-color: #fff;
  color: #000;
  /* text & icon become black */
  border-color: #000;
}

/* Secondary Button */
.hero-btn-secondary {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 16px 24px;
  border-radius: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.0032px;
}

.hero-btn-secondary .btn-text {
  font-weight: 400;
  text-transform: none;
  color: inherit;
  /* inherits button color */
}

.hero-btn-secondary:hover {
  background-color: #000;
  color: #fff;
  /* text & icon become white */
  border-color: #000;
}


/* Right image block */
.hero-image {
  flex-shrink: 0;
  width: 731px;
  height: 505px;
  background-image: url('./image/e96dbb0974af5f5809a3f3256a34a8bbba4459cf.gif');
  background-size: 117.08% 169.47%;
  background-position: 69.22% 62.55%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placement-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

/* --- Responsive Styles --- */

/* Large tablet and below */
@media (max-width: 1200px) {
  .hero-container {
    max-width: 98vw;
    padding: 0 20px;
    gap: 32px;
  }

  .hero-content {
    max-width: 460px;
  }

  .hero-title-container,
  .hero-text-content {
    width: 100%;
    max-width: 460px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    width: 100%;
    max-width: 420px;
  }

  .hero-image {
    width: 400px;
    height: 260px;
    background-size: cover;
    background-position: center;
  }
}

/* Tablet & Below */
@media (max-width: 900px) {
  .hero-section {
    padding: 38px 0 0 0;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 6vw;
  }

  .hero-content {
    max-width: 100vw;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .hero-text-section {
    gap: 20px;
    height: auto;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }

  .hero-text-content {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .hero-title-container {
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .hero-description {
    width: 100%;
    max-width: 100vw;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    margin-bottom: 0;
    margin-top: 8px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 90vw;
    max-width: 340px;
    justify-content: center;
  }

  .hero-image {
    order: 2;
    width: 340px;
    height: 180px;
    margin-bottom: 16px;
    margin-top: 0;
    align-self: center;
    border-radius: 10px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-section {
    padding: 20px 0 0 0;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 2vw;
  }

  .hero-content {
    max-width: 100vw;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .hero-text-section {
    gap: 10px;
    padding: 0;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-text-content {
    gap: 6px;
    padding: 0;
    width: 100%;
    align-items: center;
  }

  .hero-title {
    font-size: 19px;
    text-align: center;
    margin-bottom: 4px;
  }

  .hero-description {
    width: 100%;
    max-width: 100vw;
    text-align: center;
    margin: 0 auto 3px auto;
  }

  .hero-description p {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 0;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 10px 0;
    font-size: 13px;
    border-radius: 16px;
    width: 98vw;
    max-width: 230px;
    min-width: 80vw;
    justify-content: center;
  }

  .btn-text {
    font-size: 13px;
  }

  .hero-image {
    width: 98vw;
    min-width: 160px;
    max-width: 220px;
    height: 84px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 0;
    order: 2;
  }

  .placement-text {
    font-size: 16px;
  }
}

/* Ensures proper order: text > image > buttons (on mobile/tablet) */
@media (max-width: 900px) {
  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-buttons {
    order: 3;
  }
}


.hero-media-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  margin: 80px 0 0 0;
}

.hero-media-inner {
  width: 100%;
  max-width: 1307px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 504px;
}

.hero-media-video {
  width: 100%;
  aspect-ratio: 16/7.8;
  border-radius: 32px;
  overflow: hidden;
  background: #101010;
  box-shadow: 0 6px 40px 0 rgba(20, 30, 80, 0.13);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-video video,
.hero-media-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

@media (max-width: 1200px) {
  .hero-media-inner {
    max-width: 96vw;
    height: 340px;
  }

  .hero-media-video {
    border-radius: 22px;
    aspect-ratio: 16/9;
    min-height: 180px;
    margin-bottom: 16px;
  }

  .hero-media-video video,
  .hero-media-video img {
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .hero-media-section {
    margin: 14px 0 0 0;
    padding: 0;
  }

  .hero-media-inner {
    max-width: 99vw;
    height: auto;
    padding: 0 0;
  }

  .hero-media-video {
    border-radius: 13px;
    aspect-ratio: 16/10;
    min-height: 120px;
    margin-bottom: 9px;
  }

  .hero-media-video video,
  .hero-media-video img {
    border-radius: 13px;
  }
}

@media (max-width: 480px) {
  .hero-media-section {
    margin: 24px 0 0 0;
  }

  .hero-media-inner {
    max-width: 100vw;
    padding: 0;
  }

  .hero-media-video {
    border-radius: 6px;
    aspect-ratio: 16/11;
    min-height: 75px;
    margin-bottom: 5px;
  }

  .hero-media-video video,
  .hero-media-video img {
    border-radius: 6px;
  }
}





.logo-marquee-section {
  background-color: #fff;
  padding: 40px 0;
  width: 100%;
  overflow: hidden;
  /* No need for full width padding */
  display: flex;
  justify-content: center;
}

.logo-marquee-container {
  width: 1050px;
  /* or use max-width: 70vw; */
  height: 48px;
  position: relative;
  overflow: hidden;
  /* For masking effect */
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  /* Responsive: You can use max-width and adjust for mobile */
  max-width: 90vw;
  margin: 0 auto;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 48px;
  animation: scroll-smooth 25s linear infinite;
  width: fit-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  opacity: 1;
}

.logo-img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

@keyframes scroll-smooth {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.logo-marquee-section:hover .logo-marquee-track {
  animation-play-state: paused;
}

@media (max-width: 1200px) {
  .logo-marquee-container {
    width: 90vw;
    max-width: 95vw;
    height: 40px;
  }

  .logo-marquee-track {
    gap: 32px;
    height: 40px;
  }

  .logo-item {
    height: 40px;
  }

  .logo-img {
    height: 26px;
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .logo-marquee-section {
    padding: 22px 0;
  }

  .logo-marquee-container {
    width: 98vw;
    max-width: 98vw;
    height: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent, #fff 8%, #fff 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #fff 8%, #fff 92%, transparent);
  }

  .logo-marquee-track {
    gap: 18px;
    height: 32px;
  }

  .logo-item {
    height: 32px;
  }

  .logo-img {
    height: 18px;
    max-width: 56px;
  }
}

@media (max-width: 480px) {
  .logo-marquee-section {
    padding: 12px 0;
  }

  .logo-marquee-container {
    width: 100vw;
    max-width: 100vw;
    height: 22px;
    -webkit-mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  }

  .logo-marquee-track {
    gap: 12px;
    height: 22px;
  }

  .logo-item {
    height: 22px;
  }

  .logo-img {
    height: 12px;
    max-width: 34px;
  }
}



/* What We Do Section */
.what-we-do-section {
  background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.what-we-do-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.what-we-do-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  text-align: center;
  letter-spacing: -0.02px;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.what-we-do-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  width: 100%;
}

.what-we-do-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #6e6e6e;
  text-align: center;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  width: 100%;
}

/* --- Responsive: What We Do Section --- */
@media (max-width: 1200px) {
  .what-we-do-section {
    padding: 56px 0;
  }

  .what-we-do-container {
    padding: 0 20px;
    max-width: 95vw;
  }

  .what-we-do-title {
    font-size: 32px;
  }

  .what-we-do-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 32px 0;
  }

  .what-we-do-container {
    padding: 0 6vw;
    max-width: 99vw;
    gap: 14px;
  }

  .what-we-do-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .what-we-do-content {
    gap: 10px;
  }

  .what-we-do-description {
    font-size: 13.5px;
    line-height: 1.35;
    padding: 0 1vw;
  }
}

@media (max-width: 480px) {
  .what-we-do-section {
    padding: 32px 0;
  }

  .what-we-do-container {
    padding: 0 2vw;
    max-width: 99vw;
    gap: 6px;
  }

  .what-we-do-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .what-we-do-description {
    font-size: 11px;
    padding: 0;
  }
}


/* ------------ Services Section Responsive ONLY ------------ */
/* ========== Services Section (FULL CSS with glass + corner glow) ========== */
.services-section {
  background-color: #ffffff;
  width: 100%;
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 14px;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---- Panels ---- */
.service-panel {
  background: linear-gradient(116deg, #060222 -6.6%, #0D3384 60%);
  border-radius: 28px;
  overflow: hidden;
  position: sticky;
  top: 80px;
  z-index: 2;
  margin-bottom: 40px;
}

.service-panel-2 {
  border-radius: 28px;
  background: linear-gradient(118deg, #0D3384 31.73%, #2C69EB 85.89%);
}

.service-panel-content {
  padding: 40px 55px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---- Header ---- */
.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.panel-title {
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  max-width: 422px;
}

.panel-header-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-line {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.profile-avatars {
  display: flex;
  align-items: center;
  padding-right: 16px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-left: -16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.avatar:first-child {
  margin-left: 0;
}

/* ---- Feature Grid ---- */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* ---------------- GLASS EFFECT (cards + CTA) ---------------- */
.feature-card-large,
.panel-cta {
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 30px 80px rgba(10, 22, 70, .45);
}

/* Glowing rounded border ring with corner emphasis */
.feature-card-large::before,
.panel-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    /* base faint ring */
    linear-gradient(#ffffff20, #ffffff20),
    /* top-left corner highlight (brighter) */
    radial-gradient(160px 160px at 8% 8%, rgba(255,255,255,0.75), transparent 65%),
    /* top-right normal */
    radial-gradient(140px 140px at 92% 8%, rgba(255,255,255,0.45), transparent 60%),
    /* bottom-left normal */
    radial-gradient(140px 140px at 8% 92%, rgba(255,255,255,0.40), transparent 60%),
    /* bottom-right corner highlight (brighter) */
    radial-gradient(160px 160px at 92% 92%, rgba(255,255,255,0.75), transparent 65%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.feature-card-large {
  padding: 32px;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.feature-number-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-number,
.feature-title {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
}

.feature-description {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

/* ---- CTA Bar ---- */
.panel-cta {
  padding: 16px 32px;
}

.panel-cta-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.cta-icon-text {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.cta-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-text {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.5;
  margin: 0;
  max-width: 699px;
}

/* ---- CTA Button ---- */
.cta-button {
  background: linear-gradient(135deg, #ffffff 20%, #234692 100%);
  color: #0d1018;
  border: none;
  padding: 16px 24px;
  border-radius: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.0032px;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button .chevron-icon {
  width: 16px;
  height: 16px;
}

/* -------------- Responsive -------------- */
@media (max-width: 1200px) {
  .services-container {
    padding: 0 20px;
  }
  .service-panel-content {
    padding: 32px 24px;
    gap: 32px;
  }
  .panel-title {
    font-size: 32px;
    max-width: 100%;
  }
  .panel-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .panel-header-right {
    width: 100%;
    justify-content: flex-end;
  }
  .header-line {
    width: 120px;
  }
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .panel-cta-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .cta-button {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }
  .services-container {
    padding: 0 10px;
  }
  .service-panel-content {
    padding: 18px 7vw;
    gap: 22px;
  }
  .panel-title {
    font-size: 24px;
  }
  .panel-header {
    gap: 18px;
  }
  .header-line {
    width: 60px;
  }
  .avatar {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card-large {
    padding: 16px;
    border-radius: 20px;
  }
  .feature-number,
  .feature-title {
    font-size: 17px;
  }
  .feature-description {
    font-size: 14px;
  }
  .panel-cta {
    padding: 12px 8px;
    border-radius: 18px;
  }
  .panel-cta-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .cta-icon {
    width: 34px;
    height: 34px;
  }
  .cta-text {
    font-size: 14px;
    max-width: 100%;
  }
  .cta-button {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 22px 0;
  }
  .service-panel-content {
    padding: 12px 4vw;
    gap: 14px;
  }
  .panel-title {
    font-size: 16px;
  }
  .panel-header {
    gap: 10px;
  }
  .header-line {
    width: 40px;
  }
  .avatar {
    width: 26px;
    height: 26px;
    margin-left: -6px;
  }
  .feature-card-large {
    padding: 8px;
    border-radius: 12px;
  }
  .feature-number,
  .feature-title {
    font-size: 12px;
  }
  .feature-description {
    font-size: 11px;
  }
  .panel-cta {
    padding: 8px 3px;
    border-radius: 10px;
  }
  .cta-icon {
    width: 20px;
    height: 20px;
  }
  .cta-text {
    font-size: 12px;
  }
  .cta-button {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 14px;
    margin-top: 10px;
  }
}


/* ---- Fueling Innovation Section ---- */
.fueling-innovation-section {
  background-color: #fff;
  width: 100%;
  padding: 20px 0;
}

.fueling-innovation-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 45px 70px;
  display: flex;
  flex-direction: row;
  gap: 69px;
  align-items: flex-start;
  justify-content: flex-start;
}

.innovation-title-column {
  flex-shrink: 0;
  width: 441px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.innovation-title {
  font-weight: 600;
  font-size: 40px;
  color: #000;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  width: 100%;
}

.title-bold {
  font-weight: 600;
  color: #000;
}

.innovation-content-column {
  flex-shrink: 0;
  width: 714px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 0;
}

.innovation-description {
  font-weight: 400;
  font-size: 18px;
  color: #6e6e6e;
  letter-spacing: -0.02px;
  line-height: 1.6;
  margin: 0;
  width: 100%;
  max-width: 714px;
  text-align: left;
}

/* -------- Responsive Styles -------- */
@media (max-width: 1200px) {
  .fueling-innovation-container {
    padding: 0 32px;
    gap: 40px;
  }

  .innovation-title-column {
    width: 100%;
    max-width: 340px;
  }

  .innovation-content-column {
    width: 100%;
    max-width: 540px;
  }
}

@media (max-width: 992px) {
  .fueling-innovation-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
    align-items: center;
  }

  .innovation-title-column,
  .innovation-content-column {
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .innovation-title {
    font-size: 32px;
    text-align: center;
  }

  .innovation-description {
    font-size: 16px;
    max-width: 95vw;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .fueling-innovation-section {
    padding: 48px 0;
  }

  .fueling-innovation-container {
    padding: 0 12px;
    gap: 22px;
  }

  .innovation-title {
    font-size: 24px;
  }

  .innovation-description {
    font-size: 15px;
    line-height: 1.55;
    max-width: 99vw;
  }
}

@media (max-width: 480px) {
  .fueling-innovation-section {
    padding: 28px 0;
  }

  .fueling-innovation-container {
    padding: 0 6vw;
    gap: 16px;
  }

  .innovation-title {
    font-size: 19px;
    line-height: 1.25;
  }

  .innovation-description {
    font-size: 14px;
    line-height: 1.45;
  }
}



/* Our Capabilities Section CSS */

/* Main Container */
.capabilities-container {
  width: 100%;
  max-width: 1229px;
  margin: 0 auto;
  padding: 96px 0 0 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header Section */
.capabilities-header {
  text-align: center;
  margin-bottom: 96px;
}

.main-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #000000 !important;
  margin-bottom: 24px;
  letter-spacing: -0.02px;
}

.main-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
  max-width: 878px;
  margin: 0 auto;
}

/* Grid Layout */
.capabilities-grid {
  position: relative;
  width: 1229px;
  height: 950px;
  margin: 0 auto 24px;
}

/* Base Card Styles */
.card-tall,
.card-standard,
.card-wide {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  box-shadow: 0px 3px 5.2px 0px rgba(195, 195, 195, 0.1);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

/* Card Typography */
.card-tall h3,
.card-standard h3,
.card-wide h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
  margin-bottom: 16px;
}

.card-tall p,
.card-standard p,
.card-wide p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #000000;
}

/* Left Column - Ethical Frameworks Card */
.card-ethical {
  position: absolute;
  left: 0;
  top: 0;
  width: 392px;
  height: 628px;
}

.shield-icon-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.gradient-circle {
  position: absolute;
  width: 347px;
  height: 349px;
  background: radial-gradient(circle,
      rgba(112, 179, 227, 1) 0%,
      rgba(184, 217, 241, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.shield-icon {
  width: 196px;
  height: 280px;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.card-text-bottom {
  padding: 50px 35px 35px;
  text-align: left;
}

/* Middle Column */
.middle-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

/* Visual & Language Card */
.card-visual {
  position: absolute;
  left: 416px;
  top: 324px;
  width: 392px;
  height: 304px;
}

/* Strategic People Card */
.card-strategic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 808px;
  height: 301px;
  display: flex;
  align-items: center;
  padding: 0;
}

.phone-visual {
  width: 359px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.phone-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.card-text-right {
  flex: 1;
  padding: 35px;
}

/* Right Column */
.right-column {
  display: contents;
}

/* Enterprise Data Card */
.card-enterprise {
  position: absolute;
  right: 0;
  top: 0;
  width: 808px;
  height: 304px;
  display: flex;
  align-items: center;
  padding: 0;
}

.card-text-left {
  width: 420px;
  padding: 35px;
}

.data-visual {
  flex: 1;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-circle-data {
  position: absolute;
  width: 356px;
  height: 299px;
  background: radial-gradient(circle,
      rgba(112, 179, 227, 1) 0%,
      rgba(184, 217, 241, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.data-visual img {
  width: 304px;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

/* Two Cards Row */
.two-cards-row {
  display: flex;
  gap: 24px;
}

.card-integration {
  position: absolute;
  right: 0;
  top: 324px;
  width: 392px;
  height: 304px;
}

.puzzle-container {
  position: absolute;
  top: -4px;
  right: 10px;
  width: 200px;
  height: 184px;
  /* transform: rotate(138deg); */
  z-index: 1;
}

.puzzle-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-text-integration {
  padding-top: 90px;
}

/* Intelligent Systems Card */
.card-intelligent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 392px;
  height: 304px;
}

/* CTA Section */
.cta-section {
  width: 100%;
  height: 304px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.cta-background {
  position: absolute;
  inset: 0;
  background-image: url('./image/abstract-dark-twisted-tunnel-constructed-with-star-shape.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: -0.02px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #ffffff 20.833%, #234692 231.25%);
  border: none;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0d1018;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: capitalize;
  letter-spacing: -0.0032px;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --------- RESPONSIVE STYLES FOR TABLET & MOBILE --------- */
@media (max-width: 1280px) {
  .capabilities-container {
    padding: 20px;
    max-width: 100%;
  }

  .capabilities-header {
    margin-bottom: 48px;
  }

  .capabilities-grid {
    width: 100% !important;
    height: auto !important;
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 auto 24px auto;
    max-width: 100%;
  }

  .card-ethical,
  .card-enterprise,
  .card-visual,
  .card-integration,
  .card-strategic,
  .card-intelligent {
    position: relative !important;
    width: 100% !important;
    max-width: 808px;
    margin: 0 auto 16px auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    min-width: 0;
    height: auto !important;
  }

  .middle-column,
  .right-column,
  .two-cards-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100%;
  }

  .card-text-bottom,
  .card-text-right,
  .card-text-left,
  .card-text-integration {
    padding: 24px 16px 24px 16px !important;
    text-align: left;
  }

  .shield-icon-container,
  .phone-visual,
  .data-visual {
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
  }

  .phone-visual img,
  .data-visual img,
  .shield-icon {
    width: 120px !important;
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  /* --- Puzzle Fix for .card-integration (MOBILE/TABLET) --- */
  .card-integration {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
    position: relative !important;
    padding-top: 24px !important;
  }

  .puzzle-container {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100px !important;
    height: 90px !important;
    transform: none !important;
    margin-bottom: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 1 !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .puzzle-icon {
    width: 100% !important;
    height: auto !important;
    max-width: 100px;
    margin: 0 auto;
    display: block;
  }

  .card-text-integration {
    padding-top: 0 !important;
    text-align: left;
    width: 100%;
  }

  /* ------------------------------------ */
  .cta-section {
    flex-direction: column !important;
    height: auto !important;
    min-height: 180px;
    padding: 20px 10px;
    text-align: center;
    border-radius: 20px;
  }

  .cta-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
  }

  .cta-text h3 {
    font-size: 18px !important;
  }

  .cta-button {
    font-size: 15px !important;
    padding: 12px 18px !important;
  }
}

@media (max-width: 767px) {
  .capabilities-header .main-title {
    font-size: 28px !important;
  }

  .capabilities-header .main-subtitle {
    font-size: 15px !important;
    max-width: 98vw;
  }

  .card-tall h3,
  .card-standard h3,
  .card-wide h3 {
    font-size: 18px !important;
  }

  .card-tall p,
  .card-standard p,
  .card-wide p {
    font-size: 15px !important;
  }

  .cta-section {
    border-radius: 16px !important;
    padding: 16px 4px !important;
  }

  .puzzle-container {
    width: 70px !important;
    height: 65px !important;
    margin-bottom: 8px;
  }
}


/* Why Choose Us Sticky Section */
/* Why Choose Us – Sticky Cards Section */
.why-choose-sticky-section {
  background-color: #ffffff;
  width: 100%;
  position: relative;
}

.why-choose-sticky-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 182px;
  align-items: flex-start;
  position: relative;
}

/* Left Sticky Content */
.sticky-left-content {
  position: sticky;
  top: 0;
  padding: 128px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  z-index: 10;
}

.sticky-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  letter-spacing: -0.02px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.sticky-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #121722;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  width: 531px;
}

/* Right Scrolling Cards Container (with variables for overlap & gap) */
.sticky-cards-container {
  --stack-overlap: 224px;
  /* how much each card overlaps the previous */
  --card-gap: 25px;
  /* desired visible gap between cards */
  width: 511px;
  flex-shrink: 0;
  position: relative;

  /* bottom padding compensates the final negative margin so the last card clears properly */
  padding-bottom: calc(var(--stack-overlap) + var(--card-gap));
}

/* Each card wrapper sticks and overlaps the previous.
   We reduce the negative margin by the desired gap so a real 25px space is visible. */
.sticky-card-wrapper {
  position: sticky;
  top: 0;
  padding: 128px 8px;
  margin-bottom: calc((var(--stack-overlap) * -1) + var(--card-gap));
  height: 390px;
}

.sticky-card {
  background: #000e2c;
  border: 1px solid #ffffff;
  border-radius: 28px;
  padding: 32px;
  height: 166px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Individual Card Colors - Gradient Blue Scale */
.card-1 {
  background: #000e2c;
}

.card-2 {
  background: #001a53;
}

.card-3 {
  background: #00277a;
}

.card-4 {
  background: #0033a2;
}

.card-5 {
  background: #0040c9;
}

.card-6 {
  background: #0a56f5;
}

/* Card Content */
.card-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 431px;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  width: 403px;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  height: 46px;
  display: flex;
  align-items: flex-start;
}

/* Hover */
.sticky-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Optional: smooth behavior for any #anchor jumps site-wide */
/* html { scroll-behavior: smooth; } */

/* Animation (if you add .animate-in via JS/Observer) */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-card.animate-in {
  animation: cardSlideIn 0.6s ease-out forwards;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1200px) {
  .why-choose-sticky-container {
    padding: 0 20px;
    gap: 100px;
  }

  .sticky-subtitle {
    width: 400px;
  }

  .sticky-cards-container {
    width: 450px;
  }

  .card-content-wrapper,
  .card-title {
    width: 100%;
  }
}

@media (max-width: 968px) {
  .why-choose-sticky-container {
    flex-direction: column;
    gap: 40px;
  }

  .sticky-left-content {
    position: static;
    padding: 60px 0 40px 0;
    text-align: center;
  }

  .sticky-title {
    font-size: 32px;
  }

  .sticky-subtitle {
    width: 100%;
    font-size: 16px;
  }

  .sticky-cards-container {
    width: 100%;
    /* On mobile the wrappers are no longer overlapping, so no need to compensate */
    padding-bottom: 0;
  }

  .sticky-card-wrapper {
    position: static;
    padding: 0 0 20px 0;
    margin-bottom: 25px;
    /* keep the same 25px visual spacing */
    height: auto;
  }

  .sticky-card-wrapper:last-child {
    margin-bottom: 0;
  }

  .sticky-card {
    height: auto;
    min-height: 166px;
  }

  .card-content-wrapper,
  .card-title {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sticky-left-content {
    padding: 40px 0 30px 0;
  }

  .sticky-title {
    font-size: 28px;
  }

  .sticky-subtitle {
    font-size: 15px;
  }

  .sticky-card {
    padding: 24px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .sticky-title {
    font-size: 24px;
  }

  .sticky-card {
    padding: 20px;
  }

  .card-content-wrapper {
    gap: 16px;
  }
}

/* Industries We Serve Section */
.industries-section {
  background: linear-gradient(135deg, #0a1630 0%, #1e3a8a 50%, #3b82f6 100%);
  padding: 96px 0;
  width: 100%;
  position: relative;
}

.industries-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 108px;
  position: relative;
}

.industries-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 65px;
  max-width: 707px;
  margin-left: auto;
  margin-right: auto;
}

.industries-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.industries-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  max-width: 567px;
}

.industries-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1224px;
  margin: 0 auto;
}

.industries-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.industry-card {
  /* background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 28px;
  padding: 32px;
  width: 392px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* .industry-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        } */

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

/* CTA Section */
.industries-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-top: 64px;
  width: 1224px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1;
  margin: 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: -0.02px;
  line-height: 1.35;
  margin: 0;
  max-width: 862px;
}

.cta-button {
  background: linear-gradient(180deg, #FFF 20.83%, #234692 231.25%);
  color: #0d1018;
  border: none;
  padding: 16px 24px;
  border-radius: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.0032px;
  white-space: nowrap;
  text-transform: capitalize;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button .chevron-icon {
  width: 16px;
  height: 16px;
}

.btn-1 {
  color: #0d1018;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .industries-container {
    padding: 0 40px;
  }

  .industries-grid,
  .industries-cta {
    width: 100%;
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .industries-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .industry-card {
    width: calc(50% - 12px);
    min-width: 300px;
  }
}

@media (max-width: 968px) {
  .industries-section {
    padding: 60px 0;
  }

  .industries-container {
    padding: 0 20px;
  }

  .industries-header {
    margin-bottom: 80px;
    max-width: 100%;
  }

  .industries-title {
    font-size: 32px;
  }

  .industries-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .industries-row {
    flex-direction: column;
    gap: 20px;
  }

  .industry-card {
    width: 100%;
    min-width: auto;
  }

  .card-title {
    white-space: normal;
    font-size: 18px;
  }

  .card-description {
    font-size: 16px;
  }

  .industries-cta {
    margin-top: 80px;
    align-items: center;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-button {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 40px 0;
  }

  .industries-header {
    margin-bottom: 60px;
  }

  .industries-title {
    font-size: 28px;
  }

  .industry-card {
    gap: 20px;
    padding: 24px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-description {
    font-size: 14px;
  }

  .industries-cta {
    align-items: center;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 15px;
  }

  .cta-button {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .industries-title {
    font-size: 24px;
  }

  .industries-subtitle {
    font-size: 14px;
  }

  .industry-card {
    padding: 20px;
  }

  .industries-cta {
    align-items: center;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-button {
    align-self: center;
  }
}

/* Core Values Section */
.core-values-section {
  width: 100%;
  padding: 96px 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 96px;
  background: #ffffff;
}

.core-values-container {
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}

/* Header Section */
.core-values-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.core-values-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #000000;
  margin: 0;
}

.core-values-description {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #505050;
  margin: 0;
  max-width: 878px;
}
/* ================== CORE VALUES (No width/structure change) ================== */
/* Grid Layout - Exact Figma Structure (columns line untouched) */
.core-values-grid {
  display: grid;
  /* grid-template-columns: 240px 184px 184px 240px; */
  grid-template-rows: 342px 342px;
  gap: 16px;
  width: 100%;
  height: 700px;
}

/* Base Card Styles (no background here; handled by ::before) */
.value-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;   /* default: content at bottom */
  justify-content: flex-start;
  isolation: isolate;      /* ensure layers stack safely */
}

/* Image layer with default grayscale (text stays crisp above) */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.75);
  transition: filter .3s ease;
  z-index: 0;
}

/* Optional subtle bottom fade for readability (doesn't affect layout) */
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hover: show original image (remove gray) */
.value-card:hover::before { filter: grayscale(0); }

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.card-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  max-width: 180px;
}

/* Card Placements (unchanged) + Image bindings via --bg */
.card-innovation {
  grid-row: 1 / 3;
  --bg: url("./image/Frame 1000007303.png");
}

.card-integrity {
  grid-column: 2;
  grid-row: 1;
  --bg: url("./image/Rectangle 405.png");
}

.card-performance {
  grid-column: 3;
  grid-row: 1;
  --bg: url("./image/Rectangle 406.png");
}

.card-human {
  grid-column: 4;
  grid-row: 1 / 3;
  --bg: url("./image/Component 17.png");
}

.card-responsible {
  grid-column: 2;
  grid-row: 2;
  --bg: url("./image/Component 47.png");
}

.card-diversity {
  grid-column: 3;
  grid-row: 2;
  --bg: url("./image/Rectangle 50.png");
}

/* ============== Innovation card: content at TOP only ============== */
.value-card.card-innovation {
  align-items: flex-start;  /* move content to top-left */
}

/* Top-side readability gradient for the innovation card */
.value-card.card-innovation::after {
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 60%);
}

/* Optional: tweak padding to feel right when at top */
.value-card.card-innovation .card-content {
  padding-top: 32px;
  padding-bottom: 20px;
}

/* ================== Responsive Design (as-is from your code) ================== */
@media (max-width: 1200px) {
  .core-values-section { padding: 96px 60px; }
}

@media (max-width: 1024px) {
  .core-values-section { padding: 80px 40px; gap: 80px; }
  .core-values-container { gap: 80px; }

  .core-values-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 280px);
    gap: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .card-innovation { grid-row: 1 / 3; grid-column: 1; }
  .card-human { grid-row: 2 / 4; grid-column: 2; }
  .card-integrity { grid-column: 2; grid-row: 1; }
  .card-performance { grid-column: 1; grid-row: 3; }
  .card-responsible { grid-column: 2; grid-row: 3; }
  .card-diversity { grid-column: 1; grid-row: 4; }

  .core-values-title { font-size: 36px; }
  .core-values-description { font-size: 16px; }
  .card-text { font-size: 18px; max-width: 160px; }
}

@media (max-width: 768px) {
  .core-values-section { padding: 60px 20px; gap: 60px; }
  .core-values-container { gap: 60px; padding: 0; }

  .core-values-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 250px);
    max-width: 400px;
    gap: 16px;
  }

  .card-innovation,
  .card-human,
  .card-integrity,
  .card-performance,
  .card-responsible,
  .card-diversity {
    grid-row: auto;
    grid-column: auto;
  }

  .core-values-title { font-size: 32px; }
  .core-values-description { font-size: 16px; }
  .card-text { font-size: 18px; max-width: 200px; }
  .card-content { padding: 24px; }
}

@media (max-width: 480px) {
  .core-values-section { padding: 40px 16px; gap: 40px; }
  .core-values-container { gap: 40px; }
  .core-values-title { font-size: 28px; }
  .core-values-description { font-size: 14px; }
  .card-text { font-size: 16px; max-width: 180px; }
  .card-content { padding: 20px; }
}

/* Hover Effects */
/* .value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
} */

/* .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .value-card:hover {
    transform: scale(1.02);
  }
} */



/* Contact Form Section - Simple Clean Structure */
.contact-form-section {
  background: #131314;
  width: 100%;
  padding: 96px 108px;
  display: flex;
  justify-content: center;
}

/* Main Container */
.form-container {
  width: 100%;
  max-width: 1224px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

/* Header Section - Text + Social Icons */
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 197px;
  position: relative;
}

/* Text Section (Left) */
.header-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.get-started {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}

.main-title2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.35;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}

.subtitle-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}

.form-description {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
}

/* Social Media Section (Right) */
.social-media-icons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.social-icon {
  width: 49.988px;
  height: 49.701px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Form Input Area */
.form-input-area {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

/* Input Container (3 fields in row) */
.input-container {
  display: flex;
  gap: 32px;
  width: 100%;
}

/* Input Field */
.input-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 10px 40px 10px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.input-field.email-field {
  border-bottom-color: rgba(202, 202, 202, 0.5);
}

.input-field input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
  width: 100%;
}

.input-field input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.input-field:focus-within {
  border-bottom-color: #ffffff;
}

/* Message Field */
.message-field {
  display: flex;
  align-items: center;
  padding: 10px 10px 40px 10px;
  width: 100%;
  max-width: 1134px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.message-field textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
  width: 100%;
  min-height: 36px;
  resize: vertical;
}

.message-field textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.message-field:focus-within {
  border-bottom-color: #ffffff;
}

/* Submit Button */
.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 24px;
  border-radius: 28px;
  border: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 182px;
  align-self: flex-start;
  color: #ffffff;
  /* sets text & icon color */
}

.submit-button:hover {
  background: #ffffff;
  color: #000000;
  /* text & icon turn black */
  border-color: #000000;
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.button-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: -0.32px;
  white-space: nowrap;
  color: inherit;
  /* inherits from button */
}

.button-icon {
  width: 16px;
  height: 16px;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}


.button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1300px) {
  .contact-form-section {
    padding: 96px 60px;
  }

  .message-field {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .contact-form-section {
    padding: 80px 50px;
  }

  .form-container {
    gap: 48px;
  }

  .form-header {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .header-text {
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .social-media-icons {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .main-title2 {
    font-size: 36px;
    white-space: normal;
    text-align: center;
  }

  .form-subtitle,
  .form-description {
    white-space: normal;
    text-align: center;
  }

  .input-container {
    gap: 28px;
  }

  .form-input-area {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 32px;
  }

  .form-container {
    gap: 40px;
  }

  .form-header {
    gap: 28px;
  }

  .header-text {
    gap: 16px;
  }

  .main-title2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .form-subtitle {
    font-size: 18px;
  }

  .form-description {
    font-size: 16px;
  }

  .get-started {
    font-size: 16px;
  }

  .social-media-icons {
    gap: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon img {
    width: 22px;
    height: 22px;
  }

  .input-container {
    flex-direction: column;
    gap: 24px;
  }

  .form-input-area {
    gap: 36px;
  }

  .input-field,
  .message-field {
    padding: 8px 8px 32px 8px;
  }

  .submit-button {
    align-self: center;
    width: 160px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 40px 20px;
  }

  .form-container {
    gap: 32px;
  }

  .form-header {
    gap: 24px;
  }

  .header-text {
    gap: 12px;
  }

  .main-title2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .form-subtitle {
    font-size: 16px;
  }

  .form-description {
    font-size: 14px;
  }

  .get-started {
    font-size: 14px;
  }

  .social-media-icons {
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .input-container {
    gap: 20px;
  }

  .form-input-area {
    gap: 32px;
  }

  .input-field,
  .message-field {
    padding: 6px 6px 28px 6px;
  }

  .input-field input,
  .message-field textarea {
    font-size: 14px;
    line-height: 32px;
  }

  .submit-button {
    padding: 12px 20px;
    width: 140px;
  }

  .button-text {
    font-size: 14px;
  }

  .button-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .contact-form-section {
    padding: 32px 16px;
  }

  .form-container {
    gap: 28px;
  }

  .main-title2 {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 15px;
  }

  .form-description {
    font-size: 13px;
  }

  .get-started {
    font-size: 13px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .input-field,
  .message-field {
    padding: 4px 4px 24px 4px;
  }

  .input-field input,
  .message-field textarea {
    font-size: 13px;
    line-height: 28px;
  }

  .submit-button {
    width: 120px;
    padding: 10px 16px;
  }

  .button-text {
    font-size: 13px;
  }
}



/* FAQ Section - No Positioning */
.faq-section {
  background: #ffffff;
  width: 100%;
  padding: 96px 149px;
  display: flex;
  justify-content: center;
}

/* FAQ Container */
.faq-container {
  width: 100%;
  max-width: 1013px;
}

/* FAQ Title */
.faq-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.35;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

/* FAQ List */
.faq-list {
  width: 100%;
}

/* FAQ Item */
.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* FAQ Header - Question + Icon */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.faq-header:hover {
  opacity: 0.8;
}

/* FAQ Question */
.faq-question {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: #3c3c3c;
  flex: 1;
  margin: 0;
  text-align: left;
}

/* FAQ Icon */
.faq-icon {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-icon.expanded {
  transform: rotate(90deg);
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.expanded {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #505050;
  width: 100%;
  max-width: 945px;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1300px) {
  .faq-section {
    padding: 96px 80px;
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 80px 60px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .faq-question {
    font-size: 17px;
    line-height: 1.4;
  }

  .faq-answer-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-header {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 32px;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 16px;
    line-height: 1.4;
    padding-right: 8px;
  }

  .faq-answer-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-header {
    padding: 20px 0;
    gap: 16px;
  }

  .faq-answer.expanded {
    padding-bottom: 20px;
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 28px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 15px;
    line-height: 1.4;
    padding-right: 4px;
  }

  .faq-answer-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-header {
    padding: 18px 0;
    gap: 12px;
  }

  .faq-answer.expanded {
    padding-bottom: 18px;
    max-height: 400px;
  }

  .faq-icon {
    margin-top: 1px;
  }
}

@media (max-width: 360px) {
  .faq-section {
    padding: 32px 16px;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .faq-question {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-answer-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .faq-header {
    padding: 16px 0;
    gap: 10px;
  }

  .faq-answer.expanded {
    padding-bottom: 16px;
    max-height: 450px;
  }

  .faq-icon {
    width: 14px;
    height: 14px;
  }
}

/* Animation Effects */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer-section {
  position: relative;
  width: 100%;
  min-height: 450px;
  z-index: 1;
}

.footer-background {
  background: #131314;
  border-radius: 29px;
  width: 95%;
  max-width: 1225px;
  margin: 0 auto;
  min-height: 450px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.footer-content {
  position: relative;
  max-width: 1112px;
  width: 90%;
  margin: 0 auto;
  padding: 64px 0 32px 0;
  z-index: 1;
  min-height: 322px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-main-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
  position: relative;
}

.footer-brand,
.footer-contact,
.footer-company,
.footer-tagline {
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.brand-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 28.152px;
  color: #ffffff;
  text-align: left;
  width: 100%;
  margin: 0;
  line-height: 1.35;
}

.brand-location {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  width: 100%;
  margin: 0;
}

.brand-location p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
}

.location-uae {
  color: #737275;
}

.newsletter-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #737275;
  font-size: 14px;
  text-align: left;
  width: 100%;
  margin: 0;
}

.newsletter-form {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 4px 4px 24px;
  border-radius: 1000px;
  width: 100%;
  max-width: 400px;
}

.newsletter-input {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #737275;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: #737275;
  opacity: 1;
}

.signup-button {
  background: #000000;
  color: #ffffff;
  /* text & icon share same color */
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 28px;
  border: 1px solid transparent;
  /* space for hover border */
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.signup-button:hover {
  background: #ffffff;
  color: #000000;
  /* text & icon turn black */
  border-color: #000000;
  transform: translateY(-1px);
}

.signup-button-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: -0.0032px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: inherit;
  /* follows button color */
}

.signup-button-text p {
  line-height: 1;
  white-space: pre;
}

.signup-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.signup-icon svg {
  width: 100%;
  height: 100%;
}


.footer-contact {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  letter-spacing: -0.0032px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-detail {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #b1b1b1;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-word;
}

.contact-detail:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-spacing {
  font-size: 16px;
  margin-bottom: 0;
}

.footer-company {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.company-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
}

.company-spacing {
  font-size: 16px;
  margin-bottom: 0;
}

.company-link {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #a4a4a5;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.company-link:hover {
  color: #ffffff;
}

.footer-tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tagline-text {
  margin-bottom: 0;
  line-height: 1.4;
}

.footer-bottom {
  width: 100%;
  border-top: 0.5px solid rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 0 0;
  position: relative;
  z-index: 1;
}

.copyright-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #737275;
  font-size: 14px;
  text-align: left;
  flex: 1;
  min-width: 200px;
  margin-bottom: 8px;
}

.copyright-text p {
  line-height: 1.35;
  margin: 0;
}

.social-media {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.social-icon {
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.facebook-icon {
  height: 19px;
  width: 8.55px;
}

.linkedin-icon {
  height: 19px;
  width: 20px;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.twitter-icon {
  height: 20px;
  width: 18px;
}

/* ----------- LARGE TABLET ------------ */
@media (max-width: 1024px) {
  .footer-section {
    min-height: unset;
    padding: 24px 0;
  }

  .footer-background {

    background: #131314;
    border-radius: 24px;
    min-height: 100%;
    position: static;
    left: 0;
    transform: none;
    width: 95%;
    max-width: none;
  }

  .footer-content {
    max-width: 90%;
    width: 90%;
    padding: 48px 0 32px 0;
  }

  .footer-main-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-tagline {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: row;
    padding-top: 20px;
    margin-top: 20px;
  }

  .brand-title {
    font-size: 24px;
  }
}

/* ----------- TABLET ------------ */
@media (max-width: 768px) {
  .footer-section {
    padding: 16px;
    min-height: unset;
  }

  .footer-background {

    background: #131314;
    border-radius: 20px;
    min-height: unset;
    width: 100%;
  }

  .footer-content {
    max-width: 100%;
    width: 100%;
    padding: 32px 24px 24px 24px;
  }

  .footer-main-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .footer-brand,
  .footer-contact,
  .footer-company,
  .footer-tagline {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-tagline {
    text-align: left;
    margin-top: 0;
    font-size: 16px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding-top: 20px;
    margin-top: 20px;
  }

  .copyright-text {
    width: 100%;
    margin-bottom: 0;
  }

  .social-media {
    justify-content: flex-start;
    width: 100%;
  }

  .brand-title {
    font-size: 24px;
  }
}

/* ----------- MOBILE ------------ */
@media (max-width: 480px) {
  .footer-section {

    background: #131314;
    padding: 12px;
  }

  .footer-background {
    border-radius: 16px;
  }

  .footer-content {
    padding: 24px 16px 20px 16px;
  }

  .footer-main-content {
    gap: 24px;
  }

  .brand-title {
    font-size: 20px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .newsletter-form {
    padding: 6px 6px 6px 16px;
    gap: 16px;
  }

  .newsletter-input {
    font-size: 14px;
  }

  .signup-button {
    padding: 12px 16px;
  }

  .signup-button-text {
    font-size: 14px;
  }

  .contact-detail {
    word-break: break-all;
  }

  .footer-bottom {
    padding-top: 16px;
    margin-top: 16px;
    gap: 12px;
  }
}

/* ----------- TINY MOBILE ------------ */
@media (max-width: 360px) {
  .footer-section {
    padding: 8px;
  }

  .footer-content {
    padding: 20px 12px 16px 12px;
  }

  .brand-title {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .newsletter-form {
    padding: 4px 4px 4px 12px;
    gap: 12px;
  }

  .newsletter-input {
    font-size: 13px;
  }

  .signup-button {
    padding: 10px 12px;
  }

  .signup-button-text {
    font-size: 13px;
  }

  .social-media {
    gap: 12px;
  }
}