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

/* Apply animation to sections */
section {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Delayed animations for elements */
.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0891b2;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0e7490;
}

/* Custom focus styles */
:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}