/* VishnuAds Pro Custom CSS System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #030f26;
}
::-webkit-scrollbar-thumb {
    background: #00E5FF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFB800;
}

/* Utility Animations */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-pulse-glow {
    animation: pulseGlow 6s infinite ease-in-out;
}

/* Service Tab active indicator */
.service-tab-btn.active {
    background-color: #00E5FF !important;
    color: #030f26 !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
