.slide {
  display: none;
}
.slide.active {
  display: flex;
}
.dot {
  transition: all 0.3s ease;
}
.dot.active {
  background-color: #1D4ED8;
  width: 2.5rem;
}

/* Industry Card Animations */
.industry-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.industry-card:hover::before {
  opacity: 1;
}
.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}
.industry-content {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.industry-card:hover .industry-content {
  color: white;
}
.industry-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.industry-card:hover .industry-title {
  color: white;
}
.industry-card:hover .industry-description {
  color: rgba(255, 255, 255, 0.9);
}
.industry-card:hover .industry-link {
  color: white;
  opacity: 1;
  transform: translateX(0);
}
.icon-wrapper {
  transition: all 0.4s ease;
}
.industry-link {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
/* Grid Pattern Background */
.grid-pattern {
  background-image:
      linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
      transform: translateY(0px);
  }

  50% {
      transform: translateY(-15px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Stats Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-item {
  animation: countUp 0.6s ease-out forwards;
}
/* Badge Pulse */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}
.pulse-glow {
  animation: pulse-glow 2s infinite;
}
/* ******************** */
.arrow-move {
  transition: transform 0.3s ease;
}
.btn-modern:hover .arrow-move {
  transform: translateX(6px);
}

.price-tag:hover .arrow-move {
  transform: translateX(6px);
}

.link-hover svg {
  transition: transform 0.4s ease;
}

.link-hover:hover svg {
  transform: translateX(6px);
}
.group:hover .flip-icon {
  transform: scaleX(-1);
}
.flip-icon {
  transition: transform 0.5s ease;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #333;
  display: block;
  transition: 0.3s;
  border-radius: 4px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ************** */
@keyframes lineDraw {
  0% {
      stroke-dasharray: 400;
      stroke-dashoffset: 400;
  }

  33% {
      /* First 2s of 6s total → Draw animation */
      stroke-dasharray: 400;
      stroke-dashoffset: 0;
  }

  100% {
      /* Remaining 4s → pause here */
      stroke-dasharray: 400;
      stroke-dashoffset: 0;
  }
}
.svg-animate path {
  animation: lineDraw 6s ease-in-out infinite;
  /* 2s draw + 4s hold */
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #c5c5c5 !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.swiper-pagination-bullet-active {
  width: 30px !important;
  background: #2563eb !important;
  /* blue-600 */
}

/* 14-1-26 */
 /* .gsap-scale-in {
pointer-events: none;
        }
        .gsap-scale-in *{
            pointer-events: none;
        } */