/* /public/assets/css/style.css */

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out 2s infinite;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-panel-dark {
    background: rgba(26, 86, 50, 0.85); /* brand-dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #1a5632 0%, #59a738 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Custom CSS */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background-color: #E5E7EB; /* tailwind gray-200 */
    z-index: 0;
}
.timeline-item:last-child::before {
    display: none;
}

/* Hide scrollbar for stepper */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
