* {
  font-family: "Outfit", sans-serif;
}

.navbar-scrolled {
  background: #ffffff !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #2d24f7, #171717);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: linear-gradient(135deg, #2d24f7, #171717);

  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #2d24f7, #171717);

  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(82, 22, 249, 0.3);
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #2d24f7;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: linear-gradient(135deg, #171717, #2d24f7);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Banner Styling */
.hero-text-gradient {
  background: #1488CC;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ececec, #78d7e4);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #ececec, #909af4, #ffffff);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-btn-gradient {
  background: linear-gradient(135deg, #2d24f7, #171717);
  transition: all 0.3s ease;
}

.hero-btn-gradient:hover {
  background: linear-gradient(135deg, #2d24f7, #171717);

  transform: translateY(-2px);
  box-shadow: 0 10px 25px #ceced169;
}

.hero-device-mockup {
  transition: all 0.3s ease;
}

.hero-device-mockup:hover {
  transform: scale(1.05);
}

.hero-floating-icon {
  background: linear-gradient(135deg, #fbfbfd, #ccacf7d3);
  animation: heroFloat 3s ease-in-out infinite;
}

.hero-floating-icon:nth-child(2n) {
  animation-delay: -1.5s;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-tech-badge {
  transition: all 0.3s ease;
}

.hero-tech-badge:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Faqs */
.backBlob {
  animation: myAnim 25s ease 0s infinite alternate-reverse;
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(45px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(45px);
  }
}

/* Testimonials */

/* Testimonials Sliding Transitions */
.slide-transition {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-transition {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Image sliding animations - NO OPACITY CHANGES */
.image-slide-out-left {
  transform: translateX(-120px);
}

.image-slide-out-right {
  transform: translateX(120px);
}

.image-slide-out-up {
  transform: translateY(-80px);
}

.image-slide-out-down {
  transform: translateY(80px);
}

.image-slide-in-left {
  transform: translateX(0);
}

.image-slide-in-right {
  transform: translateX(0);
}

.image-slide-in-up {
  transform: translateY(0);
}

.image-slide-in-down {
  transform: translateY(0);
}

/* Content sliding animations - NO OPACITY CHANGES */
.content-transition {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Content sliding out - PURE SLIDING ONLY */
.content-slide-out-left {
  transform: translateX(-120px);
}

.content-slide-out-right {
  transform: translateX(120px);
}

.content-slide-out-up {
  transform: translateY(-60px);
}

.content-slide-out-down {
  transform: translateY(60px);
}

/* Content sliding in - PURE SLIDING ONLY */
.content-slide-in-left {
  transform: translateX(0);
}

.content-slide-in-right {
  transform: translateX(0);
}

.content-slide-in-up {
  transform: translateY(0);
}

.content-slide-in-down {
  transform: translateY(0);
}

/* Content positioning for smooth sliding */
.content-container {
  position: relative;
  overflow: hidden;
}

/* Smooth sliding animation for main client photo */
.main-client-active {
  transform: scale(1.1);
}

.side-client-inactive {
  transform: scale(1);
  opacity: 0.6;
}

/* Container for smooth sliding effect */
.testimonial-container {
  position: relative;
  overflow: hidden;
}

/* Mobile-specific horizontal sliding */
@media screen and (max-width: 1024px) {
  .content-slide-in-left {
    transform: translateX(0);
  }

  .content-slide-out-left {
    transform: translateX(-120px);
  }

  .content-slide-in-right {
    transform: translateX(0);
  }

  .content-slide-out-right {
    transform: translateX(120px);
  }

  .image-slide-in-left {
    transform: translateX(0);
  }

  .image-slide-out-left {
    transform: translateX(-120px);
  }

  .image-slide-in-right {
    transform: translateX(0);
  }

  .image-slide-out-right {
    transform: translateX(120px);
  }
}

/* Desktop-specific vertical sliding */
@media screen and (min-width: 1025px) {
  .content-slide-in-up {
    transform: translateY(0);
  }

  .content-slide-out-up {
    transform: translateY(-60px);
  }

  .content-slide-in-down {
    transform: translateY(0);
  }

  .content-slide-out-down {
    transform: translateY(60px);
  }

  .image-slide-in-up {
    transform: translateY(0);
  }

  .image-slide-out-up {
    transform: translateY(-80px);
  }

  .image-slide-in-down {
    transform: translateY(0);
  }

  .image-slide-out-down {
    transform: translateY(80px);
  }
}


/* rotatory solars  */
.solar-system-container {
  perspective: 1500px;
  width: 310px;
  height: 310px;
  /* margin: 50px auto; */
  background-image: url('/images/circleSolar.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.solar-system {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  /* background-image: url('https:/images.unsplash.com/photo-1506905925346-21bda4d32df4?w=100&h=100&fit=crop&crop=center'); */
  background-size: cover;
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  /* box-shadow: 0 0 20px #ffd700; */
}

/* First planet orbit - Earth */
.earth-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  /* border: 2px solid rgba(135, 206, 235, 0.3); */
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(-30px);
  transform-style: preserve-3d;
  animation: rotate-earth-orbit 16s linear infinite;
}

.earth {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 80px;
  height: 80px;
  background-image: url('/images/solar1.png');
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(0);
}

/* Second planet orbit - Mars */
.mars-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  /* border: 2px solid rgba(0, 0, 0, 0.973); */
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(-60px) rotate(180deg);
  transform-style: preserve-3d;
  animation: rotate-mars-orbit 25s linear infinite;
}

.mars {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 65px;
  height: 65px;
  background-image: url('/images/solar2.png');
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(0);
}





/* Animations with different speeds and starting positions */
@keyframes rotate-earth-orbit {
  from {
    transform: translate(-50%, -50%) translateZ(-30px) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) translateZ(-30px) rotate(360deg);
  }
}

@keyframes rotate-mars-orbit {
  from {
    transform: translate(-50%, -50%) translateZ(-60px) rotate(180deg);
  }

  to {
    transform: translate(-50%, -50%) translateZ(-60px) rotate(540deg);
  }
}

@keyframes rotate-moon-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.showcase-get-touch-btn {
  background: linear-gradient(135deg, #2d24f7, #ea580c);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  border: none;
}

.showcase-get-touch-btn:hover {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.showcase-chat-btn {
  background: transparent;
  border: 2px solid #6b7280;
  color: #6b7280;
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-chat-btn:hover {
  border-color: #2d24f7;
  color: #2d24f7;
  transform: translateY(-2px);
}
.about-cta-button {
  background: transparent;
  border: 2px solid #2d24f7;
  color: #2d24f7;
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-cta-button:hover {
  background: #2d24f7;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.about-cta-icon {
  width: 24px;
  height: 24px;
  background: #2d24f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.about-cta-button:hover .about-cta-icon {
  background: white;
  color: #2d24f7;
  transform: translateX(4px);
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 1s ease-out;
}

/* Custom gradient background */
.bg-gradient-to-br {
  background-color: #171717;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Backdrop blur fallback */
@supports not (backdrop-filter: blur(12px)) {
  .backdrop-blur-sm {
    background-color: rgba(31, 41, 55, 0.8);
  }
}
.cta-container {
  background: linear-gradient(135deg, #2d24f7 0%, #2f24f77c 100%);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-item {
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.cta-item:hover {
  transform: translateY(-2px);
}

.icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-container {
    padding: 1rem;
  }
}
/* Testimonial Card Hover Effect */
.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  /* Adds hover lift effect */
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  /* Ensures no overflow of content outside the slider */
}

/* Slider Track: Handles the slides' horizontal movement */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Smooth transition for slide change */
}

/* Each slide takes 100% of the container width by default */
.slide {
  flex: 0 0 100%;
  /* 100% of the container's width */
  padding: 0 1rem;
  box-sizing: border-box;
  /* Ensure padding is included in the width */
}

/* On larger screens (1024px and up), each slide takes 50% of the container width */
@media (min-width: 1024px) {
  .slide {
    flex: 0 0 50%;
    /* 50% width for larger screens */
  }
}

/* Dots container: positions the navigation dots at the bottom of the slider */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* Dot Styling */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  /* Inactive dot color */
  cursor: pointer;
  transition: all 0.3s ease;
  /* Smooth transition when changing dot state */
}

.dot {
  background-color: #000000;
}

/* Active dot: Highlights the current slide */
.dot.active {
  background-color: #2d24f7;
  /* Active dot color */
  transform: scale(1.2);
  /* Makes the active dot slightly larger */
}

/* Optional: Hover effect for dots to make them stand out on hover */
.dot:hover {
  background-color: #2d24f7;
  /* Change to active color on hover */
}
 /* Your existing CSS with pointer events disabled */
 .container {
   position: relative;
   /* width: 100px;
  height: 100px; */
   transition: 200ms;
   /* Added for global parallax */
   --rX: 0;
   --rY: 0;
   transform-style: preserve-3d;
   transform: perspective(800px) rotateX(calc(var(--rX) * 1deg)) rotateY(calc(var(--rY) * 1deg));
   /* DISABLE ALL POINTER EVENTS */
   pointer-events: none;
   user-select: none;
 }

 .global-parallax-active {
   transition: transform 0.1s ease-out !important;
 }

 #card {
   position: absolute;
   inset: 0;
   z-index: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 20px;
   transition: 700ms;
   /* DISABLE POINTER EVENTS */
   pointer-events: none;
 }

 .canvas {
   perspective: 800px;
   inset: 0;
   z-index: 20;
   position: absolute;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
   grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
   gap: 0px 0px;
   grid-template-areas:
     "tr-1 tr-2 tr-3 tr-4 tr-5"
     "tr-6 tr-7 tr-8 tr-9 tr-10"
     "tr-11 tr-12 tr-13 tr-14 tr-15"
     "tr-16 tr-17 tr-18 tr-19 tr-20"
     "tr-21 tr-22 tr-23 tr-24 tr-25";
   /* DISABLE POINTER EVENTS */
   pointer-events: none;
 }

 .tracker {
   position: absolute;
   z-index: 200;
   width: 100%;
   height: 100%;
   /* DISABLE ALL INTERACTIONS */
   pointer-events: none !important;
   cursor: default !important;
 }

 /* Remove all hover effects since pointer events are disabled */
 .tracker:hover {
   cursor: default;
 }

 .parallax-image {
   transform: translateZ(20px);
   transition: transform 0.1s ease-out;
   /* DISABLE POINTER EVENTS ON IMAGE */
   pointer-events: none;
   user-select: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
 }

 /* Grid areas */
 .tr-1 {
   grid-area: tr-1;
 }

 .tr-2 {
   grid-area: tr-2;
 }

 .tr-3 {
   grid-area: tr-3;
 }

 .tr-4 {
   grid-area: tr-4;
 }

 .tr-5 {
   grid-area: tr-5;
 }

 .tr-6 {
   grid-area: tr-6;
 }

 .tr-7 {
   grid-area: tr-7;
 }

 .tr-8 {
   grid-area: tr-8;
 }

 .tr-9 {
   grid-area: tr-9;
 }

 .tr-10 {
   grid-area: tr-10;
 }

 .tr-11 {
   grid-area: tr-11;
 }

 .tr-12 {
   grid-area: tr-12;
 }

 .tr-13 {
   grid-area: tr-13;
 }

 .tr-14 {
   grid-area: tr-14;
 }

 .tr-15 {
   grid-area: tr-15;
 }

 .tr-16 {
   grid-area: tr-16;
 }

 .tr-17 {
   grid-area: tr-17;
 }

 .tr-18 {
   grid-area: tr-18;
 }

 .tr-19 {
   grid-area: tr-19;
 }

 .tr-20 {
   grid-area: tr-20;
 }

 .tr-21 {
   grid-area: tr-21;
 }

 .tr-22 {
   grid-area: tr-22;
 }

 .tr-23 {
   grid-area: tr-23;
 }

 .tr-24 {
   grid-area: tr-24;
 }

 .tr-25 {
   grid-area: tr-25;
 }

 .noselect {
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   /* ADDITIONAL POINTER EVENT DISABLE */
   pointer-events: none;
 }

 /* Button styles (these still work since they're outside the parallax container) */
 .cta4-btn-btn {
   background: transparent;
   border: 2px solid #2d24f7;
   color: #2d24f7;
   transition: all 0.3s ease;
   border-radius: 50px;
   padding: 12px 24px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }

 .cta4-btn-btn:hover {
   background: #2d24f7;
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(54, 53, 53, 0.3);
 }

 .about-cta-icon {
   width: 24px;
   height: 24px;
   background: #2d24f7;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   border: 2px solid white;
   transition: all 0.3s ease;
 }

 .cta4-btn-btn:hover .about-cta-icon {
   background: white;
   color: #2d24f7;
   transform: translateX(4px);
 }

 /* Button styles (these still work since they're outside the parallax container) */
 .cta4-btn {
   background: #2d24f7;
   /* border: 2px solid #ffffff; */
   color: #ffffff;
   transition: all 0.3s ease;
   border-radius: 50px;
   padding: 12px 24px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }

 .cta4-btn:hover {
   background: white;
   color: #2d24f7;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(54, 53, 53, 0.3);
 }

 .cta-icon {
   width: 24px;
   height: 24px;
   background: #2d24f7;
   border: 2px solid white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   transition: all 0.3s ease;
 }

 .cta4-btn:hover .cta-icon {
   background: #2d24f7;
   color: #2d24f7;
   transform: translateX(4px);
 }

 /* Prevent text selection on the entire parallax section */
 .parallax-section {
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
 }

 /* Ensure form inputs are clickable */
 #contactForm input {
   pointer-events: auto !important;
   position: relative;
   z-index: 20;
 }

 #contactForm button {
   pointer-events: auto !important;
   position: relative;
   z-index: 20;
 }

 /* Fix for noselect class interfering with form */
 .noselect input,
 .noselect button {
   -webkit-user-select: text !important;
   -moz-user-select: text !important;
   -ms-user-select: text !important;
   user-select: text !important;
 }

 /* Ensure the card container allows interactions */
 #card {
   pointer-events: auto;
 }

 .movine {
   animation: bounce 12s infinite;
 }

 @keyframes bounce {

   0%,
   100% {
     transform: translateY(-5%);
   }

   50% {
     transform: translateY(5%);
   }
 }

 .emovine {
   animation: ebounce 24s infinite linear;
 }

 @keyframes ebounce {

   0%,
   100% {
     transform: translateY(-10%);
   }

   50% {
     transform: translateY(50%);
   }
 }
 .statsMain {
   box-shadow: 0 8px 20px rgba(82, 22, 249, 0.3);
 }

 .stats-number {
   color: #2d24f7;
   font-size: 2.5rem;
   font-weight: 900;
   line-height: 1;
 }

 .stats-description {
   color: #171717;
   font-size: 1rem;
   font-weight: 500;
   margin-top: 0.5rem;
 }

 .stats-container {
   position: relative;
   z-index: 10;
 }

 .stats-item {
   text-align: center;
   padding: 10px 20px;
   position: relative;
 }

 .stats-item:last-child .stats-divider {
   display: none;
 }

 @media (max-width: 768px) {
   .stats-bg-text {
     font-size: 8rem;
   }

   .stats-number {
     font-size: 2.5rem;
   }

   .stats-divider {
     display: none;
   }
 }

 @media (max-width: 1024px) {
   .stats-bg-text {
     font-size: 12rem;
   }
 }
 .about-cta-button {
   background: transparent;
   border: 2px solid #2d24f7;
   color: #2d24f7;
   transition: all 0.3s ease;
   border-radius: 50px;
   padding: 12px 24px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }

 .about-cta-button:hover {
   background: #2d24f7;
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
 }

 .about-cta-icon {
   width: 24px;
   height: 24px;
   background: #2d24f7;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   transition: all 0.3s ease;
 }

 .about-cta-button:hover .about-cta-icon {
   background: white;
   color: #2d24f7;
   transform: translateX(4px);
 }
 .promo-lines {
   position: relative;
   min-height: 320px;
 }

 .line-text {
   font-family: 'Inter', sans-serif;
   font-size: 48px;
   font-weight: 900;
   text-align: center;
   color: white;
   text-transform: uppercase;
   white-space: nowrap;
   padding: 0 40px;
   animation: animate-first-screen 280s -280s linear infinite;
   will-change: transform;
   display: flex;
   align-items: center;
 }

 .line-text:nth-child(2) {
   animation: animate-second-screen 280s -140s linear infinite;
 }

 .line {
   display: flex;
   width: 110%;
   position: absolute;
 }

 .line-orange {
   background: linear-gradient(45deg, #2f24f785, #2d24f7);
   height: 80px;
   line-height: 80px;
   transform: rotate(-1deg) translate(-50px, 60px);
   z-index: 2;
   top: 0;
 }

 .line-orange .line-text {
   background: linear-gradient(45deg, #2f24f785, #2d24f7);
   line-height: 80px;
 }

 .line-green {
   background: linear-gradient(45deg, #17171781, #171717);
   height: 80px;
   line-height: 80px;
   z-index: 1;
   transform: rotate(3deg) translate(-50px, 60px);
   top: 100px;
 }

 .line-green .line-text {
   background: linear-gradient(45deg, #17171781, #171717);
   line-height: 80px;
 }

 /* Add reverse animation for green line */
 .line-green .line-text {
   animation: animate-reverse 280s -140s linear infinite;
 }

 .star-icon {
   color: #4ade80;
   margin: 0 30px;
   font-size: 24px;
 }

 .diamond-icon {
   color: #ef4444;
   margin: 0 30px;
   font-size: 24px;
 }

 @keyframes animate-first-screen {
   0% {
     transform: translateX(100%);
   }

   100% {
     transform: translateX(-100%);
   }
 }

 @keyframes animate-second-screen {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-200%);
   }
 }

 /* New reverse animation */
 @keyframes animate-reverse {
   0% {
     transform: translateX(-200%);
   }

   100% {
     transform: translateX(0%);
   }
 }

 @media (max-width: 768px) {
   .promo-lines {
     min-height: 260px;
   }

   .line-orange {
     height: 60px;
     line-height: 60px;
   }

   .line-green {
     height: 60px;
     line-height: 60px;
     top: 80px;
   }

   .line-text {
     font-size: 28px;
     line-height: 60px;
   }

   .line-orange .line-text {
     line-height: 60px;
   }

   .line-green .line-text {
     line-height: 60px;
   }
 }
 .tech-tab {
   position: relative;
   cursor: pointer;
   padding: 12px 24px;
   border-bottom: 2px solid transparent;
   transition: all 0.3s ease;
 }

 .tech-tab.active {
   border-bottom-color: #2d24f7;
   color: #2d24f7;
 }

 .tech-tab:hover {
   color: #2d24f7;
 }

 .tech-icon {
   transition: transform 0.3s ease;
 }

 .tech-icon:hover {
   transform: translateY(-4px);
 }

 .gradient-bg {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }
 .services-read-btn {
   background: transparent;
   border: 2px solid #2d24f7;
   color: #2d24f7;
   transition: all 0.3s ease;
   border-radius: 50px;
   padding: 12px 24px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }

 .services-read-btn:hover {
   background: #2d24f7;
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(54, 53, 53, 0.3);
 }

 .about-cta-icon {
   width: 24px;
   height: 24px;
   background: #2d24f7;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   transition: all 0.3s ease;
 }

 .services-read-btn:hover .about-cta-icon {
   background: white;
   color: #2d24f7;
   transform: translateX(4px);
 }
 
 
 div#contactFormMain input[type=submit] {
    cursor: pointer;
}
