@import url("developer.css");
@import url("all-variable-classes.css");
@import url("color.css");
@import url("fonts.css");
@import url("style.css");

.logo-text-purple {
  color: #5d00e3;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  width: 200%;
  animation: marquee 15s linear infinite;
  display: flex;
  align-items: center;
}

.marquee-inner {
  width: 50%;
  white-space: nowrap;
}

.mobile-menu-transition {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

.mobile-menu-transition.open {
  transform: translateX(0);
}

.rotating-text-container {
  position: absolute;
  bottom: -25px;
  left: -55px;
  width: 127px;
  height: 127px;
  z-index: 20;
  border: solid 10px #fff;
  border-radius: 100px;
}

.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.experience-circle {
  background: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-circle span {
  width: 74px;
  height: 74px;
  background: linear-gradient(90deg,
      #b000f4 1.1%,
      #ac00f4 15.98%,
      #9e00f6 31.39%,
      #870ef9 47.05%,
      #662dfc 62.9%,
      #3549ff 78.88%,
      #0068ff 94.76%,
      #0070ff 98.57%,
      #0070ff 98.67%);
}

.why-choose-box:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images_new/dot.png) center center / contain no-repeat;
}

.gradient-1 {
  background: linear-gradient(90deg, #ae28f5 1.1%, #a328f5 98.67%);
}

/* Darker Purple */
.gradient-2 {
  background: linear-gradient(90deg, #a328f5 1.1%, #952af6 98.67%);
}

/* Mid Purple */
.gradient-3 {
  background: linear-gradient(90deg, #952af6 1.1%, #722dfb 98.67%);
}

/* Lighter Purple/Violet */
.gradient-4 {
  background: linear-gradient(90deg, #722dfb 1.1%, #3b45ff 98.67%);
}

/* Violet to Indigo */
.gradient-5 {
  background: linear-gradient(90deg, #722dfb 1.1%, #0074ff 98.67%);
}

.solutions-section {
  background: url(../images_new/solutions-section-banner.png) center center / cover no-repeat;
}

.logo-card-glow .logo-content,
.award-card-glow {
  position: relative;
  background-color: white;
  border-radius: 16px;
  padding: 30px 15px;
  border-top: 4px solid #ac00f4;
  box-shadow: 0px 9px 14px rgba(195, 195, 195, 0.25);
  width: 100%;
  display: flex;
  align-items: center;

}

img.service-icon-image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.disabled {
  pointer-events: none;
}

.testimonial-section .swiper-slide {
  opacity: 0.5;
  transition: opacity 300ms, transform 300ms;
}

.testimonial-section .swiper-slide-active {
  opacity: 1;
}

.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border-radius: 9999px;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  transition: all 0.2s;
}

.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-section .swiper-button-prev:hover,
.testimonial-section .swiper-button-next:hover {
  border-color: var(--secondary-800);
  color: var(--secondary-800);
}

@media (max-width: 640px) {
  .testimonial-section .swiper-slide {
    width: 90%;
  }
}

.get-touch-section {
  background: url(../images_new/get-touch-bg.svg) center center / cover no-repeat;
}

.subscribe-now-inner {
  background: url(../images_new/newsletter-bg.svg) center center / cover no-repeat;
  min-height: 290px;
}

.logo-card-glow {
  position: relative;
}


.timeline-container {
  position: relative;
  padding-top: 50px;
  /* Space for the line and dots */
}

.timeline-line {
  position: absolute;
  top: 80px;
  /* Aligns with the dots' center */
  left: 0;
  right: 0;
  height: 2px;
  border-bottom: dashed 2px var(--secondary-400);
  z-index: 1;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: solid 7px var(--secondary-200);
  background: var(--secondary-700);
  border-radius: 100px;
  top: 15px;
  cursor: pointer;
  transition: transform 0.3s;
}

.timeline-dot:hover {
  transform: scale(1.3);
}

.year-box {
  background: linear-gradient(90deg, #B000F4 1.1%, #AC00F4 15.98%, #9E00F6 31.39%, #870EF9 47.05%, #662DFC 62.9%, #3549FF 78.88%, #0068FF 94.76%, #0070FF 98.57%, #0070FF 98.67%);
  padding: 15px 16px;
  border-radius: 16px;
  color: white;
  min-width: 121px;
  text-align: center;
  font-weight: 700;
  transition: transform 0.3s;
}





.year-box:hover {
  transform: translateY(-5px);
}

.content-card-box {
  position: absolute;
  top: 135px;
  width: 100%;
  width: 448px;
  /* Fixed width for better control */
  box-shadow: 0px 3px 14px rgba(195, 195, 195, 0.25);
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  z-index: 3;
  text-align: left;
}


.content-card-box.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Triangle pointer for the active card */
.content-card-box::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

/* Positioning the content cards dynamically */
#card-2003 {
  left: calc(10% - 140px);
}

/* Updated position */
#card-2018 {
  left: calc(40% - 140px);
}

#card-2019 {
  left: calc(65% - 140px);
}

#card-2022 {
  left: calc(90% - 140px);
}

/* New position */


.timeline-col-wrapper:hover .content-card-box {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mobile adjustments: Stack content and hide horizontal line */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }

  .timeline-container {
    padding-top: 0;
  }

  .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
  }

  .timeline-dot {
    position: static;
    top: auto;
    margin-right: 16px;
  }

  .year-box {
    margin-bottom: 0;
  }

  /* Mobile content cards will appear below the year/dot block */
  .content-card-box {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  /* Hide arrow on mobile */
  .content-card-box::before {
    display: none;
  }

  /* Adjusting for mobile vertical timeline look */
  .timeline-col {
    width: 100%;
    justify-content: flex-start;
  }

  .timeline-col-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

}

.benefit-number {
  color: transparent;
  -webkit-text-stroke: 1px #9b2cff;
  -moz-text-stroke: 1px #9b2cff;
  -o-text-stroke: 1px #9b2cff;
}

.request-consultation-content {
  background: url(../images_new/request-bg.png) no-repeat center center / cover #006EFC;
  padding: 15px;
  border-radius: 16px;
}

.get-touch-section .form-group label {
  color: var(--white);
}