/* Custom styles that extend Tailwind */
body {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #F0B90B;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d8a40a;
}

/* Animation for cards */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

/* Gradient text for special elements */
.gradient-text {
    background-image: linear-gradient(to right, #F0B90B, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pulse animation for live chat button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 185, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 185, 11, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}