/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Testimonial Card */
.testimonial-card {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    background-color: #fff;
    height: 100%;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

/* Avatar Image */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #0d6efd;
}

/* Swiper adjustments */
.testimonial-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd;
}

/* Star rating style */
.star-rating {
    font-size: 1.2rem;
    color: #ffc107;
}

/* Form Section */
.submit-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 3rem auto 5rem auto;
}

.testimonial-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

