* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.testimonial-hero {
  width: 100%;
  background: #ffffff;
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.testimonial-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonial-content p {
  font-size: 16px;
  color: #555;
}

.testimonial-content span {
  color: #000;
}

/* Right Image */
.testimonial-image img {
  max-width: 320px;
  width: 100%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-content h1 {
    font-size: 36px;
  }

  .testimonial-image img {
    max-width: 260px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-content h1 {
    font-size: 28px;
  }

  .testimonial-content p {
    font-size: 14px;
  }
}


/* Rating Box Section */
.rating-box {
    text-align: center;
    margin-top: -60px;
}

.rating-card {
    width: 260px;
    height: 260px;
    margin: auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 25px;
}

.rating-card img {
    width: 100%;
}

/* Rating Row */
.rating-row {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.rating {
    background: white;
    padding: 12px 25px;
    border-radius: 40px;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
body {
    background: #f4f4f4;
    font-family: Arial, sans-serif;
}

/* Main Card */
.testimonial-card {
    max-width: 900px;
    background: linear-gradient(to right, #dbf5f5, #ffffff);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin: 20px auto;
}

/* Left section layout */
.left-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Avatar shape */
.avatar {
    width: 70px;
    height: 110px;
    object-fit: cover;
    border-radius: 50px;
}

/* Details */
.details h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stars {
    color: gold;
    font-size: 20px;
    margin-bottom: 8px;
}

.date {
    color: #666;
    margin-bottom: 12px;
}

.text {
    font-size: 18px;
    line-height: 1.4;
}

/* Right side image */
.right-section .side-img {
    width: 180px;
    height: auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }
    .right-section .side-img {
        width: 100%;
        max-width: 250px;
    }
}
