.navbar .form-control:focus {
 box-shadow: none;
}
.nav-link {
font-size: 16px;
}
.banner-ratio {
aspect-ratio: 2.94 / 1; 
width: 100%;     
}
.promo-section h2 { 
font-size: 1.5rem; 
}
.promo-slide {
width: 100%;
height: auto;        
min-height: 100px; 
object-fit: contain;
/* display: block; */
}
.promo-section h3 {
font-size: 1.5rem;
}
.promo-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    z-index: 10;
    
}
.promo-control.carousel-control-prev {
    left: -10px;
}
.promo-control.carousel-control-next {
    right: -10px;
}
.overflow-auto::-webkit-scrollbar {
display: none;
}
/* /////////////////////////////////////////*/
.trust-section {
    background: #0F6C37; 
    color: #fff;
    padding: 20px 0;
    border-radius: 6px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.trust-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.trust-image {
    flex: 0 0 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

/* .trust-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 0;
} */
.trust-section::before {
    content: "";
    position: absolute;
    width: 450px; 
    height: 450px;
    /* background: rgba(255, 255, 255, 0.15);  */
    /* background-color: #32B44B; */
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(-30%, -50%); 
    z-index: 1;
}
.trust-image img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    /* transform: rotate(-5deg); */
    /* margin-bottom: -18px; */
}
.trust-image::before {
    display: none; 
}

.trust-text {
    flex: 1;
    padding-bottom: 20px;
    padding-left: 100px;
}

.trust-text h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

.trust-text p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .trust-wrap {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 30px 20px 0 20px;
        gap: 10px;
    }
    .trust-text {
        padding: 0;
        padding-bottom: 30px;
    }
    .trust-text h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .trust-text p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .trust-image {
        margin: 0;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 2;
    }
    .trust-image img {
        max-width: 170px;
        transform: rotate(0);
        margin-bottom: -50px;
    }
    .trust-section::before {
        width: 340px;
        height: 340px;
        left: 50%;
        top: auto;     
        bottom: -80px; 
        transform: translateX(-50%); 
    }
    .trust-section {
         padding-bottom: 20px; 
    }
}


