.feedback-section {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto;
}


.feedback-section .left {
  flex: 1 1 50%;
  padding: 2rem;
}

.feedback-section .left h2 {
  font-size: 1.5rem;
  color: #3b2355;
}
input[type="file"] {
     flex: 1;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.input-red::placeholder {
  color: red;
}

.feedback-section .left h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b2355;
  margin: 1rem 0;
}

.google-review {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.google-review img {
  width: 40px;
  height: 40px;
}

.google-review .rating {
  font-size: 1.5rem;
  color: gold; /* Change to gold */
  font-weight: 600;
}
.google-score {
  font-weight: bold; /* Makes the text bold */
  font-size: 20px;   /* Increase this value as needed */
}

.google-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #2f1b47;
  color: white;
  border-radius: 2rem;
  text-decoration: none;
}

.feedback-section .right {
  flex: 1 1 50%;
  background: white;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.input-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-row input,
.input-row select {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.full {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #5c4f8c;
  border-radius: 4px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.rating-row {
  margin: 1rem 0;
}

.stars span {
  color: orange;
  font-size: 2rem;
  cursor: pointer;
}

textarea {
  width: 100%;
  height: 100px;
  margin: 1rem 0;
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.submit-btn {
  padding: 0.8rem 2rem;
  background-color: #2f1b47;
  color: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .feedback-section {
    flex-direction: column;
    padding: 1rem;
  }

  .feedback-section .left,
  .feedback-section .right {
    flex: 1 1 100%;
    padding: 1rem;
  }

  .feedback-section .left h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .feedback-section .left h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .google-review {
    flex-direction: column;
    align-items: flex-center;
    text-align: left;
  }

  .google-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input,
  .input-row select {
    width: 100%;
  }

  .stars span {
    font-size: 1.5rem;
  }

  textarea {
    height: 80px;
  }

  .submit-btn {
    width: 100%;
    font-size: 1rem;
  }
}

/* secondsection */
.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 2rem 0;
}

.left-content,
.right-content {
  width: 50%;
  box-sizing: border-box;
}

/* Optional spacing adjustments */
.left-content {
  padding-right: 2rem;
}

.right-content {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.left-content p {
  font-size: 1.1rem;
  color: #444;
}

.testimonial-card {
  display: flex;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  align-items: flex-start;
  gap: 1rem; 
  border: 1px solid #ddd;
  width: 100%;
  max-width: 600px;
  margin: auto;
  flex-wrap: wrap;
  min-height: 200px;
  height: auto;
  overflow: hidden;
}

.client-img {
  width: 80px; 
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid lightcoral;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.testimonial-content h3 {
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-content .date {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

.testimonial-content .stars {
  color: black;
  font-size: 1.3rem;
  margin: 0.3rem 0;
}

.testimonial-content .message {
  margin-top: 0.5rem;
  color: #333;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Responsive styles */
@media (max-width: 1024px) {
  .left-content,
  .right-content {
    width: 100%;
    padding: 1rem 0;
  }

  .testimonial-section {
    flex-direction: column;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
    width: 90%;
    align-items: center;
  }

  .testimonial-content {
    text-align: center;
  }

  .top-row {
    flex-direction: column;
    gap: 0.3rem;
  }

  .testimonial-content h3 {
    font-size: 1rem;
  }

  .testimonial-content .stars {
    font-size: 1.1rem;
  }

  .client-img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    max-width: 95%; 
    align-items: center;
  }

  .testimonial-content {
    text-align: center;
  }

  .testimonial-content .message {
    font-size: 0.95rem;
  }

  .left-content h2 {
    font-size: 1.3rem;
    text-align: center;
    padding: 0 0.5rem;
  }

  .left-content p {
    font-size: 1rem;
    text-align: center;
    padding: 0 0.5rem;
  }
}

/* nnnnn */
.delhi-section {
  padding: 40px 20px;
  text-align: center;
}

.delhi-heading {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

.delhi-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.delhi-card {
  background-color: #fef8f8;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 25px 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 380px; /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.delhi-card:hover {
  transform: translateY(-5px);
}

.delhi-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #000;
  margin-bottom: 15px;
}

.delhi-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.delhi-company {
  font-size: 14px;
  color: #666;
  margin: 5px 0 10px;
}

.delhi-description {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines */
  -webkit-box-orient: vertical;
}

.delhi-stars {
  font-size: 14px;
  color: #2196f3;
}

/* Responsive */
@media (max-width: 768px) {
  .delhi-heading {
    font-size: 36px;
  }

  .delhi-card {
    width: 90%;
  }
}