/* Cloud Intro Section Styles */
.cloud-intro {
    background-color: #0a0a18;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cloud-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.cloud-intro::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

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

.intro-content p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    font-family: 'Exo 2', sans-serif;
}

.intro-content strong {
    color: #f8fafc;
    font-weight: 600;
}

/* Mobile Responsive for Cloud Intro Section */
@media (max-width: 992px) {
    .intro-container {
        grid-template-columns: 1fr; /* Stack to single column */
        gap: 2rem; /* Reduce gap for mobile */
    }
    
    .intro-image {
        height: 350px; /* Adjust height for mobile */
        order: -1; /* Optional: move image above text on mobile */
    }
    
    .intro-content h2 {
        font-size: 2rem; /* Adjust font size for mobile */
    }
}

@media (max-width: 768px) {
    .cloud-intro {
        padding: 80px 0; /* Reduce padding for mobile */
    }
    
    .intro-image {
        height: 300px; /* Further adjust height for smaller screens */
    }
    
    .intro-content h2 {
        font-size: 1.8rem; /* Further adjust font size */
    }
    
    .intro-content p {
        font-size: 1rem; /* Adjust paragraph font size */
    }
}
