* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.c-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
}

.inner-wrapper {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
}

.social-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1c1c3d;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #1c1c3d;
    color: #fff;
}

.carousel-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    padding: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 30px;
    width: calc(50% - 15px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    gap: 30px;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-img {
    width: 160px !important;
    height: 200px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    font-variant-numeric: lining-nums proportional-nums;
    color: #333;
    margin-bottom: 15px;
}

.person-info {
    margin-top: 40px;
}

.person-name {
    font-size: 18px;
    font-weight: bold;
}

.person-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    font-variant-numeric: lining-nums proportional-nums;
    color: #666;
    margin-top: 2px;
}

.indicators {
    display: none !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #4a90e2;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 40px;
    z-index: 2;
    display: none;
}

.carousel-button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.carousel-button:hover {
    background: #f2f2f2;
}

.carousel-button svg {
    width: 20px;
    height: 20px;
}

.left-button {
    margin-left: -20px;
}

.right-button {
    margin-right: -20px;
}

.desktop-slide {
    display: flex;
    gap: 30px;
    width: 100%;
}

.mobile-slide {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .desktop-slide {
        display: none;
    }

    .c-wrapper {
        padding: 0px;
    }

    .mobile-slide {
        display: block;
        width: 100%;
    }

    .carousel-slide {
        padding: 10px;
    }

    .carousel-container {
        background-color: #fff;
        box-shadow: 10px 10px 20px 0px #F3F7FF;
        border-radius: 30px;
        margin: 18px;
    }

    .testimonial-mobile-card {
        padding: 20px;
    }

    .mobile-header-content-wrapper {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 15px;
    }

    .mobile-header-content-wrapper .img img {
        max-width: 110px !important;
        max-height: 120px !important;
        border-radius: 20px !important;
        object-fit: cover !important;
    }

    .mobile-header-content-wrapper .person-info {
        margin-top: 0;
    }

    .left-arrow, .right-arrow {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 970px) {
    .testimonial-card {
        display: block !important;
    }

    .testimonial-header {
        justify-content: center;
    }

    .testimonial-text {
        text-align: justify;
    }

    .person-info {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}