.client-two-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.client-two-wrapper img {
    max-width: 43px;
    height: auto;
}
@media (max-width: 768px) {
    .client-two-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

   /*.gallery-item {
        padding: 3px;
    }

    .row.no-gutters {
        margin-left: -1px;
        margin-right: -1px;
    }

       .rts-business-solution .row {
        display: flex;
        align-items: center; 
        justify-content: center; 
    }

    .rts-business-solution-right .thumbnail {
        text-align: center;
        width: 100%; 
    }

    .rts-business-solution-right .thumbnail img {
        max-width: 100%; 
        height: auto;
        display: block;
        margin: 0 auto; 
    }

    .sub{

        color: #EE3559;
    }*/

    /* Section Background */
.rts-business-case.business-case-bg-2 {
    background-color: #1d5e5b; /* very light background for contrast */
    padding: 60px 0;
}

/* Title Section */
.title-area.business-case .sub {
    font-size: 18px;
    font-weight: 600;
    color: #1d5e5b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-area.business-case .title {
    font-size: 32px;
    color: #000;
    margin-top: 10px;
}

/* Gallery Grid Items */
.gallery-item {
    padding: 15px;
}

/* Product Card Style */
.portfolio-wrapper {
    background-color: #ffffff;
    border: 5px solid #6dc5ac; /* border using your brand color */
    /*border-radius: 12px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 10px;
}

.portfolio-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(29, 94, 91, 0.15);
}

/* Product Image */
.portfolio-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height */
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: cover; /* Optional: maintain aspect ratio while filling */
}

.portfolio-wrapper:hover img {
    transform: scale(1.02);
}

/* View More Button */
.rts-btn.btn-primary {
    background-color: #1d5e5b;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.rts-btn.btn-primary:hover {
    background-color: #144846;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .title-area.business-case .title {
        font-size: 24px;
    }

    .title-area.business-case .sub {
        font-size: 16px;
    }

    .gallery-item {
        padding: 10px;
    }

    .portfolio-wrapper {
        padding: 8px;
    }
}

.custom-about-image-wrapper {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.custom-about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid #1d5e5b;
    transition: transform 0.3s ease;
}

.custom-about-image:hover {
    transform: scale(1.03);
}

@media only screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.custom-about-style {
    padding: 10px;
    background: linear-gradient(135deg, #F88630 0%, #3d9591 100%);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-about-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.styled-about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 4px solid #ffffff;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.styled-about-img:hover {
    transform: scale(1.03);
}


/* Card Styling with Gradient and Shadow */
.custom-gallery-wrapper2 {
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F88630 0%, #3d9591 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.custom-gallery-wrapper2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.custom-gallery-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 4px solid #ffffff;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-gallery-img:hover {
    transform: scale(1.03);
}



