@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #111827;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleY(-1);
  z-index: 0;
  top: -16px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 42%,
      #ffffff 72%);
  z-index: 1;
  pointer-events: none;
}

.navbar,
.hero-content,
.industries {
  position: relative;
  z-index: 2;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  /* backdrop-filter: blur(14px); */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 170px;
}

.nav-links {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.37);
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
}

.services-toggle {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 400;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 400;
}

.nav-links .active {
  color: #ff5b2e;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contact-btn {
  background: #FFFFFF;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-decoration: none;
  color: #0A0A0A;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}




.contact-btn span {
  display: flex;
  align-items: center;
}

.mobile-menu {
  display: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  /* max-width: 620px; */
  margin-top: 180px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  color: rgba(41, 37, 36, 1);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero-content p {
  /* max-width: 650px; */
  margin: 0px 0px 30px 0px;
  font-size: 16px;
  line-height: 1.2;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}


.primary-btn {
  background: rgba(41, 37, 36, 1);
  color: rgba(250, 250, 249, 1);
  text-decoration: none;
  padding: 6px 10px 6px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}

.primary-btn span {
  background: rgba(242, 85, 50, 1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  color: rgba(87, 83, 78, 1);
  border: 1px solid #ddd;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}


/* .industries-section {
  padding: 0px 0px 40px;
  background: #fff;
} */
/*
.industries {
  text-align: center;
} */

/* .industries-title {
  font-size: 20px;
  font-weight: 600;
  ;
  margin-bottom: 40px;
  color: #101828;
} */

/* .industries-title span {
  font-style: italic;
  font-weight: 400;
  ;
} */

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;

  animation: marqueeMove 18s linear infinite;
}

/* .industry-item {
  display: flex;
  align-items: center;
  gap: 12px;

  white-space: nowrap;

  font-size: 16px;
  font-weight: 600;
  color: #111;
} */

/* .industry-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
} */

/* INFINITE SMOOTH SCROLL */

@keyframes marqueeMove {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* .industry-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
} */
/*
.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #000000;
  white-space: nowrap;
} */

/* .industry-icon img {
  width: 24px;
  height: 24px;
} */

/*
second section */

.hesitate-section {
  position: relative;
  /* min-height: 470px; */
  padding-top: 80px;
  overflow: hidden;
  background: #f7f7f7;
  background-image: url("asset/png/home-sec2-backgroundimg.png");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.hesitate-container {
  position: relative;
  z-index: 2;
  max-width: 1110px;
  margin: 0 auto;
}

.hesitate-container h2 {
  margin-bottom: 30px;
  color: rgba(16, 24, 40, 1);
  font-size: 32px;
  font-weight: 500;
}

.hesitate-container h2 em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  color: #071225;
}

.hesitate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left: 30px;
}

.hesitate-card {
  position: relative;
  min-height: 270px;
  padding: 20px 24px 0px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 6px 6px 0px 0px;
}

.hesitate-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #101828;
}

.hesitate-card p {
  max-width: 250px;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: #4d5a6d;
}

.hesitate-card img {
  position: absolute;
  left: 9%;
  bottom: 0px;
  width: 91%;
  max-width: 226px;
  pointer-events: none;
}


.where-section {
  padding: 80px 0;
  background: #ffffff;
}

.where-container {
  max-width: 1120px;
  margin: 0 auto;
}

.where-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.where-header h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  color: #101828;
}

.where-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #4A5565;
}

.where-header p em {
  font-family: Georgia, "Times New Roman", serif;
  color: #071225;
}

.explore-link {
  margin-bottom: 6px;
  color: #F25532;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.where-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.where-card {
  min-height: 190px;
  padding: 24px 16px;
  background: #f0f0f0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.where-card:hover,
.advantage-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);
}

.where-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ffffff;
  color: #ff4b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: auto;
}

.where-card h3 {
  margin: 40px 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #101828;
}

.where-card p {
  margin: 0;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.35;
  color: #4A5565;
}

.where-card:hover {
  position: relative;
  overflow: hidden;
  /* background-image:
    linear-gradient(90deg, rgba(255, 87, 34, 0.95), rgba(255, 87, 34, 0.7), rgba(184, 86, 255, 0.35)),
    url("asset/png/card-bg.png"); */
  background-image: url("asset/png/card-bg.png");
  background-size: cover;
  color: #ffffff;

}

.where-card:hover h3,
.where-card:hover p {
  color: #ffffff;
}

.where-card.active .where-icon {
  color: #ff4b2b;
}



.gcc-section {
  padding: 0px 0px 80px;
  background: #FFFFFF;
}

.gcc-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  background-image: url("asset/png/gcc-card-bg.png.svg");
  background-size: cover;
  background-position: center;
}

.gcc-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 36px;

  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);

  background-size: 86px 100%;
  opacity: 0.35;
}

.gcc-left {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
}

.gcc-left h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}

.gcc-left h2 span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.gcc-desc {
  max-width: 520px;
  margin: 0 0 34px;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

.gcc-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gcc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gcc-icon {
  width: 40px;
  height: 40px;
  min-width: 35px;
  border-radius: 6px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.gcc-icon img {
  width: 18px;
}

.gcc-feature h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.gcc-feature p {
  margin: 0;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.gcc-right {
  position: relative;
  z-index: 2;
  width: 390px;
  flex-shrink: 0;
}

.gcc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.different-section .container {
  margin: unset;
}

.different-section {
  padding: 80px 0 0px;
  background: #F1F1F1;
  /* overflow: hidden;
  min-height: 100vh;
  background: url(asset/svg/what-makes-us-different.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
}

.different-container {
  max-width: 1200px;
  margin: 0 auto;
}

.different-section h3 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #101828;
  margin-left: 80px;
}

.different-section h3 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.different-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.different-img-wrap img {
  width: 100%;
  min-width: 1100px;
  max-width: 1440px;
  display: block;
}



.advantage-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.advantage-container {
  max-width: 1120px;
  margin: 0 auto;
}

.advantage-heading h2 {
  margin-bottom: 30px;
  color: #101828;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
}

.advantage-heading h2 span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.advantage-card {
  position: relative;
  min-height: 270px;
  padding: 18px 16px 0;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #EEEEEE;
}

.advantage-card h3 {
  max-width: 210px;
  margin: 0 0 12px;
  color: #101828;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 500;
}

.advantage-card p {
  max-width: 210px;
  margin: 0;
  color: #ACACAC;
  font-size: 12px;
  line-height: 1.35;
}

.advantage-graph {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;

  display: flex;
  align-items: flex-end;
  gap: 2px;

  padding: 0 0 0 0;
}

.advantage-graph span {
  flex: 1;
  border-radius: 0;
  background: linear-gradient(180deg, #FBFCFE 1.44%, #CDD5FC 11.06%, #98AAF4 26.63%, #758DF1 47.12%, #869CF1 62.5%, #BDCAF7 80.29%, #E3E8FB 88.94%, #EFF1FD 93.75%, #FFFFFF 100%);
  filter: blur(0.2px);
}

.advantage-graph span:nth-child(1) {
  height: 88px;
}

.advantage-graph span:nth-child(2) {
  height: 72px;
}

.advantage-graph span:nth-child(3) {
  height: 56px;
}

.advantage-graph span:nth-child(4) {
  height: 42px;
}

.advantage-graph span:nth-child(5) {
  height: 54px;
}

.advantage-graph span:nth-child(6) {
  height: 76px;
}

.advantage-graph span:nth-child(7) {
  height: 92px;
}

.advantage-graph span:nth-child(8) {
  height: 104px;
}




.drive-section {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background: #f3f3f3;
}

.drive-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("asset/png/drive-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.drive-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  min-height: 315px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.drive-content {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-right: 70px;
}

.real-change {
  font-size: 14px;
  font-style: italic;
  color: #101828;
}

.drive-section {
  position: relative;
  height: 415px;
  overflow: hidden;
  background: #f2f2f2;
}

.drive-orange {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8e80 0%, #ffd8aa 56%, #ff8f82 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 28% 100%, 58% 47%);
  z-index: 1;
}

.drive-orange::before,
.drive-orange::after {
  content: "";
  position: absolute;
  left: -12%;
  width: 58%;
  height: 118%;
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  z-index: 2;
}

.drive-orange::before {
  top: -73%;
  transform: rotate(21deg);
}

.drive-orange::after {
  bottom: -73%;
  transform: rotate(-21deg);
}

.drive-soft-wave {
  position: absolute;
  right: 0;
  top: 41%;
  width: 55%;
  height: 88px;
  background: rgba(255, 245, 220, 0.35);
  border-radius: 100% 0 0 100%;
  transform: translateY(-50%) rotate(-2deg);
  z-index: 2;
}

.drive-dots-top,
.drive-dots-bottom {
  position: absolute;
  left: 41%;
  width: 260px;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}

.drive-dots-top {
  top: 70px;
  transform: rotate(23deg);
}

.drive-dots-bottom {
  top: 213px;
  transform: rotate(-23deg);
}

.drive-dots-top span,
.drive-dots-bottom span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.drive-dots-top span:nth-child(1),
.drive-dots-bottom span:nth-child(1) {
  left: 0;
  top: 58px;
}

.drive-dots-top span:nth-child(2),
.drive-dots-bottom span:nth-child(2) {
  left: 28px;
  top: 58px;
}

.drive-dots-top span:nth-child(3),
.drive-dots-bottom span:nth-child(3) {
  left: 56px;
  top: 58px;
}

.drive-dots-top span:nth-child(4),
.drive-dots-bottom span:nth-child(4) {
  left: 84px;
  top: 58px;
}

.drive-dots-top span:nth-child(5),
.drive-dots-bottom span:nth-child(5) {
  left: 112px;
  top: 58px;
}

.drive-dots-top span:nth-child(6),
.drive-dots-bottom span:nth-child(6) {
  left: 140px;
  top: 58px;
}

.drive-dots-top span:nth-child(7),
.drive-dots-bottom span:nth-child(7) {
  left: 168px;
  top: 58px;
}

.drive-dots-top span:nth-child(8),
.drive-dots-bottom span:nth-child(8) {
  left: 196px;
  top: 58px;
}

.drive-dots-top span:nth-child(9),
.drive-dots-bottom span:nth-child(9) {
  left: 224px;
  top: 58px;
}

.drive-center-line {
  position: absolute;
  left: 57%;
  top: 47%;
  width: 320px;
  height: 3px;
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%);
  z-index: 4;
}

.drive-center-line::before,
.drive-center-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}

.drive-center-line::before {
  left: 72px;
}

.drive-center-line::after {
  left: 108px;
}

.drive-rings {
  position: absolute;
  right: 6.4%;
  top: 46.5%;
  width: 154px;
  height: 154px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.drive-rings::before,
.drive-rings::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.drive-rings::before {
  inset: 31px;
}

.drive-rings::after {
  inset: 66px;
}

.drive-container {
  position: relative;
  z-index: 6;
  height: 415px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drive-container h2 {
  color: #101828;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
  white-space: nowrap;
}

.drive-container h2 em,
.real-change {
  font-style: italic;
  font-weight: 400;
}

.drive-action {
  position: absolute;
  left: 58.2%;
  top: 47%;
  display: flex;
  align-items: center;
  gap: 92px;
  transform: translateY(-50%);
  z-index: 7;
}


.drive-btn {
  height: 43px;
  padding: 7px 7px 7px 40px;
  border-radius: 999px;
  background: #28201e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

.drive-btn span {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #f25532;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}



/* ================= FOOTER ================= */
.footer {
  background: #07142b;
  padding: 30px 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  width: 180px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  color: #8d93a1;
  font-size: 14px;
  font-weight: 400;
}


body.popup-open {
  overflow: hidden;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.contact-popup.show {
  display: flex;
}

.popup-box {
  width: min(100%, 540px);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 8px;
}

.popup-box h2 em {
  color: #ef5b2a;
  font-family: Georgia, serif;
}

.popup-box>p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-box label {
  font-size: 12px;
  color: #172033;
  margin-top: 4px;
}

.popup-box label span {
  color: #ef3f28;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
}

.popup-box textarea {
  min-height: 70px;
  resize: none;
}

.popup-box form button {
  margin-top: 10px;
  border: none;
  background: #302824;
  color: #ffffff;
  border-radius: 999px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
}





/* ========================= 1200px ========================= */

@media screen and (max-width: 1200px) {

  /* .container {
    width: 92%;
  } */

  .hero-content h1 {
    font-size: 46px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hesitate-cards,
  .where-grid,
  .advantage-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    margin-left: 0px;
  }

  /* .industry-list { */
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  /* } */

  .gcc-container {
    gap: 40px;
  }

  .drive-action {
    gap: 40px;
  }

}



/* ========================= 992px ========================= */

@media screen and (max-width: 992px) {

  .navbar {
    padding: 16px 0;
  }

  .logo img {
    width: 150px;
  }

  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    background: #fff;
    border-radius: 12px;

    font-size: 22px;
    cursor: pointer;

    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;

    top: 70px;
    left: 50%;

    transform: translateX(-50%) translateY(-20px);

    width: 92%;

    background: #fff;

    padding: 24px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;

    gap: 18px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 1000;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 42px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* .industry-list { */
  /* flex-wrap: wrap; */
  /* justify-content: center;
    gap: 16px;
  } */

  .hesitate-cards,
  .where-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0px;
  }

  .gcc-container {
    flex-direction: column;
    padding: 30px;
  }

  .gcc-left,
  .gcc-right {
    width: 100%;
    max-width: 100%;
  }

  .gcc-right img {
    width: 100%;
  }

  .drive-section {
    height: auto;
    padding: 80px 20px;
  }

  .drive-container {
    height: auto;

    flex-direction: column;
    align-items: flex-start;

    gap: 30px;

    padding: 0;
  }

  .drive-container h2 {
    font-size: 34px;
    white-space: normal;
  }

  .drive-action {
    position: static;

    transform: unset;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  /* .drive-orange,
  .drive-soft-wave,
  .drive-dots-top,
  .drive-dots-bottom,
  .drive-center-line,
  .drive-rings {
    display: none;
  } */

  .footer-top {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .advantage-graph {
    position: unset;
  }
}



/* ========================= 768px ========================= */

@media screen and (max-width: 768px) {

  .logo img {
    width: 130px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;

  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
    /* position: relative;
    left: 72px;
    top: -146px; */
  }


  .industries-title,
  .hesitate-container h2,
  .where-header h2,
  .advantage-heading h2,
  .different-section h3,
  .drive-container h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hesitate-cards,
  .where-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
    margin-left: 0px;
  }

  .hesitate-card,
  .where-card,
  .advantage-card {
    min-height: auto;
  }

  .hesitate-card img {
    position: relative;

    left: 0;

    width: 100%;
    max-width: 220px;

    margin-top: 20px;
  }

  .where-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gcc-section,
  .advantage-section {
    padding: 60px 0;
  }

  .gcc-container {
    padding: 24px 20px;
  }

  .gcc-left h2 {
    font-size: 28px;
  }

  .gcc-desc {
    font-size: 14px;
  }

  .different-section {
    min-height: 40vh;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

}



/* ========================= 480px ========================= */

@media screen and (max-width: 480px) {

  .navbar {
    padding: 14px 0;
  }

  .logo img {
    width: 120px;
  }

  .mobile-menu {
    width: 42px;
    height: 42px;

    font-size: 20px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .industries-title,
  .hesitate-container h2,
  .where-header h2,
  .advantage-heading h2,
  .different-section h3,
  .drive-container h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  /* .industry-item {
    font-size: 10px;
    gap: 8px;
  } */

  /* .industry-icon img {
    width: 18px;
    height: 18px;
  } */

  .gcc-left h2 {
    font-size: 24px;
  }

  .drive-btn {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 24px 16px;
  }

  .footer-top img {
    width: 150px;
  }

  .advantage-graph {
    position: unset;
  }

}



/* ========================= 320px ========================= */

@media screen and (max-width: 320px) {

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 12px;
  }

  .advantage-graph {
    position: unset;
  }

  .primary-btn,
  .secondary-btn,
  .drive-btn {
    font-size: 13px;
  }

  .industries-title,
  .hesitate-container h2,
  .where-header h2,
  .advantage-heading h2,
  .different-section h3,
  .drive-container h2 {
    font-size: 22px;
  }

  .where-card,
  .hesitate-card,
  .advantage-card {
    padding: 18px;
  }

  .gcc-container {
    padding: 20px 16px;
  }

  .where-section {
    padding-top: 0px;
  }

  .footer-links a {
    font-size: 13px;
  }

}






.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f5f5f5;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  z-index: 999999;
  border-top: 1px solid #ddd;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
}

.cookie-content a {
  color: #2d4db5;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-settings-btn {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn {
  border: none;
  padding: 16px 34px;
  background: #59b4f1;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-close-btn {
  border: none;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
  color: #555;
}

.cookie-hide {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn,
  .cookie-settings-btn {
    width: 100%;
  }
}
































.industries-section {
  width: 100%;
  padding: 40px 80px;
  background: linear-gradient(120deg, #ffffff 0%, #f8f8ff 55%, #fff7ff 100%);
  overflow: hidden;
}

.industries-container {
  width: 100%;
  max-width: 1570px;
  margin: 0 auto;
}

/* TOP ROW */
.industries-row {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  gap: 28px;
}

.industries-content {
  width: 48%;
  position: relative;
  z-index: 1;
}

.industries-content h2 {
  font-size: 33px;
  line-height: 1.1;
  font-weight: 600;
  color: #171717;
  margin-bottom: 16px;
}

.industries-content h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.main-text {
  font-weight: 500;
  color: #525252;
}

.sub-text {
  color: #737373;
}

.main-text,
.sub-text {
  font-size: 14px;
  line-height: 1.5;
  /* color: #565656; */
  max-width: 620px;
  margin-bottom: 16px;
}

.sub-text {
  color: #777;
  margin-bottom: 0;
}

.bg-text {
  position: absolute;
  left: -18px;
  bottom: -50px;
  font-size: 200px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.025);
  z-index: -1;
  line-height: 1;
}

/* TOP 2 CARDS */
.top-cards {
  width: 52%;
  display: flex;
  gap: 22px;
}

.top-cards .industry-card {
  width: 50%;
}

/* BOTTOM ROW */
.industries-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-top: 16px;
}

.domain-box {
  width: 48%;
}

.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff4b2b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* BOTTOM 3 CARDS */
.bottom-cards {
  width: 52%;
  display: flex;
  gap: 22px;
}

.bottom-cards .industry-card {
  width: 33.333%;
}

/* CARD */
.industry-card {
  z-index: 456;
  min-height: 128px;
  padding: 20px 22px;
  border-radius: 4px;
  box-shadow: 0px 3.01px 15.07px -3.01px #00000008;
  border-top: 0.75px solid #E5E5E599;
  background: #FFFFFF;

}

.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4b2b;
  font-size: 17px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FAFAFA 0%, rgba(245, 245, 245, 0.5) 100%);
  border-top: 0.75px solid #F5F5F5;
}

.industry-card h3 {
  font-size: 14px;
  color: #171717;
  margin-bottom: 8px;
  font-weight: 700;
}

.industry-card p {
  font-size: 12px;
  line-height: 1.55;
  color: #777;
  margin: 0;
}

/* TABLET */
@media (max-width: 1100px) {
  .industries-section {
    padding: 50px 24px;
  }

  .industries-row,
  .industries-row-bottom,
  .top-cards,
  .bottom-cards {
    flex-direction: column;
  }

  .industries-content,
  .top-cards,
  .domain-box,
  .bottom-cards {
    width: 100%;
  }

  .top-cards .industry-card,
  .bottom-cards .industry-card {
    width: 100%;
  }

  .bg-text {
    display: none;
  }

  .bottom-cards {
    width: 100%;

  }
}

/* MOBILE */
@media (max-width: 650px) {
  .industries-section {
    padding: 45px 16px;
  }

  .industries-content h2 {
    font-size: 28px;
  }

  .industry-card {
    min-height: auto;
  }
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.new-class-width {
  width: 80%;
}

@media (max-width: 650px) {

  .industries-row-bottom {
    gap: 0px;
    margin-top: 4px;
  }

  .new-class-width {
    width: 100%;
  }

}

















.contact-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.contact-btn:hover span {
  transform: translateX(6px);
}

/* .contact-btn:hover{
 box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
} */



.contact-btn span img {
  display: block;
}

.primary-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.primary-btn:hover span {
  transform: translateX(6px);
}

.primary-btn:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.primary-btn span img {
  display: block;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffffff;
  padding: 2px 0;
  border-radius: 50px;
  margin: 10px;
  width: 98%;
}


.navbar.scrolled .logoimg23 {
  width: 170px;
}

.navbar.scrolled .nav-links {
  border: none;
  background: transparent;
}
