@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.sob-banner {
    position: relative;
    width: 100%;
    padding: 45px 0;/* Add margin to allow overflow items space to show */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sob-container {
    position: relative;
    width: 100%;
    padding: 0 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sob-content {
    text-align: center;
    z-index: 2;
}

.sob-heading {
    font-family: 'Rubik', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #2B00FF;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.sob-subheading {
    font-family: 'Rubik', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #2B00FF;
    margin: 0;
    line-height: 1.2;
}

.sob-floating {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.sob-left {
    left: 20px;
    top: 50%;
}

.sob-right {
    right: 20px;
    top: 50%;
}

.sob-floating img {
    width: 100%;
    height: auto;
    display: block;
}

/* Specific positioning to match image overflow */
.sob-left {
    top: -110px;
    left: 2%;
}

.sob-right {
    top: -180px;    
    right: 2%;
    width: 380px;
}

.sob-floating img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@media (max-width: 1200px) {
    .sob-left {
        width: 200px;
        top: -40px;
    }
    .sob-right {
        width: 250px;
        top: -70px;
    }
}

@media (max-width: 768px) {
    .sob-banner {
        padding: 60px 0;
    }
    .sob-heading {
        font-size: 22px;
    }
    .sob-subheading {
        font-size: 18px;
    }
    .sob-left {
        width: 90px;
        top: -50px;
        left: 10px;
    }
    .sob-right {
        width: 120px;
        top: auto;
        bottom: -60px;
        right: 10px;
    }
}
