.experience-section {
    width: 100%;
    background: #f8f9fb;
}

.experience-wrapper {
    display: flex;
    min-height: 260px;
}

/* LEFT SIDE */
.experience-left {
    flex: 1;
    position: relative;
    background: 
        linear-gradient(#152943d1,#152943d5),
        url("/images/hand\ \(1\).jpg"); /* 👈 replace image */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
}



.overlay-content p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 100%;
}

/* RIGHT SIDE */
.experience-right {
    flex: 1;
    background: #eef0f2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.experience-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.read-more {
    color: #8c5f10;
    font-weight: 500;
    text-decoration: underline;
    width: fit-content;
}


.trust-section {
    position: relative;
    padding: 5rem 0;
}

.trust-heading {
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.trust-description {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* Images Grid Layout */
.images-grid {
    position: relative;
}

.image-row-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.image-box-large {
    width: 60%;
    aspect-ratio: 1;
    background-color: #d3d3d3;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-box-small {
    width: 38%;
    aspect-ratio: 1;
    background-color: #d3d3d3;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-row-bottom {
    display: flex;
    justify-content: center;
}

.image-box-medium {
    width: 60%;
    aspect-ratio: 1.2;
    background-color: #d3d3d3;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Trust List */
.trust-list-wrapper {
    padding-left: 2rem;
    padding-top: 0;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Button */
.button-wrapper {
    padding-left: 2.5rem;
}



/* Responsive Design */
@media (max-width: 991px) {
    .trust-heading {
        font-size: 2rem;
    }
    
    .images-grid {
        margin-bottom: 3rem;
    }
    
    .trust-list-wrapper {
        padding-left: 0;
    }
    
    .button-wrapper {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .trust-heading {
        font-size: 1.75rem;
    }
    
    .trust-description {
        font-size: 0.95rem;
    }
    
    .image-box-large,
    .image-box-small,
    .image-box-medium {
        border-radius: 6px;
    }
    
    .trust-item {
        margin-bottom: 1.5rem;
    }
}