/* Hero section fixes */

/* Make the hero features display in a single row */
.hero-features.single-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 30px auto !important;
    max-width: 1200px !important;
}

/* Adjust feature styles for better appearance in a row */
.hero-features.single-row .feature {
    background: rgba(30, 36, 56, 0.7) !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.hero-features.single-row .feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Enhance the feature icons */
.hero-features.single-row .feature-icon {
    font-size: 32px !important;
    margin-bottom: 15px !important;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%) !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.35) !important;
    margin: 0 auto 20px auto !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-features.single-row .feature-icon::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent) !important;
    z-index: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-features.single-row {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-features.single-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
