@import "hero.css";
@import "why-us.css";
@import "testimonials.css";
@import "value-proposition.css";
@import "pricing.css";
@import "our-story.css";
@import "community.css";

.blue-gradient-background-right {
    position: relative; /* Ensure child elements can be positioned absolutely */
    background: linear-gradient(to right, #216E83, #0F1D2E); /* Background gradient */
    padding: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); /* Bottom shadow */
    overflow: hidden;
}

/* Position the SVG as a background image */
.svg-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5; /* Adjust opacity as needed */
}


.blue-shadow-rectangle {
    height: 20px;
    background-color: #5B91A1;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-inline: 32px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); /* Bottom-only shadow */
}

.grey-background-gradient-eclipse-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #EAEFF3, #f7f7f7);
    border-top-left-radius: 150% 5%; /* Adjust to control the curvature */
    border-top-right-radius: 150% 5%; /* Adjust to control the curvature */
    z-index: -1; /* Places it behind other content */
}

@media (min-width: 992px) {
    .grey-background-gradient-eclipse-top {
        border-top-left-radius: 150% 10%; /* Adjust to control the curvature */
        border-top-right-radius: 150% 10%; /* Adjust to control the curvature */
    }
}




@media (min-width: 576px) {
    .svg-container img {
        left: 20%;
    }
}

@media (min-width: 768px) {
    .blue-gradient-background-right {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .blue-shadow-rectangle {
        height: 30px;
        margin-inline: 64px;
    }

}


