
    .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
    .swiper {
        width: 100%;
    }
    .swiper-slide {
        display: flex;
        justify-content: center;
        height: auto;
    }
    .swiper-button-prev {
        right: 45px;
        left: auto;
    }
    .swiper-button-next {
        right: 0;
    }
    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        top: -26px;
        color: #ffffff;
        background: #353535;
        width: 35px;
        height: 35px;
        transition: 0.2s;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none;
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        transform: scale(1.1);
    }
    .swiper-button-next svg,
    .swiper-button-prev svg {
        width: 9px;
    }
    .swiper-pagination-bullet {
        background: #6b7280;
    }
    .swiper-pagination-bullet-active {
        background: #3b82f6;
    }
    .form-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(82, 82, 82, 0.5);
        z-index: 1000;
    }
    .form-modal--content {
        background: #fff;
        max-width: 500px;
        margin: 50px auto;
        padding: 20px;
        position: relative;
        border-radius: 8px;
    }
    .icon-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .reviews-item {
        background: #fff;
        padding: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        height: auto;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .item-reviews-top {
        display: flex;
        align-items: center;
    }
    .avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }
    .client-info {
        font-size: 16px;
    }
    .meta-review {
        display: flex;
        justify-content: space-between;
        margin: 10px 0;
    }
    .testimonial-body {
        font-size: 14px;
    }
    .service, .result {
        margin: 5px 0;
    }
    .view-case {
        color: #3b82f6;
        text-decoration: none;
        font-weight: bold;
    }
    .view-case:hover {
        text-decoration: underline;
    }
    .defoult-btn-rev {
        background: #3b82f6;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.2s;
    }
    .defoult-btn-rev:hover {
        background: #2563eb;
    }
    .file-input-label {
        background: #e5e7eb;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }
    .file-name {
        margin-left: 10px;
        font-size: 12px;
    }
    .rating-input .stars label {
        font-size: 20px;
        cursor: pointer;
        color: #d1d5db;
    }
    .rating-input .stars input:checked ~ label,
    .rating-input .stars label:hover,
    .rating-input .stars label:hover ~ label {
        color: #f59e0b;
    }
    .success-message {
        color: #15803d;
        display: none;
        font-size: 14px;
    }
    .error-message {
        color: #dc2626;
        display: none;
        font-size: 14px;
    }
    