/* 
 * OVERSEASCLL Custom Styles
 * Extended styling beyond Tailwind utilities
 */

/* Hide scrollbar for clean look but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #0073AB; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #005A87; 
}

/* Base text selection */
::selection {
    background-color: #0073AB;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }

/* Custom Hero Section Image Overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card hover effect */
.hover-card-effect {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-card-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(221, 0, 0, 0.1);
}

/* Progress bar animation */
@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

.progress-bar-animate {
    animation: loadProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
