/* --- CLOUD INFRASTRUCTURE STYLES --- */

.cloud-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: #fff;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-text h1 span { color: #38bdf8; }

/* Dynamic Cloud Animation */
.cloud-network-animation {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-node {
    width: 100px;
    height: 100px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid #38bdf8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
}

.central-node i { font-size: 3rem; color: #38bdf8; }

.orbit-path {
    position: absolute;
    border: 1px dashed rgba(56, 189, 248, 0.2);
    border-radius: 50%;
}

.path-1 { width: 220px; height: 220px; }
.path-2 { width: 320px; height: 320px; }

.satellite {
    position: absolute;
    width: 45px;
    height: 45px;
    background: #0f172a;
    border: 1px solid #38bdf8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.s1 { animation: orbitRotate 8s linear infinite; }
.s2 { animation: orbitRotate 12s linear reverse infinite; }
.s3 { animation: orbitRotate 15s linear infinite; }

@keyframes orbitRotate {
    from { transform: rotate(0deg) translateX(110px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(110px) rotate(-360deg); }
}

.pulse-aura {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-image img { width: 100%; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.f-row { display: flex; gap: 20px; margin-top: 30px; }
.f-row i { font-size: 1.5rem; color: #38bdf8; margin-top: 5px; }
.f-row h4 { margin-bottom: 5px; color: #0f172a; }

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sol-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.sol-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.sol-img img { width: 100%; height: 200px; object-fit: cover; }
.sol-body { padding: 30px; }
.sol-body h3 { font-size: 1.2rem; margin-bottom: 15px; }
.sol-body p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

/* CTA Section */
.cta-inner {
    background: #011b27;
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
}

.btn-white-sky {
    display: inline-block;
    background: #fff;
    color: #38bdf8;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .hero-wrapper, .philosophy-grid, .solutions-grid { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
}