/* Disable all hover/click animations across the site */

/* Remove card hover effects */
.card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
}

.card {
    transition: none !important;
}

/* Remove feature box hover effects */
.feature-box:hover i {
    transform: none !important;
}

.feature-box i {
    transition: none !important;
}

/* Remove feature card hover effects */
.feature-card:hover .feature-icon i {
    transform: none !important;
}

.feature-card .feature-icon i {
    transition: none !important;
}

/* Remove pilot card hover effects */
.pilot-card:hover .pilot-avatar img {
    transform: none !important;
}

.pilot-card .pilot-avatar img {
    transition: none !important;
}

/* Remove any other hover transform effects */
*:hover {
    transform: none !important;
}

/* Disable all transitions globally if needed */
.no-animations * {
    transition: none !important;
    animation: none !important;
}
