/* Custom Styles for Over The Top Services */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF7F50;
}

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

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

/* Gradient Text Helper */
.text-gradient {
    background: linear-gradient(to right, #FF7F50, #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Aspect Ratio Utility */
.aspect-[4/5] {
    aspect-ratio: 4 / 5;
}
