/* Custom Styles */
body {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    background-color: #0f172a; /* bg-slate-900 */
    color: #f1f5f9; /* text-slate-100 */
}
.cyber-glow {
    box-shadow: 0 0 5px rgba(29, 78, 216, 0.8), 0 0 10px rgba(29, 78, 216, 0.6), 0 0 15px rgba(29, 78, 216, 0.4);
}
.cyber-glow-soft {
     box-shadow: 0 0 15px rgba(29, 78, 216, 0.3);
}
.glass-card {
    background: rgba(22, 36, 78, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 78, 216, 0.3);
}

}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
/* Client Showcase Marquee */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee {
    display: flex;
    width: 200%;
    animation: scroll 30s linear infinite;
}
.marquee-group {
    display: flex;
    align-items: center;
    width: 50%;
}
.client-logo {
    flex-shrink: 0;
    width: 150px;
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}
.client-logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* === Tab Button Styles (Updated) === */
.tab-btn {
    background-color: transparent;
    color: #94a3b8; /* text-slate-400 */
    border: 2px solid #334155; /* border-slate-700 */
    transition: all 0.3s ease;
}
.tab-btn:hover {
    border-color: #2563eb; /* border-blue-600 */
    color: #fff;
}

.tab-active {
    border-color: #2563eb; /* border-blue-600 */
    color: #60a5fa; /* text-blue-400 */
    background-color: rgba(37, 99, 235, 0.1); /* Subtle blue glow */
    box-shadow: 0 0 15px rgba(29, 78, 216, 0.3);
}
/* Custom styles for the review slider navigation */
        .testimonial-slider .swiper-button-next,
        .testimonial-slider .swiper-button-prev {
            color: #fff;
            background-color: rgba(30, 41, 59, 0.5);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        .testimonial-slider .swiper-button-next:hover,
        .testimonial-slider .swiper-button-prev:hover {
            background-color: rgba(59, 130, 246, 0.7);
        }
        .testimonial-slider .swiper-button-next:after,
        .testimonial-slider .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }
        .testimonial-slider .swiper-pagination-bullet {
            background-color: rgba(255, 255, 255, 0.5);
            width: 10px;
            height: 10px;
            opacity: 1;
            transition: background-color 0.3s ease;
        }
        .testimonial-slider .swiper-pagination-bullet-active {
            background-color: #3B82F6;
        }