/* Additional Hero Slider Styles */

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: white;
}

.hero-card i {
    font-size: 40px;
    color: var(--primary-teal);
    margin-bottom: 12px;
    display: block;
}

.hero-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.hero-logo-wrapper {
    text-align: center;
    margin-top: 20px;
}

.hero-logo-large {
    max-width: 300px;
    opacity: 0.4;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
    animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-card-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-card {
        padding: 20px 15px;
    }

    .hero-card i {
        font-size: 32px;
    }
}
