:root {
  --primary-blue: #4173f0;
  --text-dark: #22242b;
  --text-gray: #4a4e61;
  --bg-light: #fafbff;
  --border-color: #e8efff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter Light';
  src: url('./Asset/Font/Inter_28pt-Light.woff') format('woff');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Inter Regular';
  src: url('./Asset/Font/Inter_28pt-Regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Inter Medium';
  src: url('./Asset/Font/Inter_24pt-Medium.woff') format('woff');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Inter Semibold';
  src: url('./Asset/Font/Inter_18pt-SemiBold.woff') format('woff');
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Inter Bold';
  src: url('./Asset/Font/Inter_24pt-Bold.woff') format('woff');
  font-style: normal;
  font-weight: 700;
}


body {
  font-family: 'Inter Regular';
  letter-spacing: 0.03em;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 37px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 19px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-secondary {
  background-color: #f1f1f1;
  color: black;
}

.btn-dark {
  background-color: #343a40;
  color: white;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22242B;
  padding: 6px 0px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 400;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#what-we-do .text-container {
  padding-block: 9% 4%;
}

#what-we-do .badge {
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 8px 0;
  background: #F0F1F3 !important;
  height: 15%;
}



.logo-group img {
  height: 93px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  display: none;
  gap: 50px;
}

.nav-link {
  color: #6B7280;
  font-size: 18px;
  font-family: 'Inter Regular';
}


.btn-request-demo {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #343A40;
  color: #fff;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

.btn-request-demo:hover {
  background-color: #50555A;
}

.feature-card.highlight-card {
  position: relative;
  border-radius: 20px;
  padding: 16px;
}

.feature-card.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: 20px;
  background: linear-gradient(135deg, #ff7a18, #ff4fd8);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#features-section .features-grid {
  gap: 0px;
}

#features-section .feature-col {
  gap: 1.4rem;
}

#features-section .feature-col .feature-card {
  padding: 33px 38px;
}

#features-section .feature-col.center-col {
  padding: 0 1.4rem;
}

#features-section .feature-col .feature-card {
  padding: 30px 20px !important;
}

#features-section .btn-dark {
  border-radius: 7px;
  background-color: #343a40 !important;
  padding: 16px !important;
}

.features-grid .feature-card>* {
  background: transparent;
  border-radius: 7px;
  padding: 3px;
}

#features-section .feature-card p {
  background: transparent;
}

#features-section .card-icon-header h3 {
  font-size: 1.3rem;
  font-family: 'Inter Light';
  letter-spacing: 0.03em;
}

#features-section .feature-card p {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-family: 'Inter Light';
}

.feature-card.highlight-card:hover {
  box-shadow: 0px 2px 3px 1px #ff000024 !important;
}

#features-section .feature-col .feature-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.feature-card>* {
  background: #ffffff;
  border-radius: 18px;
  /* slightly smaller than parent */
  padding: 24px;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}



.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gradient-text {
  background: linear-gradient(90deg,
      #ff9a3c,
      #ff5f9e,
      #7b61ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
}

.white-text {
  color: #ffffff;
  display: inline-block;
  font-size: 4rem;
  font-family: 'Inter Bold';
}

.ai-icon-wrapper {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: -21px;
  right: 7px;
}

.ai-icon-wrapper img {
  width: 32px;
  height: auto;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 100%);
  /* In real implementation, this would be the video/image */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-container {
  padding-block: 8% 8%;
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 24px;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0px;
  margin-bottom: 8%;
}

.badge-rect {
  width: 38px;
  height: 12px;
  background-color: var(--primary-blue);
  border-radius: 10px;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  display: none;
  width: 100%;
  height: auto;
}

.bg-video.active {
  display: block;
}

.hero-text {
  display: none;
}

.hero-text.active {
  display: block;
}




.video1 {
  display: block;
}

.hero-badge span {
  color: #FFFFFF;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-family: 'Inter Light';
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 23px auto 40px 0px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  letter-spacing: 0.03em;
}


.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-family: 'Inter Light';
}

.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 100px;
  background: transparent;
}

.scroll-indicator {
  position: absolute;
  right: 7%;
  top: 62%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 16px;
  background: white;
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.indicator.active {
  height: 32px;
  background: linear-gradient(180deg, #225fc8);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-features {
    flex-direction: row;
    gap: 14px;
  }

  .scroll-indicator {
    display: none;
  }
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
  border-block: 1px solid #ebebeb;
}

.cards-container> :first-child {
  border-left: 1px solid #e5e7eb;
}

.logo-card:first-child::before {
  top: -5px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
  width: 89%;
  margin: auto;
}

.client-logo {
  max-height: 66px;
  width: 100%;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.section-header {
  margin-bottom: 60px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 20px;
  align-items: center;
}

.header-content h2 {
  font-size: 3.6rem;
  /* font-weight: 700; */
  max-width: 52%;
  font-family: 'Inter Bold';
}

.header-content p {
  max-width: 600px;
  color: #4a4e61;
  line-height: 1.6;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.management-profile {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 53%;
  margin: auto;
  position: relative;

}

.management-profile img {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s;
  padding: 32px 32px 0 32px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}

.card-icon-header h3 {
  font-size: 1.4rem;
  margin-top: 3px;
  font-family: 'Inter Medium';
}

.highlight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.gradient-text {
  /* font-weight: 700; */
  font-family: 'Inter Bold';
  background: linear-gradient(90deg, #bf1a70 0%, #ff9e4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-features .feature-item span {
  color: #fff;
  letter-spacing: 0.03em;
}

.highlight-visual {
  margin: 24px 0;
  flex-grow: 1;
  position: relative;
  background-color: #eef6fc;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
}

/* Initial state: content hidden and slightly below */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease-out;
}

/* Active state: moves up and becomes visible */
.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: you can also style smoother */
.animate-up.delay-1 {
  transition-delay: 0.2s;
}

.animate-up.delay-2 {
  transition-delay: 0.4s;
}

.animate-up.delay-3 {
  transition-delay: 0.6s;
}

.animate-up.delay-4 {
  transition-delay: 0.8s;
}

.ai-gradient {
  background: linear-gradient(90deg,
      #ff5f9e,
      #ff9a3c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-size: 4rem;
  font-family: 'Inter Bold';
}

.yellow-gradient-text {
  background: linear-gradient(90deg,
      #ff9a3c);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-size: 4rem;
  font-family: 'Inter Bold';
}

.merged-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ai-visual-bg {
  width: 100%;
  height: 100%;
}

.ai-visual-fg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  border-radius: 8px 0 0 0;
  box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.1);
}

#ai-services-section .ai-icon-wrapper {
  top: -10px;
  right: 14px;
}

#ai-services-section .ai-icon-wrapper img {
  width: 19px;
}

.badge-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.5s ease;
}

.badge-content.active {
  opacity: 1;
  visibility: visible;
}


#products-section {
  min-height: 600px;
  background: url("./Asset/Image/Cloud-image.svg") center / cover no-repeat;
}

#products-section .container {
  background-color: #fafbfe;
  border-radius: 18px;
  padding-top: 4rem;
  padding-inline: 4rem;

}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.products-text h2 {
  font-size: 4rem;
  margin: 20px 0 40px;
  line-height: 1.2;
}

.product-item {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #f366c8;
  border-radius: 2px;
}

.product-logo {
  height: 40px;
  margin-bottom: 16px;
}

.product-item p {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.2rem;
  font-family: 'Inter Light';
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
}


.product-icon-small {
  /* height: 30px; */
  width: auto;
}

.products-visual {
  position: relative;
  height: 600px;
  background-color: #fafbfe;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-screen-main {
  position: absolute;
  width: 100%;
  border-radius: 8px;
  margin-top: 2rem;
}

#products-section .other-products {
  margin-left: 1.6rem;
}

.product-screen-secondary {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 2;
}

.float-card {
  position: absolute;
  width: 150px;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.c1 {
  bottom: 10%;
  right: 20%;
}

.c2 {
  bottom: 20%;
  right: 5%;
}
.nav-link.active {
  color: #4173F0;
  font-family: "Inter Semibold";
}
#certification-section .outside-grid {
    border-block:none; 
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-visual {
    height: 400px;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  margin-bottom: 3rem;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-gray);
  font-family: 'Inter Light';
}

.illustration-icon {
  height: 306px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%234173F0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

#ai-services-section {
  background-color: #34393e;
  color: #ffffff;
  padding: 0;
}

.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.ai-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-title-group h2 {
  font-size: 36px;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.service-item {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #34393e;
  border-left: none;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}

.service-item p {
  color: #b5b5b5;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  font-family: 'Inter Light';
}

.ai-stats-visuals {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-inline: 3rem 2rem;
  padding-block: 3rem 6rem;
}

.ai-title-content h4 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  font-weight: 600;
  max-width: 80%;
  letter-spacing: 0.08em;
}

.ai-bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  /* Complex SVG background would go here */
}

.stat-card {
  position: relative;
  z-index: 1;
  padding: 0px 24px 40px 24px;
}

.stat-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.stat-badge.orange {
  background: linear-gradient(90deg, rgba(255, 156, 63, 0.90) 0%, rgba(255, 190, 0, 0.90) 100%);
  color: #ffffff;
  font-family: 'Inter Light';
  letter-spacing: 0.1em;
}


.stat-value {
  font-size: 4.4rem;
  margin-bottom: 12px;
  font-family: 'Inter Regular';
}

@media (max-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .ai-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 89%;
  margin: auto;
}

.choose-card:first-child::before,
.choose-card:first-child::after,
.logo-card:first-child::before,
.logo-card:first-child::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #2f6bff;
  left: -5px;
}

.choose-card:first-child::before,
.logo-card:first-child::before {
  top: -5px;
}

.choose-card:first-child::after,
.logo-card:first-child::after {
  bottom: -5px;
}

.outside-grid> :first-child {
  border-left: 1px solid #e5e7eb;
}

.outside-grid {
  border-block: 1px solid #ececec;
}

#why-choose-section .container {
  max-width: unset;
  margin: unset;
  padding: unset;
}

#why-choose-section .section-header {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 20px;
}

#why-choose-section .header-content {
  margin-block: 20px 4rem;
}

.sparkle-with-header img {
  width: 24px;
  height: 24px;
  margin-bottom: 13px;
}

.choose-card {
  text-align: center;
  padding: 3rem;
  border-right: 1px solid #ececec;
  position: relative;
}

.service-item p {
  margin-left: 2.1rem;
}

.icon-box {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.icon-box.purple {
  background-color: #7900f0;
}

.icon-box.orange {
  background-color: #f9a214;
}

.icon-box.pink {
  background-color: #c01eb3;
}

.icon-box.blue {
  background-color: #7a64c0;
}

.choose-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  max-width: 29rem;
  font-family: 'Inter Medium';
  letter-spacing: 0.02em;

}

.choose-card p {
  font-size: 1.2rem;
  color: #4a4e61;
  line-height: 1.5;
  text-align: center;
  font-family: 'Inter Light';
}

@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 4rem 2.5rem;
  position: relative;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.02);
  width: 78%;
  margin: auto;
  margin-block: 3rem;
}

.carousal-content {
  display: flex;
  align-items: center;
  width: 75%;
  margin: auto;
}

.testimonial-back-card {
  background-color: gray;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 60px;
  position: relative;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.02);
}

.testimonial-content blockquote {
  font-size: 20px;
  line-height: 1.5;
  color: #22242b;
  margin-bottom: 4rem;
  font-family: 'Inter Light';
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 2rem;
}

.author-avatar {
  width: 57px;
  height: 57px;
  border-radius: 50%;
}

.author-info h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

.author-info p {
  font-size: 1.1rem;
  color: #6B7290;
  line-height: 2;
}

#testimonials-section {
  padding: 80px 0 68px 0;
}

.testimonial-nav {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  gap: 16px;
}

.nav-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background-color: var(--bg-light);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 9%;
  right: -28px;
  width: 1.6rem;
  height: 84%;
  background: #fafbff;
  border-radius: 0 24px 24px 0;
  border: 1px solid #eef3ff;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 9%;
  left: -28px;
  width: 1.6rem;
  height: 84%;
  background: #fafbff;
  border-radius: 24px 0 0 24px;
  border: 1px solid #eef3ff;
}

.hero-title .gradient-text {
  font-size: 4rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }

  .testimonial-back-card {
    padding: 30px;
  }

  .testimonial-nav {
    position: static;
    margin-top: 30px;
    justify-content: center;
  }
}

#cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 92%;
  margin: 0 auto;
  padding: 19rem 20px;
  background: url("./Asset/Image/Cloud-dark.png") center / cover no-repeat;
  border-radius: 1.4rem;
}

.cta-buttons .btn {
  padding: 20px 24px;
}

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #22242b;
}

.cta-buttons .btn-primary:hover {
  background-color: #f3f3f3;
}

.cta-buttons .btn-secondary:hover {
  color: #f3f3f3;
}

.cta-buttons .btn-secondary:hover svg path {
  stroke: #f3f3f3;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  gap: 10px;
}

.cta-content h2 {
  font-size: 3.6rem;
  font-family: 'Inter Medium';
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.cta-content p {
  font-size: 1.5rem;
  max-width: 52%;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 34px;
  font-family: 'Inter Light';
  letter-spacing: 0.03em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#site-footer {
  background-color: #ffffff;
  padding: 80px 0 40px;
}

.footer-grid {
  display: flex;
  gap: 40px;
}

.logo-column {
  flex: 0 0 25%;
}

.footer-text-column {
  flex: 0 0 75%;
}

.footer-text-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col.brand-col {
  max-width: 100%;
}

.footer-col h4 {
  font-size: 1.2rem;
  /* font-weight: 700; */
  font-family: 'Inter Medium';
  margin-bottom: 24px;
  color: var(--text-dark);
}

.footer-col a {
  display: flex;
  margin-bottom: 16px;
  color: #484848;
  font-size: 1.1rem;
  transition: color 0.2s;
  align-items: center;
  font-family: 'Inter Light';
}

.footer-col a:hover {
  color: #333;
}

.hiring-badge {
  background-color: #e4ecfb;
  color: #509ee3;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  color: var(--text-gray);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.container.hero-content {
  max-width: 92%;
  height: 100%;
  margin-top: 5%;
}

.text-container {
  padding-block: 9%;
}

.feature-col .feature-card,
.feature-col.center-col {
  padding: 32px 32px 32px 32px;
}

.hero-text-wrapper {
  text-align: left;
}

.hero-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-buttons,
.hero-features,
.hero-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-features {
  flex-direction: row;
  align-items: flex-start;
}

.hero-badge,
.badge-content {
  justify-content: flex-start;
  text-align: left;
  text-wrap: nowrap;
  margin-bottom: 5rem;
}

.feature-card p {
  font-size: 1.1rem;
  color: #6B7290;
  line-height: 30px;
  font-family: 'Inter Light';
}

.product-icon-small.metero-icon {
  margin-top: 5rem;
}

.feature-low-highlight {
  color: #6b7290;
  font-family: 'Inter Medium';
}

.feature-blue-highlight {
  color: #4173f0;
  font-family: 'Inter Medium';
}

#ai-services-section .badge {
  color: #fff;
}

#ai-services-section .header-content {
  margin-bottom: 3rem;
  margin-bottom: 2rem;
}

#ai-services-section .container {
  border-inline: 1px solid #4e5257;
  padding-top: 4rem;
  padding-inline: 0;
}

.ai-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #2f3439;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.service-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-item:nth-child(3n) {
  border-right: none;
  /* remove right border on last column */
}

.service-item h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Light';
  letter-spacing: 0.09em;
  font-weight: 600;
  line-height: 25px;
}

.sparkle-with-header {
  display: flex;
  gap: 10px;
}

.service-item p {
  line-height: 1.6;
}

#ai-services-section .badge,
#ai-services-section .header-content {
  padding-left: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 3.4rem;
}

/* Card styling */
.stat-card {
  color: #fff;
}

/* Badge */
.stat-badge {
  display: inline-block;
  padding: 9px 12px;
  font-size: 13px;
  margin-bottom: 16px;
}



/* Value */
.stat-value {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.stat-card p {
  color: #c9cdd1;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter Light';
  letter-spacing: 0.04em;
}

.ai-title-content p {
  color: #c0c0c0;
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 84%;
  letter-spacing: 0.06em;
  font-family: 'Inter Light';
}

.talk-to-ai-actions {
  border: 1px solid #cccdcf;
  display: flex;
  justify-content: space-around;
  border-radius: 6px;
  width: 93%;
  margin: auto;
  margin-top: 2rem;

}

.talk-to-ai-actions .btn-request-demo {
  gap: 12px;
  background-color: #34393e;
  color: #fff;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 16px;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.talk-to-ai-actions .btn-request-demo:hover {
  background-color: #26292c;
}

.highlight-pink {
  color: #df619e;
  font-weight: 600;

}

#why-choose-section .header-content p,
#testimonials-section .header-content p,
#products-section .header-content p,
#features-section .header-content p,
#consulting-section .header-content p {
  color: #4a4e61;
}

.hero-buttons .btn-primary:hover {
  background-color: #5380F1;
}

.hero-buttons .btn-secondary:hover {
  background-color: #d3d3d3;
}

.gpt-image {
  margin-top: 14%;
}

.choose-card:last-child::before,
.choose-card:last-child::after,
.logo-card:last-child::before,
.logo-card:last-child::after {
  content: "";
  position: absolute;
  right: -6px;
  width: 8px;
  height: 8px;
  background: #2f80ff;

}

.choose-card:last-child::before,
.logo-card:last-child::before {
  top: -6px;
}

.choose-card:last-child::after,
.logo-card:last-child::after {
  bottom: -6px;
}

.logo-card {
  text-align: center;
  padding: 2.2rem 3rem;
  border-right: 1px solid #ececec;
  position: relative;
}

#features-section {
  padding: 6.1rem 0 4rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: videoFade 18s infinite;
}

/* Timing control */
.video1 {
  animation-delay: 0s;
}

.video2 {
  animation-delay: 6s;
}

.video3 {
  animation-delay: 12s;
}

#what-we-do {
  max-height: 587px;
  background: url(./Asset/Image/What-We-Do-BG.png) center / cover no-repeat;
}

.what-do-title {
  gap: 1rem;
  display: flex;
}

#why-stradegi {
  max-height: 587px;
  background: url(./Asset/Image/Award-bg-image-1.png) center / cover no-repeat;
}

#what-ai-service-section {
  background-color: #FAFBFF;
  color: #4a4e61;
  padding: 0;
}

#what-ai-service-section .ai-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #FAFBFF;
  border-top: 1px solid #e5e5e5;
}

#what-ai-service-section .service-item {
  padding: 28px 32px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: #FAFBFF;
}

#ai-services-section .header-content p {
  color: #acadb3;
}

#what-ai-service-section .container {
  border-inline: 1px solid #e5e5e5;
  padding: 0;
  padding-top: 4rem;
  background-color: #FAFBFF;

}

#what-ai-service-section .ai-title-content p {
  color: #6C7381;
}

#what-ai-service-section .stat-value {
  color: #22242B;
}

#what-ai-service-section .badge,
#what-ai-service-section .header-content {
  padding-left: 4rem;
}

#what-ai-service-section .header-content {
  margin-bottom: 3rem;
  margin-top: 2rem;
}

#what-ai-service-section .service-item h3 {
  color: #22242B;
}

#what-ai-service-section .header-content p {
  color: #6C7381;
}

#what-ai-service-section .stat-card p {
  color: #6C7381 !important;
}

#what-ai-service-section .service-item p {
  color: #6C7381;
}

#what-ai-service-section .service-item:nth-child(3n) {
  border-right: none;
}

#why-stradegi .badge {
  color: #fff;
}

.wrapper-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bold-content {
  font-family: 'Inter Semibold';
  color: #22242B;
}

#certification-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

#certification-section .header-content {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 5rem;
}

#certification-section .header-content p {
  color: #6C7381;
}

#certification-section .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  width: 89%;
  margin: auto;
  height: auto;
}

#certification-section .badge {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

#certification-section .logo-card.intertek img {
  height: 14rem;
  width: 21rem;
}

#certification-section .logo-card img {
  max-height: 14rem;
}

#certification-section .logo-card {
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  max-height: 21rem;
}

.profile-card,
.ayera-profile-card {
  max-width: 471px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ayera-profile-card {
  position: absolute;
}

/* .management-profile {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 0;
} */

/* Background image */
.management-bg {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Card base */
.profile-card {
  position: absolute;
  width: 360px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.linkedin-icon {
  width: 20px;
}

.card-left {
  top: 19%;
  left: -38%;
}

#certification-section .header-content {
  margin-top: 0;
}

#certification-section {
  margin-top: 8rem;
}

#certification-section,
#management-section {
  padding: 30px 0;
}

#management-section .section-header {
  max-width: 92%;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 4rem;
}

.card-bottom {
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
}

.card-right {
  top: 45%;
  right: -38%;
}

#why-choose-section .choose-grid {
  gap: 0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.role {
  margin: 6px 0 12px;
  font-size: 15px;
  color: #555;
}

.description {
  font-size: 17px;
  line-height: 1.5;
  color: #5f6b7a;
}

.description strong {
  color: #111;
}

.card-icon {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}


@keyframes videoFade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.view-more-btn {
  font-size: 18px;
}

@media (max-width: 992px) {
  .ai-services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .service-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .ai-services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .header-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {

  .choose-card:first-child::before,
  .choose-card:first-child::after {
    display: none;
  }

  .choose-card:last-child::before,
  .choose-card:last-child::after {
    display: none;
  }

  .logo-card:first-child::before,
  .logo-card:first-child::after {
    display: none;
  }

  .logo-card:last-child::before,
  .logo-card:last-child::after {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .ai-icon-wrapper img {
    width: 24px;
  }
}

@media screen and (min-width: 1600px) and (max-width: 1920px) {
  .site-header {
    height: 12%;
  }
}

@media screen and (min-width: 1600px) {
  #what-we-do {
    height: 700px;
    max-height: 700px;
  }

  #why-stradegi {
    height: 700px;
    max-height: 700px;
  }

  .card-left {
    top: 19%;
    left: -29%;
  }

  .card-right {
    top: 37%;
    right: -31%;
  }
}