/* Custom Styles for Smooth Rides */

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll */
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(to right, #0d9488, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Image Overlay Gradient */
.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}
