/* Swiper container */

body {
    overflow-x: hidden;
}
.home .cts-location {
    bottom: 7px !important;
    left: 63px !important;
}
.home .cts-meta{
	margin-bottom: 22px;
}

.cts-swiper {
    padding: 40px 10px;
    overflow: hidden; /* Prevent unwanted scrollbar */
    height: auto;
    max-width: 100%;
}

/* Each slide */
.cts-slide {
    max-width: 100%;
    box-sizing: border-box;
}

/* Testimonial content box */
.cts-content {
    background: #EEEFFF;
    padding: 30px;
    position: relative;
    border-radius: 0;
    box-sizing: border-box;
}

/* Triangle below content */
.cts-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 14%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #EEEFFF;
}

/* Author section (image + name) */
.cts-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #282C80;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

/* Author image */
.cts-img img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-right: 12px !important;
}

/* Author name styling */
.cts-meta .cts-name {
    color: #2c2c8c;
    font-weight: bold;
}

/* Paragraph text */
.cts-content p {
    font-family: Cerebri !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin: 0 0 10px;
}

/* Toggle button (Read More / Less) */
.cts-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #3A2C25;
    font-family: 'Cerebri Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}

button:focus,
button:hover {
    background: unset !important;
    color: #3A2C25 !important;
    text-decoration: none;
}

/* Pagination bullets styled as horizontal bars */
.swiper-pagination-bullet {
    width: 30px !important;
    height: 8px !important;
    border-radius: 0 !important;
    background-color: #d5d2d0 !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #FA7268 !important;
}

.swiper-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 25px !important;
    position:unset !important;
}

