.Testimonials_Only_Hc_list_wrapper {
    background-color: #d4b895;
    font-family: 'Poppins', sans-serif;
    padding: 100px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.Testimonials_Only_Hc_list_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.Testimonials_Only_Hc_list_header {
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.Testimonials_Only_Hc_list_header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.Testimonials_Only_Hc_list_header p {
    font-size: clamp(14px, 2vw, 18px);
    margin: 0;
    font-weight: 400;
}

.Testimonials_Only_Hc_list_swiper {
    width: 100%;
    padding: 10px 0;
}

.Testimonials_Only_Hc_list_card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    height: 100%;
}

.Testimonials_Only_Hc_list_date {
    font-size: 14px;
    color: #222222;
    font-weight: 400;
}

.Testimonials_Only_Hc_list_title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.Testimonials_Only_Hc_list_title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.Testimonials_Only_Hc_list_title a:hover {
    color: #c93b22;
}

.Testimonials_Only_Hc_list_desc {
    font-size: 15px;
    color: #111111;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.Testimonials_Only_Hc_list_link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    display: inline-block;
    transition: color 0.3s ease;
}

.Testimonials_Only_Hc_list_link:hover {
    text-decoration: underline;
    color: #c93b22;
}

@keyframes Testimonials_Only_Hc_list_float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.Testimonials_Only_Hc_list_particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.Testimonials_Only_Hc_list_p1 {
   top: -7%;
    right: 0%;
    width: 200px;
    animation: Testimonials_Only_Hc_list_float 5s ease-in-out infinite;
}

.Testimonials_Only_Hc_list_p2 {
    top: 2%;
    right: 5%;
    width: 25px;
    animation: Testimonials_Only_Hc_list_float 4s ease-in-out infinite 1s;
}

.Testimonials_Only_Hc_list_p3 {
    top: 20%;
    right: 3%;
    width: 20px;
    animation: Testimonials_Only_Hc_list_float 4.5s ease-in-out infinite 2s;
}

.Testimonials_Only_Hc_list_p4 {
    top: 45%;
    right: 2%;
    width: 45px;
    animation: Testimonials_Only_Hc_list_float 6s ease-in-out infinite 0.5s;
}

.Testimonials_Only_Hc_list_p5 {
    bottom: 10%;
    left: 8%;
    width: 60px;
    animation: Testimonials_Only_Hc_list_float 5.5s ease-in-out infinite 1.5s;
}

.Testimonials_Only_Hc_list_image {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.Testimonials_Only_Hc_list_image img {
    width: 100%;
    height: 250px; /* Adjust as needed */
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.Testimonials_Only_Hc_list_card:hover .Testimonials_Only_Hc_list_image img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .Testimonials_Only_Hc_list_wrapper {
        padding: 60px 20px;
    }
    .Testimonials_Only_Hc_list_header {
        margin-bottom: 40px;
    }
    .Testimonials_Only_Hc_list_p1 { top: -2%; right: -5%; width: 100px; }
    .Testimonials_Only_Hc_list_p4 { display: none; }
    .Testimonials_Only_Hc_list_p5 { bottom: 2%; left: 2%; width: 40px; }
}