/* Hero Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideGradient {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes tick {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

/* State Card Hover Effects */
.state-card {
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.2) !important;
}

.config-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px !important;
        min-height: 50vh !important;
    }
    
    .header-icon div {
        width: 80px !important;
        height: 80px !important;
    }
    
    .header-icon i {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .test-info-container .d-inline-flex {
        flex-direction: column;
        text-align: center;
        padding: 20px !important;
    }
    
    .test-details {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 60px !important;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
}