.cloud-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 80px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
}

.cloud-hero-section-text {
    font-size: 1rem;
    color: var(--gray);
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cloud-why-section {
    text-align: center;
}

.cloud-why-section p {
    font-size: 1rem;
    color: var(--gray);
}

.cloud-why-card {
    position: relative;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cloud-why-card:hover {
    transform: translateY(-10px);
}

.cloud-why-card::before,
.cloud-why-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-radius: 0;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 0;
}

.cloud-why-card::after {
    top: 5px;
    left: 5px;
    border-top: 3px solid var(--secondary);
    border-right: 3px solid var(--secondary);
}


.cloud-why-card:after {
    top: 5px;
    left: 5px;
    border-color: var(--secondary);
}

.cloud-why-card-content {
    position: relative;
    z-index: 1;
}

.cloud-why-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cloud-why-card p {
    font-size: 1rem;
    color: var(--gray);
}

/* offer section */
.cloud-offer-section {
    text-align: center;
}

.cloud-offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s;
}

.cloud-offer-card:hover {
    transform: translateY(-5px);
}

.cloud-offer-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cloud-offer-card p {
    color: var(--gray);
    font-size: 1rem;
}

.card-line-decor {
    width: 100px;
    height: 4px;
    border-radius: 4px;
    position: absolute;
}

.row>.col-lg-4:nth-child(odd) .card-line-decor {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.row > .col-lg-4:nth-child(even) .card-line-decor {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
  }
  

.row>.col-lg-4:nth-child(odd) .cloud-offer-card {
    border-top: 8px solid var(--secondary);
}

.row>.col-lg-4:nth-child(even) .cloud-offer-card {
    border-bottom: 8px solid var(--primary);
}

@media (max-width: 1024px) {
    .cloud-hero-section {
        padding: 40px 20px;
        text-align: start;
    }
}

@media (max-width: 992px) {
    .cloud-hero-section {
        padding: 50px 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cloud-hero-section {
        padding: 30px 15px;
        text-align: center;
    }

}