/* --- Updated Styles for Cloud Solutions Hero Section --- */

.hero-cloud {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, #101d36 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
}

.hero-cloud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-cloud-text {
    text-align: right;
}

.hero-cloud-text h1 {
    font-size: 3.6em;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-cloud-text .subtitle {
    font-size: 1.4em;
    color: #bbb;
    margin-bottom: 2.5rem;
}

.hero-cloud-image {
    text-align: center; /* Center the image within its column */
}

.hero-cloud-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.4));
    animation: subtle-float 6s ease-in-out infinite;
}

.cloud-services-section {
    padding: 6rem 2rem;

}
.platforms-section{
        background-color: #0e2e6d
        
}
/* Reusing the .expertise-card style for consistency */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.expertise-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.expertise-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-card h5 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.expertise-card span {
    color: #bbb;
    line-height: 1.6;
}


/* Platforms Section */
.platforms-section {
    padding: 5rem 2rem;

}

.platforms-title {
    text-align: center;
    color: #bbb;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platforms-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #ddd;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.platform-logo:hover {
    color: #fff;
    opacity: 1;
    transform: scale(1.1);
}

.platform-logo i {
    font-size: 4rem;
}

.platform-logo span {
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
}
/* Responsive adjustments for the hero */
@media (max-width: 992px) {
    .hero-cloud-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-cloud-text {
        order: 2; /* Text appears below image on mobile */
        text-align: center;
    }
    .hero-cloud-image {
        order: 1; /* Image appears on top */
        margin-bottom: 2rem;
    }
}