@import url("font.css");

:root {
  --color-black: #030712;
  --color-white: #fff;
  --color-white-full: #ffffff;
  --color-grey-light: #b6bcc6;
  --color-grey: #e5e7eb;
  --color-grey-dark: #374151;
  --color-grey-border: #d5d5d5;
  --color-text-secondary: #353941;
  --color-text-dark: #212129;
  --color-text-muted: #666666;
  --color-grey-medium: #8b8d92;
  --color-bg-light: #f8f8f9;
  --color-bg-dark: #111013;
  --color-text-grey: #222;
  --color-text-light: #999;
  --color-border-light: #f0f0f0;
  --color-bg-grey: #333;
  --color-grey-alt: #b6bcc6;
  --color-grey-muted: #929292;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-cursor-hover: rgba(3, 7, 18, 0.08);
  --color-gradient-dark: rgba(3, 7, 18, 0.45);
  --color-gradient-light: rgba(255, 254, 251, 1);
  --color-gradient-transparent: rgba(255, 254, 251, 0);
  --color-gray-darkest: #1f2937;
  --color-gray-border-dark: #1e1e21;
  --color-gray-border-light: #dddddd;
  --color-bg-lightest: #f3f4f6;
  --color-orange: #fd802e;
  --color-gradient: linear-gradient(90deg, #fd802e 0%, #1e2959 157.8%);
  --color-bg-darkest: rgba(30, 30, 33, 1);
  --font-urbanist: "Urbanist", sans-serif;
  --font-urbanist-system: "Urbanist", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-dmsans: "DM Sans", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Cursor Effects */
body {
  /* cursor: none;  */
  font-family: var(--font-urbanist-system);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white-full);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Fallback: Show default cursor if custom cursor fails */
body.cursor-fallback {
  cursor: auto;
}

/* Custom cursor dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.05s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
  will-change: transform;
}

/* Custom cursor ring */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.1s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
  will-change: transform;
}

/* Cursor dot pulse animation */
@keyframes cursorPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.cursor-dot.pulse {
  animation: cursorPulse 0.6s ease;
}

/* Button hover effects */
.cta-button:hover ~ .cursor-ring,
.explore-button:hover ~ .cursor-ring,
.read-more-button:hover ~ .cursor-ring {
  transform: scale(2.8);
  border-color: var(--color-orange);
  /* background-color: transparent; */
  border-width: 1px;
}

/* Navigation hover effects */
.nav-link:hover ~ .cursor-ring,
.solution-tab:hover ~ .cursor-ring {
  transform: scale(2.8);
  border-color: var(--color-orange);
  /* background-color: transparent; */
}

/* Text hover effects */
h1:hover ~ .cursor-ring,
h2:hover ~ .cursor-ring,
h3:hover ~ .cursor-ring {
  transform: scale(1.3);
  border-color: var(--color-orange);
  /* background-color: transparent; */
}

/* Link hover effects */
a:hover ~ .cursor-ring {
  transform: scale(1.6);
  border-color: var(--color-orange);
  /* background-color: var(--color-cursor-hover); */
}

/* Magnetic effect for buttons */
.cta-button,
.explore-button,
.read-more-button {
  transition: transform 0.3s ease;
}

/* Hide cursor on mobile devices */

/* Navigation Section */
.navigation-section {
  background: var(--color-white);
  padding: 20px 144px;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-container {
  position: relative;
  width: 165px;
  height: 48px;
}

.logo {
  position: absolute;
  width: 149px;
  height: 48px;
  top: 0;
  left: 23px;
}

.navigation-menu {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 16px;
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-black);
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover .navVector {
  transform: rotate(45deg);
}

.home-link {
  color: var(--color-orange);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 8px;
  padding: 16px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px var(--color-shadow);
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 0;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.dropdown-item:hover {
  color: var(--color-black);
}

.max-w {
  max-width: 1550px;
  margin: 0 auto;
}

/* Header Section */
.header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 96px 16px;
  position: relative;
  width: 100%;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1152px;
  width: 100%;
}

.header-title {
  text-align: center;
  font-size: 72px;
  line-height: 96px;
  font-weight: 500;
  font-family: var(--font-urbanist);
}

.title-main {
  color: var(--color-black);
}

.title-accent {
  color: var(--color-orange);
}

.header-description {
  max-width: 760px;
  font-family: var(--font-urbanist);
  color: var(--color-black);
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}

.cta-button {
  /* border-radius: 100px; */
  padding: 24px 56px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 19px;
  font-weight: 500;
  font-family: var(--font-urbanist);
  border-radius: 100px;
  background: var(--color-gradient) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  /* gradient border */
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

/* .cta-button:hover {
    background: #fff;
    color: #030712;
    transform: translateY(-2px);
}

.cta-button:hover img {
    filter: invert(1);
} */

.arrow-icon {
  width: 24px;
  height: 24px;
}

/* Services Section */
.services-section {
  padding: 96px 0;
  width: 100%;
}

.pb-50 {
  padding-bottom: 20px;
}

.pt-0 {
  padding-top: 0;
}

.services-container {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
}

.services-left {
  position: relative;
  width: 635px;
  height: 552px;
}

.services-image-container {
  position: relative;
  height: 552px;
}

.decorative-circles {
  position: relative;
  width: 665px;
  height: 535px;
  top: 0;
  left: -10px;
}

.circle {
  position: absolute;
  border: 1px solid var(--color-grey-border);
}

.circle-1 {
  width: 273px;
  height: 600px;
  top: -33px;
  left: 196px;
  border-radius: 136.72px / 299.93px;
  transform: rotate(60.29deg);
}

.circle-2 {
  width: 270px;
  height: 607px;
  top: -36px;
  left: 197px;
  border-radius: 135.24px / 303.54px;
  transform: rotate(66.46deg);
}

.star {
  position: absolute;
  width: 31px;
  height: 31px;
}

.star-1 {
  top: 393px;
  left: 43px;
}

.star-2 {
  top: 110px;
  right: 37px;
}

.main-image {
  position: absolute;
  width: 408px;
  height: 552px;
  top: 0;
  left: 114px;
  border-radius: 20px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.team-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--color-gradient-transparent) 0%,
    var(--color-gradient-dark) 100%
  );
}

.services-right {
  width: 564px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
}

.section-indicator {
  width: 20px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 99px;
}

.color-orange {
  color: var(--color-orange) !important;
}

.section-title {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-black);
  font-size: 20px;
  line-height: 24px;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.services-heading {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-black);
  font-size: 38px;
  line-height: 48px;
}

.services-description {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 24px;
}

.specializations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.specializations-title {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-black);
  font-size: 20px;
  line-height: 24px;
}

.specializations-list {
  position: relative;
  width: 100%;
  height: 64px;
}

.specialization-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
}

.specialization-item:nth-child(1) {
  top: 0;
  left: 0;
}

.specialization-item:nth-child(2) {
  top: 0;
  left: 262px;
}

.specialization-item:nth-child(3) {
  top: 50px;
  left: 0;
}

.specialization-item:nth-child(4) {
  top: 50px;
  left: 262px;
}

.spec-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.spec-text {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 16px;
  text-align: center;
  line-height: 19.2px;
  white-space: nowrap;
}

.read-more-button {
  position: relative;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  /* gradient border */
  border: 1px solid transparent;
  font-family: var(--font-urbanist, sans-serif);
  font-weight: 500;
  font-size: 19px;
  color: #1e1e1e;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* .read-more-button:hover {
    background: #030712;
    color: var(--color-white);
    transform: translateY(-2px);
}

.read-more-button:hover img {
    filter: invert(1);
} */

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  padding: 56px 0;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  height: 208px;
  overflow: hidden;
}

/* .marquee-text {
  display: flex;
  align-items: start;
  gap: 16px;
  animation: marquee 5s linear infinite;
} */

.marquee-item {
  font-family: var(--font-urbanist);
  font-weight: 900;
  font-style: italic;
  color: var(--color-black);
  font-size: 88px;
  line-height: 104px;
  white-space: nowrap;
}

/* @keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */

.marquee-swiper {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marquee-swiper .swiper-slide {
  width: auto !important;
  white-space: nowrap;
  background: transparent;
}

.gradient-fade {
  position: absolute;
  width: 84px;
  height: 243px;
  top: 0;
  z-index: 1;
}

.gradient-left {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--color-gradient-light) 0%,
    var(--color-gradient-transparent) 100%
  );
}

.gradient-right {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--color-gradient-light) 0%,
    var(--color-gradient-transparent) 100%
  );
}

/* Logo Section */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 96px 0;
  position: relative;
  width: 100%;
  background: var(--color-bg-light);
}

.logo-container-main {
  display: flex;
  flex-direction: column;
  width: 1152px;
  align-items: start;
  gap: 8px;
  position: relative;
}

.section-header-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  position: relative;
  width: 100%;
}

.section-indicator-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border-radius: 99px;
}

.section-indicator-main before {
  content: "";
  position: relative;
  width: 20px;
  height: 6px;
  background: var(--color-grey-light);
  border-radius: 99px;
}

.section-title-main {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-black);
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}

.section-heading-main {
  position: relative;
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: var(--color-text-dark);
  font-size: 38px;
  line-height: 47.5px;
}

.section-description-main {
  display: flex;
  flex-direction: column;
  width: 898px;
  height: 48px;
  align-items: start;
  gap: 4px;
  position: relative;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 56px;
}

.solutions-content {
  display: flex;
  align-items: start;
  gap: 16px;
  position: relative;
  width: 100%;
}

.solution-tabs {
  display: flex;
  flex-direction: column;
  width: 368px;
  align-items: start;
  gap: 33px;
  position: relative;
}

.solution-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  width: 100%;
  font-size: 19px;
  border-radius: 100px;
  background: linear-gradient(#fff, #fff) padding-box,
    var(--color-gradient) border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.solution-tab.active {
  background: var(--color-gradient);
  color: var(--color-white);
  /* box-shadow: 0px 3px 7px var(--color-shadow), 0px 13px 13px var(--color-shadow),
    0px 29px 17px var(--color-shadow), 0px 52px 21px var(--color-shadow),
    0px 81px 23px transparent; */
}

.solution-tab.active img {
  filter: invert(1) !important;
}

.solution-tab span {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  white-space: nowrap;
}

.chevron-icon {
  width: 24px;
  height: 24px;
}

.separator-vertical {
  width: 1px;
  height: -webkit-fill-available;
  background: var(--color-grey);
}

.solution-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  position: relative;
  flex: 1;
}

.solution-card {
  width: 100%;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  transition: all 0.2s ease;
}

.solution-card.expanded {
  box-shadow: 0px 5px 11px var(--color-shadow),
    0px 20px 20px var(--color-shadow), 0px 45px 27px var(--color-shadow),
    0px 79px 32px var(--color-shadow), 0px 124px 35px transparent;
}

.solution-content {
  padding: 24px;
}

.solution-card:not(.expanded) .solution-content {
  padding: 16px 24px;
}

.solution-content {
  display: flex;
  align-items: start;
  gap: 16px;
  position: relative;
  width: 100%;
}

.solution-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  position: relative;
  flex: 1;
}

.solution-title {
  position: relative;
  margin-top: -1px;
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 28px;
  line-height: 32px;
}

.solution-description {
  display: flex;
  align-items: start;
  position: relative;
  width: 100%;
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 24px;
}

.explore-button {
  margin-top: 16px;
  gap: 4px;
  padding: 12px 20px;
  border-radius: 100px;
  background: linear-gradient(#fff, #fff) padding-box,
    var(--color-gradient) border-box;
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.explore-button span {
  font-size: 18px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-black);
  line-height: 24px;
  white-space: nowrap;
}

/* .explore-button:hover {
    background: #030712;
    color: var(--color-white);
}

.explore-button:hover span {
    color: var(--color-white);
}

.explore-button:hover img {
    filter: invert(1);
} */

.solution-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}

.solution-icon img {
  position: relative;
  width: 20px;
  height: 20px;
}

/* Our Approach Section */
.approach-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 10px;
  width: 100%;
  background: var(--color-white);
}

.approach-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1272px;
  align-items: start;
  gap: 80px;
}

.approach-title {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-black);
  font-size: 48px;
  line-height: 57.6px;
}

.approach-steps {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px;
}

.approach-step {
  flex: 1;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: start;
  padding: 0;
}

.step-number {
  display: flex;
  width: 104px;
  align-items: start;
  transform: rotate(180deg);
  font-family: var(--font-urbanist);
  font-weight: 400;
  /* color: transparent; */
  font-size: 64px;
  line-height: 89.6px;
  white-space: nowrap;
  /* -webkit-text-stroke: 1px #030712; */
  /* transform: rotate(270deg); */
  margin-right: 1rem;
  color: var(--color-orange);
  writing-mode: vertical-lr;
  /* -webkit-transform: rotate(180deg); */
  -webkit-text-stroke: 1px;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  padding-right: 20px;
}

.step-title {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-black);
  font-size: 32px;
  line-height: 38.4px;
}

.step-description {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 19.2px;
  line-height: 28.8px;
}

/* About Us Section */
.about-section {
  padding: 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 700px;
  margin: 48px auto;
  background: var(--color-white);
  border-radius: 24px;
  padding: 48px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.testimonial-quote p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 24px 0;
  color: var(--color-text-grey);
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 4px;
}

.testimonial-position {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

.testimonial-pagination {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--color-text-grey);
}

.avatar {
  background: var(--color-grey-light);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 0;
}

.testimonial-info {
  /* margin-top: 64px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-name {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-orange);
  font-size: 24px;
  text-align: center;
  line-height: 28.8px;
}

.testimonial-position {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-grey-medium);
  font-size: 18px;
  text-align: center;
  line-height: 27px;
}

.testimonial-quote {
  width: 100%;
}

.testimonial-quote p {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-black);
  font-size: 24px;
  text-align: center;
  line-height: 36px;
}

.testimonial-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 4px;
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 19.2px;
  text-align: center;
  line-height: 28.8px;
}

.current-slide {
  color: var(--color-black);
}

.slide-separator,
.total-slides {
  color: var(--color-text-secondary);
}

.collab-btn {
  width: 219px;
  height: 64px;
  padding: 24px 35px;
}

.cta-experts-section {
  background: #f7f7f7;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.cta-title {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}

.cta-sub-title {
  font-size: 64px;
  font-weight: 600;
  color: #111;
  letter-spacing: -2px;
}

.cta-divider {
  display: inline-block;
  width: 192px;
  height: 2px;
  background: #e5e5e5;
  /* margin-left: 24px; */
  vertical-align: middle;
  align-self: center;
}

.cta-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-sub-container {
  display: flex;
  gap: 45px;
  margin-top: 50px;
}

/* .cta-experts-section a {
  margin-top: 60px;
} */
/* Footer Section */
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 40px 0;
  width: 100%;
  background: #000000;
  align-items: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1152px;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.footer-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-radius: 0px 16px 0px 16px;
}

.footer-logo {
  width: 118px;
  height: 48px;
}

.footer-tagline {
  color: var(--color-white);
  font-size: 30px;
  line-height: 31.8px;
  font-family: var(--font-urbanist);
  font-weight: 400;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.office-locations {
  display: flex;
  flex-direction: column;
  width: 612px;
  align-items: start;
  gap: 24px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.office-location {
  display: flex;
  flex-direction: column;
  height: 98px;
  justify-content: space-between;
  opacity: 0.8;
}

.office-country {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-white);
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.office-address {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-muted);
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 20px;
}

.quick-links {
  display: inline-flex;
  align-items: start;
}

.quick-links-title {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-white);
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}

.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  list-style: none;
}

.quick-link {
  font-family: var(--font-dmsans);
  font-weight: 400;
  color: var(--color-grey-muted);
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.quick-link:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--color-orange);
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-swiper-container {
  width: 250px;
}
.blog-swiper-container h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 600;
}
.blog-swiper-wrapper {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border-radius: 10px;
}

.blog-swiper-wrapper a {
  flex: 0 0 100%;
  color: var(--color-grey-muted);
  font-size: 15px;
  text-decoration: none;
}

.blog-swiper-wrapper img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}
.blog-swiper-title {
  color: inherit;
}
.blog-swiper-logo {
  display: flex;
}
.dots {
  text-align: center;
  margin-top: 5px;
}

.dots span {
  height: 8px;
  width: 8px;
  margin: 2px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
}

.dots span.active {
  opacity: 1;
  background-color: var(--color-white);
}
.swiper-wrapper.active {
  cursor: grabbing;
  user-select: none;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-email {
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: var(--color-grey-muted);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  width: 40px;
  height: 40px;
}

.contact-phone span {
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: var(--color-grey-muted);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.footer-right {
  display: flex;
  align-items: center;
}

.copyright {
  font-family: var(--font-urbanist);
  font-weight: 700;
  color: var(--color-grey-muted);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

/* --- PARTNERS --- */
.partners {
  background: var(--color-grey-alt);
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.partners-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 48px; */
}

.partners img {
  width: 60%;
  height: auto;
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
  border-radius: 8px;
}

.partners img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* --- PARTNERS SWIPER SLIDER --- */
.partners-swiper {
  width: 100%;
  padding: 12px 0;
}

.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 60px; */
}

.partners-swiper img {
  /* max-height: 36px;
  max-width: 120px; */
  filter: grayscale(1);
  opacity: 0.7;
  border-radius: 8px;
  transition: filter 0.2s, opacity 0.2s;
}

.partners-swiper img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.content-round {
  background-color: var(--color-bg-light);
}

.content-round.odd {
  background-color: var(--color-bg-dark);
}

.rounded-div-wrapper {
  z-index: 1;
  height: 100px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transform: translate(0, -1px);
}

.rounded-div {
  border-radius: 50%;
  width: 150%;
  height: 750%;
  position: absolute;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -86.6%);
}

.rounded-div-background {
  background-color: var(--color-white);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.next-work .rounded-div-wrapper {
  z-index: 3;
}

.dRight {
  display: none;
}

/* Responsive Design */

/* Magnetic Button Styles */
.magnetic-btn,
.explore-button {
  position: relative;
  overflow: hidden;
  /* color: #000;
    background: #fff; */
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.magnetic-btn .fill,
.explore-button .fill {
  position: absolute;
  /* background: #000; */
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: background 0.2s;
}

.cta-button .fill {
  background-color: var(--color-white) !important;
}

.read-more-button .fill {
  background: var(--color-gradient) !important;
}

.solution-tab .fill {
  background: var(--color-gradient) !important;
}

.explore-button .fill {
  background: var(--color-gradient) !important;
}

.magnetic-btn .label,
.explore-button .label {
  position: relative;
  z-index: 1;
  color: var(--color-black);
  transition: color 0.2s;
  filter: invert(0);
}

.magnetic-btn .imageArrows,
.explore-button .imageArrows {
  position: relative;
  z-index: 1;
  filter: invert(0);
}

/* .magnetic-btn .inner-image,
.explore-button .inner-image {
  position: relative;
  z-index: 1;
  filter: invert(1);
} */

.cta-button .label {
  color: var(--color-white) !important;
}

.solution-tab.active .label {
  filter: invert(1) !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.preloader svg {
  position: absolute;
  top: 0;
  height: 110vh;
  width: 100vw;
  fill: #080f2b;
}

.preloader .loader-container .loaded {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 99;
}

.preloader .loader-container .loaded span {
  animation: loader-animation 1s infinite alternate;
}

.preloader .loader-container .loaded span:nth-child(1) {
  animation-delay: 0s;
}

.preloader .loader-container .loaded span:nth-child(2) {
  animation-delay: 0.1s;
}

.preloader .loader-container .loaded span:nth-child(3) {
  animation-delay: 0.2s;
}

.preloader .loader-container .loaded span:nth-child(4) {
  animation-delay: 0.3s;
}

.preloader .loader-container .loaded span:nth-child(5) {
  animation-delay: 0.4s;
}

.preloader .loader-container .loaded span:nth-child(6) {
  animation-delay: 0.5s;
}

.preloader .loader-container .loaded span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes loader-animation {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .hero-bg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  inset: 0%;
  z-index: -1;
}

.hero-section .hero-bg .circle-1,
.hero-section .hero-bg .circle-2 {
  position: absolute;
  height: 100vmax;
  width: 100vmax;
  object-fit: cover;
}

.hero-section .hero-bg .circle-1 {
  -webkit-animation: zoom 20s infinite linear;
  animation: zoom 20s infinite linear;
}

.hero-section .hero-bg .circle-2 {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

@keyframes zoom {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
    transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
    transform: translate3d(0px, 0px, 0px) rotateZ(-360deg);
  }
}

/* People counting Page */

/* Main Content Section */
.main-content-section {
  padding: 55px 150px;
  background: #fff;
}

.main-title {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 6rem;
  line-height: 1.2;
  color: var(--color-orange);
  margin: 0;
}

.title-wrapper {
  display: flex;
  align-items: center;
}

.title-wrapper img {
  height: 90px;
  border-radius: 50px;
  margin-left: 20px;
}

.title-separator {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: -8px;
}

.separator-line {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  border: none;
  margin: 0;
}

.main-title-second {
  font-family: var(--font-urbanist);
  font-weight: 500;
  font-size: 6rem;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
  width: 550px;
}

.description-wrapper {
  margin-top: 40px;
  margin-left: auto;
  max-width: 780px;
}

.main-description {
  font-family: var(--font-urbanist);
  font-size: 22.4px;
  line-height: 1.6;
  color: #353941;
  margin: 0;
}

/* Introduction section */
.n-circle-1 {
  top: -75px;
  left: 195px;
}

.n-circle-2 {
  top: -78px;
  left: 195px;
}

.n-star-1 {
  top: 351px;
  left: 43px;
}

.n-star-2 {
  top: 68px;
  right: 37px;
}

/* Key Benefits Section */
.key-benefits {
  padding: 96px 72px;
  background: #f8f8f9;
}

.benefits-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.benefits-title {
  width: 20.25rem;
  padding-top: 3.125rem;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.benefits-title h2 {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 3rem;
  line-height: 1.2;
}

.benefits-grid {
  width: 54rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.benefit-item {
  padding-top: 1.5rem;
}

.benefit-number {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-orange);
  font-size: 1.20625rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.benefit-title {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-grey-dark);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.benefit-description {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1.1875rem;
  line-height: 1.6;
}

/* Operation Section */
.system-overview {
  padding: 3.5rem 0;
  background: var(--color-white);
}

.overview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.operation-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 99px;
}

.label-separator {
  width: 1.25rem;
  height: 0.375rem;
  background: var(--color-orange);
  border-radius: 99px;
}

.operation-label span {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-gray-darkest);
  font-size: 1.25rem;
  line-height: 1.5;
}

.overview-title {
  /* max-width: 38.375rem; */
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
  padding: 0px 150px;
}

.overview-item {
  position: relative;
  display: flex;
  justify-content: center;
}

/* .overview-icon {
  position: absolute;
  width: 5.25rem;
  height: 6.25rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
} */

.circle-container {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: var(--color-gradient);
  box-shadow: 0 -12px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin: 0 auto;
  z-index: 10;
  top: 10px;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: invert(1);
}

.overview-card {
  margin-top: 3.125rem;
  background: #f8f8f9;
  border-radius: 1.25rem;
  padding: 4.5625rem 1.5rem 1.5rem;
  text-align: center;
  height: 273px;
  width: 364px;
}

.overview-card h3 {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.overview-card p {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1rem;
  line-height: 1.5;
}

/* Applications Section */
.applications {
  padding: 6rem 9.375rem;
  background: var(--color-white);
}

.applications-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 5.5rem;
}

.applications-header h2 {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}

.applications-header p {
  width: 49.625rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1.1875rem;
  line-height: 1.6;
  text-align: center;
}

.applications-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.application-item {
  display: flex;
  width: 71.25rem;
  height: 25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.5rem 3.125rem;
  border-radius: 1.875rem;
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
}

.application-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.application-content h3 {
  width: 30.625rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-gray-darkest);
  font-size: 2rem;
  line-height: 1.2;
}

.application-content p {
  width: 30.625rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1.1875rem;
  line-height: 1.6;
}

.application-image {
  width: 25.625rem;
  height: 20.65rem;
  display: flex;
  /* align-items: center;
  justify-content: center; */
}

.application-image img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: var(--color-bg-darkest);
  border-radius: 1.25rem;
}

/* Product Features Detail Section */
.product-features-detail {
  padding: 96px 72px;
  background: #f8f8f9;
}

.features-detail-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.features-detail-title {
  width: 20.25rem;
  /* padding-top: 1.5rem; */
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.features-detail-title h2 {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 3rem;
  line-height: 1.2;
}

.features-detail-grid {
  width: 54rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-detail-item {
  margin-bottom: 2rem;
}

.feature-border {
  border-left: 1px solid var(--color-orange);
  padding-left: 0.75rem;
}

.feature-content {
  padding: 0 1.5rem;
}

.feature-number {
  font-family: var(--font-urbanist);
  font-weight: 600;
  color: var(--color-orange);
  font-size: 1.20625rem;
  line-height: 1.35;
  display: block;
  margin-bottom: 0.1125rem;
}

.feature-title {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.feature-description {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 8rem 0;
  background: var(--color-white);
}

.faq-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.faq-header h2 {
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}

.faq-list {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.faq-item {
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: #f8f8f9;
  border: none;
  border-radius: 0.625rem;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-urbanist);
  font-weight: 500;
  color: var(--color-gray-darkest);
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #f8f8f9;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s ease;
  color: var(--color-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--color-white);
}

.faq-answer.active {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

.faq-answer p {
  font-family: var(--font-urbanist);
  font-weight: 400;
  color: var(--color-grey-dark);
  font-size: 1.2rem;
  line-height: 1.5;
}

/* .faq-item.active .faq-icon {
  transform: rotate(45deg);
} */

/* Solution Menu Styles */
/* Aiero-style Solution Menu Dropdown */
.solution-menu {
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(30, 30, 33, 0.18);
  padding: 0.5rem;
  width: 310px;
  list-style: none;
  margin: 0;
  position: relative;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  color: var(--color-black);
  font-size: 1.2rem;
  font-family: var(--font-urbanist);
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.solution-item .solution-icon img {
  filter: grayscale(1) brightness(1.5);
  transition: filter 0.2s;
}

/* Hide left icon by default, show on hover/active */
.solution-item .solution-icon {
  display: none !important;
  width: 24px;
  height: 24px;
  transition: display 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.solution-item:hover .solution-icon,
.solution-item.active .solution-icon {
  display: block !important;
}

.solution-item {
  color: var(--color-bg-dark);
  transition: color 0.2s, background 0.2s;
}

.solution-item:hover,
.solution-item.active {
  color: var(--color-white);
  background: var(--color-gradient);
}

.solution-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  transition: background-image 0.2s;
  margin-left: auto;
}

/* Hide the hover arrow by default */
.solution-arrow.hover-arrow {
  display: none;
}

/* On hover or active, show the hover arrow and hide the default arrow */
.solution-item:hover .solution-arrow.default-arrow,
.solution-item.active .solution-arrow.default-arrow {
  display: none;
}

.solution-item:hover .solution-arrow.hover-arrow,
.solution-item.active .solution-arrow.hover-arrow {
  display: inline;
}

.solution-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(30, 30, 33, 0.18);
  min-width: 250px;
  padding: 0.5rem;
  z-index: 200;
  list-style: none;
}

.solution-item:hover > .solution-submenu,
.solution-item.active > .solution-submenu {
  display: block;
}

.solution-subitem {
  color: var(--color-black);
  padding: 0.7rem 1.2rem;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  list-style: none;
  font-size: 1.1rem;
  font-family: var(--font-urbanist);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: block;
  list-style: none;
}

.solution-subitem:hover {
  background: var(--color-gradient);
  color: var(--color-white);
}

/* Dropdown positioning for solution menu */
.solution-dropdown {
  position: relative;
}

.solution-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 350px;
}

.solution-dropdown:hover .solution-dropdown-content,
.solution-dropdown.open .solution-dropdown-content {
  display: block;
}

.solution-dropdown:hover .navVector,
.solution-dropdown.open .navVector {
  transform: rotate(45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Milestone Section */
.milestone-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.timeline-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.header-content {
  max-width: 400px;
}

.subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 0;
  width: 480px;
}

.description {
  max-width: 480px;
}

.description p {
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  line-height: 1.7;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.timeline-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.timeline-item.left {
  justify-content: flex-start;
  gap: 60px;
}

.timeline-item.right {
  justify-content: flex-end;
  gap: 60px;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 32px 40px;
  border-radius: 16px;
  border: 1px solid var(--color-gray-border-dark);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 750px;
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
  position: relative;
}

.timeline-item.right .timeline-content {
  flex-direction: row-reverse;
}

.year-circle {
  background: var(--color-gradient);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.milestone-text {
  flex: 1;
}

.milestone-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.milestone-text ul {
  list-style: none;
  padding: 0;
}

.milestone-text li {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.milestone-text li:before {
  content: "•";
  color: var(--color-text-secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.milestone-text li:last-child {
  margin-bottom: 0;
}

.connector {
  position: absolute;
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    #cbd5e1 0px,
    #cbd5e1 8px,
    transparent 8px,
    transparent 16px
  );
  left: 50%;
  transform: translateX(-50%);
}

.connector.down {
  bottom: -60px;
}

.connector.up {
  top: -60px;
}

.timeline-item:first-child .connector.up,
.timeline-item:last-child .connector.down {
  display: none;
}

/* manufacturing page  */
.main-description-wrapper {
  width: 790px;
}

.card {
  background-color: var(--color-white-full);
  border-radius: 32px;
  max-width: 500px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
}

.card-image img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: block;
}

.card-title {
  font-size: 32px;
  font-weight: 500;
  margin: 16px 0 8px;
}

.card-text {
  font-size: 19px;
  font-weight: 400;
  color: #555;
  line-height: 28px;
}

.bg-none {
  background-color: transparent;
}

.offering-content {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.card-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
}

.sub-card {
  border: 2px solid #dadce0;
  border-radius: 32px;
}

/* Current Opening Section */

.career-container {
  max-width: 1440px;
  margin: auto;
  /* background-color: #fff; */
  padding: 96px 84px;
}

.opening-section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
}

.job-role {
  margin-bottom: 60px;
}

.role-category {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-orange);
}

.role-description {
  position: relative;
}

/* .job-details {
  display: flex;
} */
.job-details a {
  margin-top: 30px;
}

.career-feature-border {
  height: 170px;
}

/* .career-role-indicator {
  margin-top: 13px;
}
.role-indicator {
  display: flex;
  gap: 10px;
} */
.job-details {
  display: flex;
  justify-content: space-between;
}

.career-role-indicator {
  display: none;
}

.job-title-career {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.job-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.location {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}

.footer-note {
  font-size: 14px;
  color: #555;
  margin-top: 30px;
  display: inline-block;
  background-color: #30342e0d;
  border-radius: 20px;
}

.footer-note a {
  text-decoration: none;
  color: #b6bcc6;

  padding: 3px 6px;
  border-radius: 6px;
  font-size: 14px;
}

/* Job Opening details page */
.main-container {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  gap: 160px;
  justify-content: center;
}

.left-section {
  width: 30%;
  padding: 40px;
}

.right-section {
  width: 70%;
  padding: 40px;
}

.job {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  background-color: #ddd;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 15px;
  margin-bottom: 10px;
}

.cta-label {
  margin-top: 48px;
  margin-bottom: 10px;
  font-weight: 600;
}

.apply-btn {
  margin: 10px 0 30px 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  border: 1.5px solid #000;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background-color: #000;
  color: #fff;
}

.share-section {
  margin-top: 48px;
}

.share-section p {
  font-weight: 600;
  margin-bottom: 5px;
}

.share-section a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}

.share-section a:hover {
  text-decoration: underline;
}

.intro {
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 18px;
  color: #353941;
  font-weight: 500;
}

.jobDetailSection h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--color-orange);
}

.jobDetailSection ul {
  margin-bottom: 40px;
}

.jobDetailSection ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 18px;
  color: #353941;
  font-weight: 500;
}

.quote {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.quote span {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.note {
  font-size: 14px;
  color: #666;
}

.job-openings-section {
  background-color: #f8f8f9;
  padding: 60px 40px;
  text-align: center;
}

.job-openings-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #1c1c1c;
}

.job-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
}

.job-info {
  text-align: left;
}

.job-title {
  font-weight: 700;
  font-size: 20px;
  color: #1c1c1c;
  text-decoration: underline;
}

.job-location {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.apply-small {
  background-color: #e5e5e5;
  color: #333;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.apply-small:hover {
  background-color: #ccc;
}

/* Form modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  height: 90%;
  overflow-y: scroll;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--color-gradient);
  color: #fff;
  font-size: 35px;
  font-weight: 200;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: background 0.3s ease;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="file"],
.form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  outline: none;
}

textarea {
  resize: none;
  height: 80px;
}

.upload-label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}

.browse-btn {
  padding: 10px 20px;
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  transition: 0.3s ease;
}

.browse-btn:hover {
  background: var(--color-gradient);
  color: #fff;
}

.submit-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  background: var(--color-gradient);
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  color: #000;
}

.form-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease;
}

.form-alert.success {
  background-color: #28a745;
  /* Green */
}

.form-alert.error {
  background-color: #dc3545;
  /* Red */
}

.form-alert.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.input-error {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}

input.error,
textarea.error {
  border-color: red;
  outline-color: red;
}

/* Privacy policy  */
.privacy-policy {
  margin: auto;
  padding: 32px 0;
  border-radius: 8px;
  max-width: 1152px;
}

.policy-info {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  margin-bottom: 24px;
}

.policy-sub-info {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  margin-bottom: 28px;
  padding-left: 27px;
}

.privacy-policy h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.privacy-policy h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 28px;
}

.privacy-policy h3 {
  font-size: 24px;
  font-weight: 800;
}
/* main blog page */
.blog-container {
  max-width: 1152px;
  margin: 0 auto;
}

/* Hero Section */
.blog-hero {
  padding: 96px 0 24px;
  text-align: center;
}

.blog-hero-title,
.featured-section-title,
.featured-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  color: #000;
  margin-bottom: 24px;
}

.blog-hero-title {
  font-size: 50px;
  margin-bottom: 16px;
}

.blog-hero-description,
.featured-description,
.article-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.32px;
  color: #000;
  margin-bottom: 16px;
  opacity: 0.75;
}

.blog-hero-description {
  max-width: 600px;
  margin: 0 auto;
  opacity: 1;
}

/* Articles Section */
.articles {
  padding: 0 0 95px;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.filter-btn {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: white;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: #23332d;
  color: white;
  border-color: #23332d;
}

.filter-btn:hover:not(.active) {
  border-color: #ccc;
}

/* Featured Section */
.featured-section {
  margin-bottom: 80px;
}

.section-divider,
.article-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 24px;
}

.featured-card {
  background: #f1f9f6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  min-height: 400px;
}

.featured-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.meta-dot {
  width: 16px;
  height: 16px;
  background: #eb8133;
  border-radius: 8px;
  margin-right: 8px;
}

.meta-date,
.meta-category,
.article-meta .meta-date {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: #000;
}

.featured-image {
  flex: 2;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 350px;
}

.article-card.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.article-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.article-image {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 27px 53px -14px rgba(0, 0, 0, 0.25);
  height: 172px;
}

.article-image img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 10px;
}

.article-content {
  padding: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0.75;
  margin-bottom: 16px;
}

.article-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: #000;
  opacity: 0.75;
  margin-bottom: 16px;
}

.meta-separator {
  width: 6px;
  height: 6px;
  background: #eb8133;
  border-radius: 3px;
}

.read-link {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-decoration: underline;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* .read-link:hover {
  opacity: 1;
  color: #000;
} */

.read-arrow {
  display: inline-block;
  color: #000;
  font-size: 16px;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.article-card:hover .read-link {
  color: #000;
  opacity: 1;
  text-decoration: none;
}
.article-card:hover .read-arrow {
  transform: translateX(200px);
  opacity: 1;
  font-size: 22px;
  color: #000;
}
.read-more-btn {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

/* Feature Button */
.feature-btn {
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
}

.feature-btn-dark {
  background: #000;
  color: white;
  padding: 16px 20px;
  font-weight: 600;
}

.feature-btn-dark:hover {
  background: #333;
}
.hrms-read-more-btn {
  text-decoration: none;
}

/* individual blog */
.sub-blog-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-sub-category {
  font-size: 16px;
  font-weight: 700;
}

.blog-date {
  font-size: 14px;
  padding-left: 20px;
}

.blog-sub-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.author-name {
  font-weight: 600;
  margin: 0;
}

.author-role {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.feature-img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.sub-blog-title {
  display: flex;
  margin-bottom: 20px;
}
.blog-back-btn {
  padding-bottom: 20px;
}
.blog-back-btn a {
  text-decoration: none;
  color: #000;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
  font-size: 25px;
}
.mb-15 {
  margin-bottom: 15px;
  font-size: 22px;
}
.mb-25 {
  margin-bottom: 25px;
}
.f-15 {
  font-size: 25px;
  margin-bottom: 15px;
}

/* Mobile Menu Button styles */
.nav-toggle {
  /* display: none; */
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.04);
}

.nav-close {
  display: none;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.04);
  position: absolute;
  right: 20px;
  top: 20px;
}

/* Hide mobile nav on desktop, show on mobile */
.mobile-navigation-menu {
  display: none;
}

/* Mobile menu open/close button styles */
.mobile-menu-open {
  display: none;
}

.mobile-menu-close {
  display: none;
}

/* Contact Section Styles */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 150px;
  background-color: #f8f8f9;
  width: 100%;
}

.contact-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1320px;
  padding: 0 12px;
}

.contact-content {
  display: flex;
  /* flex-wrap: wrap;
  justify-content: space-between; */
  flex-direction: column;
  gap: 108px;
}

.contact-info {
  display: flex;
  /* flex-direction: column; */
  width: 100%;
  max-width: 678px;
  justify-content: center;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #1a1a1a;
}

.contact-description {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 19.2px;
  line-height: 1.5;
  color: #353941;
}

.contact-card {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #dddddd;
}

.contact-item.no-border {
  border-bottom: none;
}

.contact-icon {
  width: 20px;
  /* height: 20px; */
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-text {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 20.8px;
  line-height: 1.5;
  color: #1a1a1a;
  text-decoration: none;
}

/* Form Styles */
.contact-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* max-width: 756px; */
}

.form-card {
  background: white;
  border-radius: 32px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-form {
  padding: 48px;
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 13px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 17.6px;
  line-height: 1.5;
  color: #353941;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 58px;
  border: none;
  border-bottom: 1px solid #dddddd;
  border-radius: 0;
  padding: 50px 12px 18px;
  margin-top: 17px;
  background: transparent;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group textarea {
  height: 100px;
  resize: none;
  padding-top: 34px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #1a1a1a;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-8px) scale(0.85);
  color: #1a1a1a;
}

.form-section {
  margin: 24px 0;
  padding: 0 12px;
}

.section-label {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 17.6px;
  line-height: 1.5;
  color: #353941;
  margin-bottom: 8px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-button {
  border-radius: 100px;
  padding: 17px 29px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
  border: 1px solid #dddddd;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-button:hover {
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
}

.option-button.active {
  background: var(--color-gradient);
  color: white;
  border-color: transparent;
}

.submit-button {
  border-radius: 100px;
  background: var(--color-gradient);
  color: white;
  padding: 20px 33px;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 19.2px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background: linear-gradient(#fff, #fff) padding-box,
    /* inner content */ var(--color-gradient) border-box;
  border: 1px solid transparent;
  color: #000;
}

.submit-button:hover .submit-icon {
  filter: invert(1);
}

.contactformName {
  display: flex;
  justify-content: space-between;
}

.contactformName .form-group {
  width: 48%;
}

.addressContact {
  display: flex;
  align-items: center;
}

.ElipseLine {
  position: absolute;
  width: auto;
  height: auto;
  top: 12%;
}

.mobile-submenu-list {
  display: none;
}

.has-mobile-submenu.open > .mobile-submenu-list {
  display: block;
}

.mobile-dropdown-menu {
  display: none;
}

.has-mobile-dropdown.open > .mobile-dropdown-menu {
  display: block;
}

.product-main-image {
  height: 439px;
  width: 408px;
}

.journey-main-image {
  height: 439px;
  width: 408px;
}

.journey-elipseLine {
  top: 0;
}

.collab-btn {
  width: 219px;
  height: 64px;
  padding: 24px 35px;
}

.cta-experts-section {
  background: #f7f7f7;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.cta-title {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}

.cta-sub-title {
  font-size: 64px;
  font-weight: 600;
  color: #111;
  letter-spacing: -2px;
}

.cta-divider {
  display: inline-block;
  width: 192px;
  height: 2px;
  background: #e5e5e5;
  /* margin-left: 24px; */
  vertical-align: middle;
  align-self: center;
}

.cta-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-sub-container {
  display: flex;
  gap: 45px;
  margin-top: 50px;
}

.image-sol {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .navigation-section {
    padding: 20px 40px;
  }

  .header-title {
    font-size: 56px;
    line-height: 72px;
  }

  .services-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .logo-container-main {
    width: 100%;
    padding: 0 20px;
  }

  .solutions-content {
    flex-direction: column;
  }

  .solution-tabs {
    width: 100%;
  }

  .separator-vertical {
    width: 100vh;
    height: 1px;
  }

  .approach-steps {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .office-locations {
    width: 100%;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (min-width: 1201px) and (max-width: 1390px) {
  .navigation-section {
    background: var(--color-white);
    padding: 20px 70px;
    width: 100%;
  }

  .nav-link {
    padding: 0px;
  }

  .read-more-button {
    padding: 16px 32px;
  }

  .job-title-career {
    font-size: 52px;
  }

  .cust-width-200 {
    width: 210px;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-close {
    display: none;
  }

  .navigation-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background: #fff;
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
  }

  .navigation-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  /* Hide all submenus by default on mobile */
  .solution-item.has-submenu .solution-submenu {
    display: none;
    background: #f7f7f7;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: static;
  }

  /* Show submenu when .submenu-open is present */
  .solution-item.has-submenu.submenu-open .solution-submenu {
    display: block;
  }

  .solution-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
  }

  .solution-menu {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .solution-item.has-submenu {
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .solution-label {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    color: #222;
    box-sizing: border-box;
  }

  .solution-item.has-submenu .solution-submenu {
    display: none;
    background: #f7f7f7;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: static;
    width: 100%;
    margin: 0;
  }

  .solution-item.has-submenu.submenu-open .solution-submenu {
    display: block;
  }

  .solution-submenu li,
  .solution-subitem {
    display: block;
    width: 100%;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    color: #222;
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    word-break: break-word;
  }

  .solution-submenu li:last-child,
  .solution-subitem:last-child {
    border-bottom: none;
  }

  .navigation-section {
    padding: 16px 20px;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .header-title {
    font-size: 40px;
    line-height: 48px;
  }

  .marquee-item {
    font-size: 48px;
    line-height: 56px;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .footer-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 12px;
  }

  .navigation-menu {
    display: none !important;
  }

  .mobile-navigation-menu {
    display: block;
    background: #fff;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1002;
    padding-top: 60px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.08); */
    overflow-y: auto;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
  }

  .mobile-nav-item {
    /* border-bottom: 1px solid #eee; */
    margin: 20px 0;
  }

  .mobile-nav-link {
    /* display: block; */
    padding: 1.1rem 2rem;
    color: #222;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
  }

  .has-mobile-dropdown > .mobile-dropdown-toggle {
    width: 100%;
    border: none;
    padding: 1.3rem 2.2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    background: linear-gradient(#fff, #fff) padding-box,
      /* inner content */ var(--color-gradient) border-box;
    border: 1px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .has-mobile-dropdown.open > .mobile-dropdown-toggle {
    background: var(--color-gradient);
    border: 1px solid transparent;
    color: var(--color-white);
  }

  .mobile-dropdown-menu {
    display: none;
    background: #f7f7f7;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .has-mobile-dropdown.open > .mobile-dropdown-menu {
    display: block;
  }

  .mobile-dropdown-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .has-mobile-submenu > .mobile-submenu-toggle {
    width: 100%;
    border: none;
    padding: 1rem 2.5rem;
    text-align: left;
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(#fff, #fff) padding-box,
      /* inner content */ var(--color-gradient) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    margin-top: 8px;
  }

  .has-mobile-submenu.open > .mobile-submenu-toggle {
    /* filter: invert(1); */
    background: var(--color-gradient);
    color: var(--color-white);
  }

  .solution-icon {
    display: none;
  }

  .has-mobile-submenu.open .solution-icon {
    display: inline-flex !important;
    flex-direction: column;
    position: relative;
    filter: invert(1);
  }

  .has-mobile-submenu.open .solution-icon img {
    position: relative;
    width: 20px;
    height: 20px;
    left: -4px;
    top: 3px;
    filter: invert(1);
  }

  .mobile-submenu-list {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    background: var(--color-gradient);
    padding: 0;
    margin: 0;
    border-radius: 8px;
    list-style: none;
  }

  .has-mobile-submenu.open > .mobile-submenu-list {
    display: block;
    margin-top: 5px;
  }

  .mobile-subitem {
    display: block;
    padding: 1rem 2.4rem;
    font-size: 0.98rem;
    color: #fff;
    background: transparent;
    /* border-bottom: 1px solid #e0e0e0; */
    text-decoration: none;
    word-break: break-word;
  }

  .mobile-subitem:last-child {
    border-bottom: none;
  }

  .mobile-menu-open {
    display: block;
    /* position: fixed;
    top: 20px;
    right: 20px; */
    z-index: 1100;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    /* box-shadow: 0 2px 8px rgb(255, 255, 255); */
  }

  .mobile-navigation-menu {
    display: none;
  }

  .mobile-navigation-menu.open {
    display: block;
    background: #fff;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1101;
    padding: 60px 24px 0 24px;
    /* box-shadow: 0 2px 16px rgba(255, 255, 255, 0.08); */
    overflow-y: auto;
  }

  .mobile-navigation-menu .mobile-menu-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    /* box-shadow: 0 2px 8px rgba(255, 255, 255, 0.04); */
    z-index: 1102;
  }

  #mobileNavMenu {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
  }

  #mobileNavMenu.open {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1101;
    opacity: 0;
    pointer-events: none;
  }

  /* When menu is open, trigger animation */
  .mobile-navigation-menu.open {
    animation: slideIn 0.5s ease forwards;
    pointer-events: auto;
    opacity: 1;
  }

  /* Slide in animation (from right to left) */
  @keyframes slideIn {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }

    100% {
      transform: translateX(0%);
      opacity: 1;
    }
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header-container {
    padding: 0 16px;
  }

  .header-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }

  .logo {
    top: -5px;
    left: 0px;
  }

  .marquee-item {
    font-size: 36px;
    line-height: 42px;
  }

  .solution-tab {
    padding: 16px 24px;
    font-size: 16px;
    width: auto;
    border: 1px solid var(--color-grey-light);
  }

  .d-none {
    display: none;
  }

  .solution-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .solution-tab span {
    font-size: 14px;
  }

  .j-center {
    justify-content: center;
  }

  .approach-title {
    font-size: 36px;
    line-height: 42px;
  }

  .step-title {
    font-size: 24px;
    line-height: 30px;
  }

  .circle-2 {
    width: 159px;
    height: 361px;
    top: -36px;
    left: 100px;
    border-radius: 135.24px / 303.54px;
    transform: rotate(66.46deg);
  }

  .circle-1 {
    width: 159px;
    height: 361px;
    top: -33px;
    left: 100px;
    border-radius: 136.72px / 299.93px;
    transform: rotate(60.29deg);
  }

  .decorative-circles {
    position: relative;
    width: 320px;
    height: 270px;
    top: 0;
    left: -10px;
  }

  /* .main-image {
    position: absolute;
    width: 274px;
    height: 318px;
    top: 0;
    left: 35px;
    border-radius: 20px;
    overflow: hidden;
  } */

  .main-image {
    position: absolute;
    width: 274px;
    height: 318px;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    overflow: hidden;
    transform: translate(-50%, -50%);
  }

  .journey-main-image {
    height: 318px;
    width: 274px;
  }

  .star {
    position: absolute;
    width: 20px;
    height: 20px;
  }

  .star-1 {
    top: 215px;
    left: 0;
  }

  .star-2 {
    top: 53px;
    right: 13px;
  }

  .ElipseLine {
    width: 100%;
  }

  .journey-elipseLine {
    top: 12%;
  }

  .services-left {
    position: relative;
    width: auto;
    height: auto;
  }

  .services-image-container {
    position: relative;
    height: 320px;
  }

  .hero-section .hero-bg .circle-1,
  .hero-section .hero-bg .circle-2 {
    position: absolute;
    height: 50vmax;
    width: 50vmax;
    object-fit: cover;
  }

  .specializations-list {
    position: relative;
    width: 100%;
    height: 145px;
  }

  .specialization-item:nth-child(2) {
    top: 50px;
    left: 0;
  }

  .specialization-item:nth-child(3) {
    top: 100px;
    left: 0;
  }

  .specialization-item:nth-child(4) {
    top: 150px;
    left: 0;
  }

  .section-description-main {
    width: auto;
    height: auto;
    text-align: center;
  }

  .partners-swiper img {
    max-height: 36px;
    max-width: 120px;
  }

  .marquee-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .rounded-div {
    width: 150%;
    height: 178%;
  }

  .logo-section {
    padding: 50px 0;
  }

  .testimonial-quote p {
    font-size: 16px;
    text-align: center;
    line-height: 24px;
  }

  .about-section {
    padding: 10px 24px 80px 24px;
  }

  .footer-section {
    padding: 8px 24px 40px 24px;
  }

  .footer-content {
    align-items: flex-start;
  }

  .contact-info {
    flex-direction: column;
    margin-top: 15px;
  }

  /* .phone-icon {
    display: none;
  } */

  .section-header {
    justify-content: center;
  }

  .dRight {
    display: block;
  }

  .services-description {
    text-align: center;
  }

  .services-heading {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }

  .section-header-main {
    align-items: center;
  }

  .section-heading-main {
    font-size: 24px;
    line-height: 32px;
  }

  .logo-container-main {
    align-items: center;
  }

  .approach-section {
    padding: 96px 24px;
  }

  .partners img {
    width: auto;
    /* transform: scale(2); */
  }

  .main-title {
    font-size: 3rem;
    text-align: center;
  }

  .main-content-section {
    padding: 55px 24px;
  }

  .title-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    flex-direction: column;
  }

  .separator-line {
    flex: none;
    height: 2px;
    background: #e5e5e5;
    border: none;
    margin: 0;
    width: 100%;
  }

  .main-title-second {
    font-size: 3rem;
    width: 100% !important;
    text-align: center;
  }

  .main-description {
    text-align: center;
  }

  .key-benefits {
    padding: 50px 24px;
    background: #f8f8f9;
  }

  .benefits-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-direction: column;
  }

  .benefits-title {
    position: unset;
    align-self: flex-start;
    width: 100% !important;
  }

  .benefits-title h2 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    width: 100%;
    display: grid;
    grid-template-columns: none;
    gap: 1.5rem 2rem;
  }

  .overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0px 24px;
  }

  .overview-card {
    width: 100%;
    height: auto;
  }

  .overview-title {
    font-size: 2.5rem;
  }

  .applications {
    padding: 3rem 1.5rem;
    background: var(--color-white);
  }

  .applications-header h2 {
    font-size: 2.5rem;
  }

  .applications-header p {
    width: 100%;
  }

  .application-item {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    flex-direction: column;
  }

  .application-content {
    flex: none;
    width: 100%;
  }

  .application-content h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .application-content p {
    width: 100%;
  }

  .application-image {
    width: 100%;
    height: 240px;
    margin-top: 24px;
  }

  .placeholder-image {
    width: 100%;
    height: 100%;
  }

  .product-features-detail {
    padding: 96px 24px;
  }

  .features-detail-content {
    flex-direction: column;
  }

  .features-detail-title {
    width: 100%;
    position: unset;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .features-detail-grid {
    width: 100%;
    grid-template-columns: none;
  }

  .faq {
    padding: 4rem 2rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  .faq-answer {
    font-size: 1.2rem;
  }

  .features-detail-title h2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .separator-vertical {
    width: 100%;
    height: auto;
    background: transparent;
  }

  .divider-dashed {
    border-top: 2px dashed #ccc;
    margin: 1.5rem 0;
    display: none;
  }

  .mob-flex-reverse-col {
    flex-direction: column-reverse;
  }

  .milestone-container {
    padding: 60px 24px;
  }

  .timeline {
    gap: 10px;
  }

  .timeline-header {
    grid-template-columns: none;
    gap: 40px;
  }

  .milestone-header {
    justify-content: center;
  }

  .title {
    font-size: 40px;
    width: 100%;
    text-align: center;
  }

  .timeline-item.left {
    justify-content: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .timeline-item.right {
    justify-content: flex-end;
    gap: 20px;
    flex-direction: column-reverse;
  }

  .timeline-content {
    padding: 16px;
    width: 100%;
  }

  .milestone-text li {
    font-size: 16px;
  }

  .year-circle {
    width: 72px;
    height: 72px;
  }

  .title-wrapper img {
    display: none;
  }

  .main-description-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .card-container {
    gap: 40px;
  }

  .offering-content {
    flex-direction: column;
  }

  .mob-tc {
    text-align: center;
  }

  .contact-content {
    flex-direction: column-reverse;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-icon {
    width: 18px;
  }

  .contact-form {
    padding: 16px;
  }

  .contact-section {
    padding: 50px 24px;
  }

  .contact-container {
    padding: 0;
  }

  .contact-card {
    padding: 32px;
  }

  .button-group {
    gap: 6px;
  }

  .section-title {
    font-size: 18px;
  }

  .career-container {
    padding: 96px 24px;
  }

  .opening-section-title {
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .role-category {
    font-size: 20px;
    margin: 0;
  }

  .job-title-career {
    font-size: 48px;
    line-height: 1.3;
  }

  .job-details {
    display: block;
  }

  .career-role-indicator {
    display: block;
  }

  .job-role {
    margin-bottom: 96px;
  }

  .career-section-header {
    text-align: center;
  }

  .footer-note {
    display: block;
    text-align: center;
    border-radius: 20px;
  }

  .footer-note a {
    color: #54752b;
  }

  .role-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 32px;
  }

  .preloader .loader-container .loaded {
    display: flex;
    justify-content: center;
  }

  .main-container {
    display: block;
  }

  .left-section {
    width: auto;
    padding: 25px;
    text-align: center;
  }

  .right-section {
    width: auto;
  }

  /* .intro {
    text-align: center;
  } */

  .cta-experts-section {
    padding: 80px 24px;
  }

  .cta-sub-title {
    font-size: 40px;
    letter-spacing: normal;
  }

  .cta-divider {
    width: 123px;
  }

  .cta-sub-container {
    gap: 8px;
    margin-top: 20px;
  }

  .collab-btn {
    width: 196px;
  }

  .cta-button {
    padding: 16px 35px;
  }

  .timeline-item {
    align-items: center;
  }

  .contactformName {
    flex-direction: column;
  }

  .contactformName .form-group {
    width: 100%;
  }

  .privacy-policy {
    padding: 32px 20px;
  }
  .category-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    flex-direction: column;
  }
  .article-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .articles {
    padding-bottom: 40px;
  }
  .blog-main {
    padding: 0 24px;
  }
  .inner-image {
    width: 18px;
  }
}

.feature-icon {
  width: 40px;
  height: 40px;
}

/* --- Animated SVG Hero Background --- */
/* 
.hero-bg-animated-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

#animated-svg {
  position: absolute;
  transition: none;
}

.hero-bg-animated-svg svg {
  width: 10vw;
  height: auto;
  max-width: 600px;
  display: block;
}

.st0 {
  stroke: #6D6E71;
  stroke-width: 2;
  stroke-miterlimit: 10;
  fill: transparent;
  transition: fill 0.4s ease;
}



@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 334.4px;
    stroke-dasharray: 334.4px;
    fill: transparent;
  }
  90% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 334.4px;
    fill: #6D6E71;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 334.4px;
    stroke-dasharray: 334.4px;
    fill: transparent;
  }
  90% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 334.4px;
    fill: #6D6E71;
  }
}

.svg-elem-1 {
  animation: animate-svg-stroke-1 4s ease 0s infinite;
  stroke-dasharray: 334.4;
  stroke-dashoffset: 334.4;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 334.4px;
    stroke-dasharray: 334.4px;
    fill: transparent;
  }
  90% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 334.4px;
    fill:  #6D6E71;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 334.4px;
    stroke-dasharray: 334.4px;
    fill: transparent;
  }
  90% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 334.4px;
    fill:  #6D6E71;
  }
}

.svg-elem-2 {
  animation: animate-svg-stroke-2 4s ease 0s infinite;
  stroke-dasharray: 334.4;
  stroke-dashoffset: 334.4;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
        stroke-dashoffset: 214.4px;
        stroke-dasharray: 214.4px;
        fill: transparent;
      }
      90% {
        fill: transparent;
      }
      100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 214.4px;
        fill: #6D6E71;
      }
}
@keyframes animate-svg-stroke-3 {
  0% {
        stroke-dashoffset: 214.4px;
        stroke-dasharray: 214.4px;
        fill: transparent;
      }
      90% {
        fill: transparent;
      }
      100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 214.4px;
        fill: #6D6E71;
      }
}

.svg-elem-3 {
  animation: animate-svg-stroke-3 4s ease 0s infinite;
  stroke-dasharray: 214.4;
  stroke-dashoffset: 214.4;
}

@keyframes draw-rect {
  to {
    stroke-dashoffset: 0;
  }
}


#Layer_1{
  position: absolute;
  transition: none;
} */

/* Hide mobile menu open/close buttons on desktop */
@media (min-width: 992px) {
  .mobile-menu-open,
  .mobile-menu-close {
    display: none !important;
  }
}

/* Hide mobile menu open/close buttons on desktop */
@media (min-width: 769px) and (max-width: 992px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .mobile-menu-open,
  .mobile-menu-close {
    display: block !important;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-close {
    display: none;
  }

  .navigation-menu {
    display: none !important;
  }

  .mobile-navigation-menu {
    display: block;
    background: #fff;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1002;
    padding-top: 60px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.08); */
    overflow-y: auto;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
  }

  .mobile-nav-item {
    /* border-bottom: 1px solid #eee; */
    margin: 20px 0;
  }

  .mobile-nav-link {
    /* display: block; */
    padding: 1.1rem 2rem;
    color: #222;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    background: #fff;
    border: 1px solid black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
  }

  .has-mobile-dropdown > .mobile-dropdown-toggle {
    width: 100%;
    border: none;
    padding: 1.3rem 2.2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    background: linear-gradient(#fff, #fff) padding-box,
      /* inner content */ var(--color-gradient) border-box;
    border: 1px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .has-mobile-dropdown.open > .mobile-dropdown-toggle {
    background: var(--color-gradient);
    border: 1px solid transparent;
    color: var(--color-white);
  }

  .mobile-dropdown-menu {
    display: none;
    background: #f7f7f7;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .has-mobile-dropdown.open > .mobile-dropdown-menu {
    display: block;
  }

  .mobile-dropdown-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .has-mobile-submenu > .mobile-submenu-toggle {
    width: 100%;
    border: none;
    padding: 1rem 2.5rem;
    text-align: left;
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(#fff, #fff) padding-box,
      /* inner content */ var(--color-gradient) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    margin-top: 8px;
  }

  .has-mobile-submenu.open > .mobile-submenu-toggle {
    /* filter: invert(1); */
    background: var(--color-gradient);
    color: var(--color-white);
  }

  .solution-icon {
    display: none;
  }

  .has-mobile-submenu.open .solution-icon {
    display: inline-flex !important;
    flex-direction: column;
    position: relative;
    filter: invert(1);
  }

  .has-mobile-submenu.open .solution-icon img {
    position: relative;
    width: 20px;
    height: 20px;
    left: -4px;
    top: 3px;
    filter: invert(1);
  }

  .mobile-submenu-list {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    background: var(--color-gradient);
    padding: 0;
    margin: 0;
    border-radius: 8px;
    list-style: none;
  }

  .has-mobile-submenu.open > .mobile-submenu-list {
    display: block;
    margin-top: 5px;
  }

  .mobile-subitem {
    display: block;
    padding: 1rem 2.4rem;
    font-size: 0.98rem;
    color: #fff;
    background: transparent;
    /* border-bottom: 1px solid #e0e0e0; */
    text-decoration: none;
    word-break: break-word;
  }

  .mobile-subitem:last-child {
    border-bottom: none;
  }

  .mobile-menu-open {
    display: block;
    /* position: fixed;
    top: 20px;
    right: 20px; */
    z-index: 1100;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    /* box-shadow: 0 2px 8px rgb(255, 255, 255); */
  }

  .mobile-navigation-menu {
    display: none;
  }

  .mobile-navigation-menu.open {
    display: block;
    background: #fff;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1101;
    padding: 60px 24px 0 24px;
    /* box-shadow: 0 2px 16px rgba(255, 255, 255, 0.08); */
    overflow-y: auto;
  }

  .mobile-navigation-menu .mobile-menu-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 20px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    /* box-shadow: 0 2px 8px rgba(255, 255, 255, 0.04); */
    z-index: 1102;
  }

  #mobileNavMenu {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
  }

  #mobileNavMenu.open {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1101;
    opacity: 0;
    pointer-events: none;
  }

  /* When menu is open, trigger animation */
  .mobile-navigation-menu.open {
    animation: slideIn 0.5s ease forwards;
    pointer-events: auto;
    opacity: 1;
  }

  /* Slide in animation (from right to left) */
  @keyframes slideIn {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }

    100% {
      transform: translateX(0%);
      opacity: 1;
    }
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header-container {
    padding: 0 16px;
  }

  .header-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }

  .logo {
    top: -5px;
    left: 0px;
  }

  .services-left,
  .services-right {
    width: 635px;
    margin: 0 auto;
  }

  .logo-section {
    padding: 96px 24px;
  }

  .logo-container-main {
    width: 100%;
    padding: 0;
  }

  .section-description-main {
    width: 100%;
  }

  .solutions-content {
    flex-direction: row;
  }

  .solution-tabs {
    width: 35%;
  }

  .separator-vertical {
    width: 1px;
    height: -webkit-fill-available;
    background: var(--color-grey);
  }

  .solution-tab {
    padding: 19px;
  }

  .solution-tab span {
    font-size: 18px;
  }

  .approach-section {
    padding: 96px 24px;
  }

  .cta-experts-section {
    padding: 60px 24px;
  }

  .cta-sub-title {
    font-size: 32px;
  }

  .cta-sub-container {
    gap: 10px;
  }

  .cta-divider {
    width: 160px;
  }

  .collab-btn {
    width: 178px;
    height: 64px;
    padding: 12px 22px;
  }

  .footer-section {
    padding: 8px 24px 40px 24px;
  }

  .footer-container {
    gap: 24px;
  }

  .footer-tagline {
    font-size: 22px;
  }

  .footer-content {
    flex-direction: row;
    gap: 40px;
  }

  .footer-bottom {
    gap: 8px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }

  .contact-info {
    flex-direction: row;
  }

  .email-icon {
    width: 20px;
  }

  .contact-phone span {
    font-size: 9px;
  }

  .phone-icon {
    width: 22px;
    height: 22px;
  }

  .copyright {
    font-size: 9px;
  }

  .office-address {
    font-size: 12px;
  }

  .office-locations {
    width: 426px;
  }

  .quick-link {
    font-size: 10px;
  }

  .quick-links-list {
    gap: 0px;
  }

  .footer-info {
    flex-direction: row;
    gap: 16px;
    text-align: center;
  }

  .quick-links-title {
    font-size: 14px;
    line-height: 20px;
  }

  .office-country {
    font-size: 14px;
  }

  .office-location {
    height: 70px;
  }

  .office-grid {
    gap: 20px;
  }

  .main-content-section {
    padding: 55px;
  }

  .main-title {
    font-size: 3rem;
    max-width: 768px;
  }

  .main-title-second {
    font-size: 3rem;
    width: auto !important;
  }

  .title {
    font-size: 24px;
    width: 290px;
  }

  .timeline-header {
    gap: 0px;
  }

  .milestone-container {
    padding: 60px 24px;
  }

  .milestone-text li {
    font-size: 18px;
  }

  .timeline {
    gap: 40px;
  }

  .timeline-item.left {
    justify-content: space-evenly;
    gap: 0;
  }

  .timeline-content {
    gap: 30px;
    width: 545px;
  }

  .timeline-item img {
    width: 100px;
  }

  .timeline-item.right {
    justify-content: space-evenly;
    gap: 0px;
  }

  .timeline-item.left:last-of-type {
    justify-content: flex-start;
    margin-left: 8%;
  }

  .middle-container {
    flex-direction: column-reverse;
  }

  .title-separator {
    max-width: 768px;
  }

  .main-description {
    font-size: 18.4px;
  }

  .key-benefits {
    padding: 96px 24px;
  }

  .benefits-content {
    gap: 6rem;
  }

  .benefits-title h2 {
    font-size: 2rem;
  }

  .benefit-title {
    font-size: 1.1rem;
  }

  .benefit-description {
    font-size: 1rem;
  }

  .overview-title {
    font-size: 2rem;
  }

  .overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 0px 24px;
  }

  .applications {
    padding: 6rem 1.5rem;
  }

  .applications-header h2 {
    font-size: 2rem;
  }

  .applications-header p {
    width: auto;
    font-size: 1rem;
  }

  .application-item {
    width: 100%;
    height: auto;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    gap: 10px;
  }

  .application-content h3 {
    width: 20.625rem;
    font-size: 1.1rem;
  }

  .application-content p {
    width: 20.625rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .application-image {
    width: 18.625rem;
    height: 15.65rem;
    display: flex;
  }

  .product-features-detail {
    padding: 96px 24px;
  }

  .features-detail-content {
    gap: 4rem;
  }

  .features-detail-title {
    width: 20.25rem;
  }

  .features-detail-title h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .features-detail-grid {
    width: 54rem;
    gap: 2rem;
  }

  .feature-detail-item {
    margin-bottom: 0.8rem;
  }

  .feature-number {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 0.1125rem;
  }

  .feature-title {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .feature-description {
    font-size: 1rem;
    line-height: 1.3;
  }

  .faq {
    padding: 6rem 24px;
  }

  .faq-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.7rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .contact-section {
    padding: 128px 24px;
  }

  .main-container {
    gap: 48px;
  }

  .left-section {
    width: 35%;
  }

  .job-title-career {
    font-size: 39px;
  }

  .cust-width-200 {
    width: 210px;
  }

  .modal-content {
    height: auto;
  }

  .privacy-policy {
    padding: 32px 24px;
  }
  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .blog-main {
    padding: 0 30px;
  }
  .blog-swiper-container {
    width: 145px;
    height: 199px;
  }
  .blog-swiper-wrapper img {
    height: 75px;
  }
  .blog-swiper-wrapper a {
    font-size: 12px;
  }
  .blog-swiper-container h3 {
    margin-bottom: 20px;
  }
  .dots {
    margin-top: 0;
  }
  .blog-swiper-title p {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .footer-content {
    flex-direction: row;
  }
}
