/* General Section Spacing */
.ttm-row {
    padding: 60px 0;
    position: relative;
    background-color: #f9f9f9;
}

.section-title {
    margin-bottom: 30px;

}

.section- .title-header h3 {
    font-size: 40px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title .title-header .title {
    font-size: 35px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.section-title .title-desc p {
    font-size: 20px;
    color: #555;
}

/* Tabs */
.ttm-tabs {
    margin-top: 25px;
}

.ttm-tabs ul.tabs {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 25px;
    border-bottom: 2px solid #eee;
}

.ttm-tabs ul.tabs li.tab {
    padding: 10px 20px;
    background: #eee;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
    transition: all 0.3s;
}

.ttm-tabs ul.tabs li.tab.active {
    background: #007BFF;
    color: white;
}

.ttm-tabs .content-tab {
    border: 1px solid #eee;
    border-top: none;
    padding: 20px;
    background-color: #fff;
}

.ttm-tabs-desc p {
    margin-bottom: 0;
}

.span1 {
    color: #007BFF;
    font-weight: 600;
}

/* Image Styling */
.ttm_single_image-wrapper {
    position: relative;
}

.ttm_single_image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.imagestyle-one {
    margin-top: 30px;
}

.ttm_single_image_text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(218, 224, 230, 0.85);
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 1.4;
    max-width: 90%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .res-991-padding_lr15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .res-991-padding_top30 {
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 22px;
    }

    .ttm-tabs ul.tabs {
        flex-direction: column;
    }
}

/* Core Slick Fixes */
/* Slick Slider Container */
.slick_slider {
    margin: 0 auto;
    width: 100%;
}

/* Fix the slick track to be horizontal */
.slick-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/* Individual slide */
.slick-slide {
    height: auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

/* Client Box */
.client-box {
    background: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    /* remove border after testing */
    width: 100%;
    box-sizing: border-box;
}

/* Partner image inside the box */
.partner-img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    display: inline-block;
}

/* Thumbnail wrapper (optional styling) */
.client-thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-carousel {
    width: 100%;
    /* or set a fixed value like 1200px */
    max-width: 1200px;
    height: 10px;
    margin: 0 auto;
    /* centers it */
}

.client-box {
    width: 150px;
    /* adjust as needed */
    display: inline-block;
    margin: 0px;
}

.partner-img {
    width: 100px;
    /* or 100% to make it responsive */
    height: auto;
}

.btn-dark-green {
    background-color: rgb(5, 92, 73) !important;
    /* dark green */
    border-color: rgb(5, 92, 73) !important;
    color: #fff;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 30px;
    transition: all 0.3s ease;
}