/* Benefits Section */
.cloud-benefits {
    background-color: #12122a;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #1e1e3f;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(6, 182, 212, 0.05));
    z-index: -1;
}

.benefit-icon {
    font-size: 2.8rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    color: #e2e8f0;
    line-height: 1.6;
    opacity: 0.8;
    font-family: 'Exo 2', sans-serif;
}

/* Section Title Styles */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.8;
    font-family: 'Exo 2', sans-serif;
}

/* Container */
.container {
    width: 92%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
}
