/* Enhanced Cards Section Styles */
.enhanced-cards-section {
    padding: 6rem 0;
  
}

.gradient-text {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.modern-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    margin-bottom: 2rem;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #CE2026;

    transition: height 0.6s ease;
}

.modern-card:hover .card-indicator {
    height: 100%;
}

.hex-icon {
    width: 64px;
    height: 64px;
    background: #CE2026;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.modern-card:hover .hex-icon {
    background: #CE2026;
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.card-title {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Animation classes */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enhanced-cards-section {
        padding: 4rem 0;
    }
    
    .modern-card {
        padding: 1.5rem;
    }
}
