html {
  scroll-behavior: smooth;
}
.btn-bg{
  background-color: blue;
}
/* Slick sldier */
.slick-slide {
      padding: .5rem;
    }

    .slick-center img {
      transform: scale(1.05);
      transition: transform 0.8s;
    }

     /* Previous arrow */
  .slick-prev:before {
    color: black;
    font-size: 30px; /* Optional: resize icon */
    
  }

  /* Next arrow */
  .slick-next:before {
    color: black;
    font-size: 30px; /* Optional */
  }
/* end of slick slider */
.bg-color{
  background-color: antiquewhite;
}
.bg-colour-service{
  background-color: antiquewhite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .animate-marquee {
        animation: none;
        white-space: normal;
    }
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .left-container {
    animation: fadeInLeft 3s ease-out forwards;
  }
  
  .right-container {
    animation: fadeInRight 3s ease-out forwards;
  }
  
  /* Initial state */
  .left-container, .right-container {
    opacity: 0;
  }







  /* Achievements Card Animation */
  @keyframes fadeInPop {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }
    80% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-fade-in-pop {
    animation: fadeInPop 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.animate-icon {
    animation: float 5s ease-in-out infinite;
}

.count-up {
    transition: all 0.2s ease-in-out;
}

/* Staggered animations */
.stats-card:nth-child(1) { animation-delay: 0.2s; }
.stats-card:nth-child(2) { animation-delay: 0.4s; }
.stats-card:nth-child(3) { animation-delay: 0.6s; }
.stats-card:nth-child(4) { animation-delay: 0.8s; }

/* Hover effects */
.transform {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

