/* Container */
.modern-slide-banner {
    display: flex;
    flex-direction: column; /* content below images */
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #faf3f0 0%, #fff9fb 50%, #fef4f7 100%);
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Images side by side */
.banner-image-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between images */
    width: 100%;
    flex-wrap: wrap; /* allow wrapping on small screens */
}

.banner-image-container .image-container {
    flex: 1 1 45%; /* each image takes 45% width */
    max-width: 500px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image-container .image-container:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.banner-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.image-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content below images */
.banner-content {
    max-width: 700px;
    text-align: center;
}

.banner-heading {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a30043, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.banner-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-image-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .banner-image-container .image-container {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .banner-heading {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1.05rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-heading {
        font-size: 1.7rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
