[data-theme="light"] {
  .my-btn {
    background-color: #1EA1F1;
    border-color: #1EA1F1;
  }
  .my-btn:hover {
    background-color: #1C96E1;
    border-color: #1C96E1;
  }
}

  /* Custom styles for smooth transitions */
        .navbar-transition {
            transition: all 0.3s ease-in-out;
        }
        
        .logo-transition {
            transition: all 0.3s ease-in-out;
        }
        
        /* Mobile menu animation */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }

       /* Logo Scrolling Section Styles */
.logo-scroll-container {
    overflow: hidden;
    position: relative;
    background: #000;
}

.logo-scroll-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    margin: 0 40px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
      opacity: 8; /* subtle fade */ /* makes logos appear white */
      
}

.logo-item:hover {
    filter: none; /* shows original color on hover */
    transform: scale(1.1);
}

.logo-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-item {
        margin: 0 20px;
    }
    
    .logo-item img {
        height: 40px;
    }
}





 /* Enhanced Button Hover Animations */
        .btn-hover-scale {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-hover-scale:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-hover-scale:active {
            transform: scale(0.98);
        }

        .btn-hover-glow {
            transition: all 0.3s ease;
            position: relative;
        }

        .btn-hover-glow:hover {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
        }

        .btn-hover-slide {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-hover-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-hover-slide:hover::before {
            left: 100%;
        }

        .btn-hover-slide:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-hover-bounce {
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .btn-hover-bounce:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-hover-rotate {
            transition: all 0.3s ease;
            position: relative;
        }

        .btn-hover-rotate:hover {
            transform: rotate(2deg) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-hover-pulse {
            transition: all 0.3s ease;
            animation: none;
        }

        .btn-hover-pulse:hover {
            animation: pulse 1s infinite;
            transform: scale(1.05);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }

        .btn-hover-border {
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .btn-hover-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: inherit;
            transition: all 0.3s ease;
        }

        .btn-hover-border:hover::before {
            border-color: currentColor;
            transform: scale(1.05);
        }

        .btn-hover-border:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }










 /* Testimonials Slider Styles */
        .testimonials-container {
            position: relative;
            max-width: 100%;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-slide {
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-nav {
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .testimonial-nav:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .testimonial-nav:active {
            transform: scale(0.95);
        }

        .testimonial-dot {
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: #3b82f6;
            transform: scale(1.2);
        }

        .testimonial-dot:hover {
            background-color: #60a5fa;
        }

        @media (max-width: 768px) {
            .testimonial-nav {
                padding: 0.5rem;
            }
            
            .testimonial-nav svg {
                width: 1.25rem;
                height: 1.25rem;
            }
        }


         /* Scroll Animation Styles for All Sections */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animations for child elements */
        .stagger-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stagger-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays */
        .stagger-delay-1 { transition-delay: 0.1s; }
        .stagger-delay-2 { transition-delay: 0.2s; }
        .stagger-delay-3 { transition-delay: 0.3s; }
        .stagger-delay-4 { transition-delay: 0.4s; }
        .stagger-delay-5 { transition-delay: 0.5s; }
        .stagger-delay-6 { transition-delay: 0.6s; }

        /* Fade in from left */
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-left.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        /* Fade in from right */
        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-right.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        /* Scale animation */
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        /* Rotate in animation */
        .rotate-in {
            opacity: 0;
            transform: rotate(-10deg) scale(0.9);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .rotate-in.animate-in {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

 .hero {
            background: #fff;
            text-align: center;
            padding: 4rem 2rem;
        }
        
        
        
        .avatar-group {
            display: inline-flex;
            align-items: center;
            margin: 0 0.5rem;
        }
        
        .avatar {
            width: clamp(48px, 5vw, 80px);
            height: clamp(48px, 5vw, 80px);
            border-radius: 50%;
            background: #ddd;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(56px, 2vw, 24px);
            margin-left: -8px;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .avatar-small {
            width: clamp(32px, 3vw, 48px);
            height: clamp(32px, 3vw, 48px);
            font-size: clamp(12px, 1.5vw, 16px);
            border: 1px solid #eee;
            background: #f0f0f0;
        }


         @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
      }
      .floating { animation: float 6s ease-in-out infinite; }

      /* Hide scrollbar but still allow scroll - image animation */
 /* Smooth zoom on hover */
   /* Slider container settings */
/* Container setup */
.image-block {
  position: relative;
  overflow: hidden;
}

  .slider-container::-webkit-scrollbar {
            display: none;
        }

        .slider-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

/* Image zoom effect */
.image-item {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-block:hover .image-item {
  transform: scale(1.2); /* Zoom image only */
}

/* Overlay fixed in place */
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.image-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .5rem;
}
.image-overlay p {
  font-size: 1.1rem;
  line-height: 1.4;
}
  