/* Main container for the Our Strength widget */
.our-strength-section {
    
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 65px;
    padding: 0;
}

/* Left side Swiper slider */
.our-strength-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 66%;
    margin: 0 0 0 -20px;
}

.our-strength-slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    max-width: 704px !important;
    object-fit: contain;
}

.swiper-wrapper {
    display: flex;
    margin-left: -10px !important;!i;!;
}

.swiper-slide {
    max-width: 704.62px;
 }

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

/* Right side text and navigation */
.our-strength-text {
    display: flex;
    position: relative;
    max-width: 558.14px;
    width: 100%;
    flex-direction: column;
    padding-right: 100px;
}

.text-content {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
    color: #DBE1D2;
}

.swiper-navigation {
    display: flex;
    gap: 29px;
    margin: 0;
    position: relative;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
}

.swiper-button-prev,
.swiper-button-next {
    display: inline-flex;
    width: 57px;
    height: 57px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #c49b00;
    color: #000;
}


.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.swiper-button-next:after {
    display: none;
}

.swiper-button-prev {
    background-image: url("/wp-content/uploads/2024/12/left.svg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.swiper-button-next {
    background-image: url("/wp-content/uploads/2024/12/right.svg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.headline {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    padding-left: 63px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    position: relative;
    top: 130px;
    right: 80px;
    color: #fff;
    max-width: max-content;
}

.headline::before {
    content: '';
    position: absolute;
    top: 118px;
    right: 0px;
    height: 1px;
    width: 52px;
    background-color: #B97F26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .our-strength-section {
        flex-direction: column;
    }

    .our-strength-slider {
        flex: 1 1 100%;
    }

    .our-strength-text {
        flex: 1 1 100%;
        text-align: center;
    }

    .swiper-navigation {
        justify-content: center;
    }
}