/* Background sections */
.home-bg-1 {
    left: 0;
    background: rgba(255, 105, 180, 0.01);
}

.home-bg-2 {
    left: 25%;
    background: rgba(255, 105, 180, 0.03);
}

.home-bg-3 {
    right: 25%;
    background: rgba(255, 105, 180, 0.05);
}

.home-bg-4 {
    right: 0;
    background: rgba(255, 105, 180, 0.07);
}

.bg-section {
    position: absolute;
    width: 25%;
    min-width: 100px;
    height: 690px;
    top: 0;
}

.home-content {
    position: relative;
    z-index: 10; /* Ensure this is higher than bg-section */
}

.bg-section {
    position: absolute;
    z-index: 1; /* Ensure this is lower than home-content */
}

@media (max-width: 768px) {
    .bg-section {
        width: 50%;
        height: 350px;
    }

    .home-bg-2,
    .home-bg-3 {
        left: 0;
        right: auto;
    }

    .home-bg-3,
    .home-bg-4 {
        left: 50%;
    }
}

.section-2 {
    gap: 64px;
    position: relative;
    background: linear-gradient(
            232.95deg,
            rgba(255, 113, 88, 0.9) 8.53%,
            rgba(253, 43, 123, 0.9) 87.79%
    ),
    url('/static/images/image-2.png') no-repeat center center;
    background-size: cover;
}

.section-4 {
    background: linear-gradient(
            232.95deg,
            rgba(255, 113, 88, 0.4) 8.53%,
            rgba(253, 43, 123, 0.4) 87.79%
    ),
    url('/static/images/bg_feedback_section.png') no-repeat center center;
}

.section-4 .feedback_item {
    min-height: 500px;
}

.feedback_text-gray {
    color: #444444;
}

.feature_item {
    min-height: 400px;
    border: 1px solid #F94E8F !important
}

.feedback_text-gray {
    color: #444444;
}

.section-5 .home_circle {
    width: 80px;
    height: 80px;
    background: #fd2b7b1a;
    position: absolute;
    border-radius: 50px;
}

.section-5 .home_circle.home_circle-1 {
    left: 45%;
    bottom: 5%;
}

.section-5 .home_circle.home_circle-2 {
    left: 70%;
    bottom: 5%;
}

.section-5 .home_circle.home_circle-3 {
    left: 60%;
    bottom: 5%;
}

.section-5 .home_circle.home_circle-4 {
    left: 50%;
    bottom: 5%;
}

.home-content {
    max-width: 1500px !important;
}