.testimonial-section {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #000;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.nav-btns {
    position: initial;
    z-index: 10;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    transform: initial;
}

.nav-btns .swiper-button-next,
.nav-btns .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-color: #6a47ed !important;
    color: #6a47ed !important;
    font-size: 18px;
    align-items: center;
    margin: 0;
    position: initial;
    transform: initial;
    cursor: pointer;
    display: flex;
}

.nav-btns .swiper-button-next {
    justify-content: center;
}

.nav-btns .swiper-button-prev {
    justify-content: center;
    top: inherit;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    color: #6a47ed;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.card-content {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #000 50%);
    backdrop-filter: blur(2px);
    color: #fff;
    z-index: 1;
    transition: opacity 0.3s;
}

.card-content.hidden {
    opacity: 0;
    visibility: hidden;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
}

.desc,
.role {
    font-size: 13px;
    color: #ccc;
}

.card-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.role {
    margin: 0;
}

.desc {
    line-height: 1.4;
    margin: 0;
}

.nav-btns .swiper-button-next:hover,
.nav-btns .swiper-button-prev:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 14px;
}

.acf-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.custom-col {
    padding: 0 15px;
    margin-bottom: 30px;
}

.custom-col-12 {
    width: 100%;
}

@media (min-width: 576px) {
    .custom-col-sm-6 {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .custom-col-md-3 {
        width: 25%;
    }
}

@media (min-width: 992px) {
    .custom-col-lg-4 {
        width: 33.333333%;
    }
}