/* drhans.css */

/* then continue with .testimonial-container, .image-section, etc. */

 .dr-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f2f5;
  padding: 20px;
  box-sizing: border-box;
}

.dr-testimonial-container {
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  margin: 20px;
}

.dr-testimonial-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c2d56 0%, #0c2d56 100%);
}

.dr-image-section {
  width: 45%;
  min-height: 100%;
  background: linear-gradient(135deg, #0c2d56 0%, #0c2d56 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.dr-image-container {
  flex-shrink: 0;
  position: relative;
}

.dr-doctor-image {
  width: 280px;
  height: 320px;
  border-radius: 15px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.dr-doctor-image:hover {
  transform: scale(1.05);
}

.dr-image-information {
  color: white;
  padding-top: 30px;
  text-align: center;
}

.dr-image-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dr-image-degree {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.9;
}

.dr-image-university {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.dr-image-location {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.dr-image-fmg-badge {
  background: #ffc107;
  color: #0c2d56;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-transform: uppercase;
  border: none;
  margin-top: 10px;
  display: inline-block;
}


.dr-quote-mark {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
}

.dr-content-section {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dr-testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
  margin: 20px 0;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.dr-testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #0c2d56;
  opacity: 0.3;
}

.dr-experience-points {
  margin: 25px 0;
}



.dr-experience-points h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.dr-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #34495e;
}

.dr-point-icon {
  color: #0c2d56;
  margin-right: 10px;
  margin-top: 2px;
  font-weight: bold;
}

.dr-call-to-action {
  background: linear-gradient(135deg, #0c2d56 0%, #0c2d56 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  text-align: center;
}

.dr-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.dr-cta-subtext {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .dr-testimonial-container {
    flex-direction: column;
  }

  .dr-image-section,
  .dr-content-section {
    width: 100%;
  }

  .dr-image-section {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .dr-image-information {
    padding-left: 0;
    margin-bottom: 25px;
  }

  .dr-image-name {
    font-size: 2rem;
  }

  .dr-content-section {
    padding: 25px;
  }

  .dr-doctor-image {
    width: 220px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .dr-content-section {
    padding: 20px;
  }

  .dr-image-name {
    font-size: 1.6rem;
  }

  .dr-testimonial-text {
    font-size: 0.95rem;
  }
}

