/* =========================================================
   DR. RICHA JHA PAGE – SAME STRUCTURE AS DR. RUCHI JHA PAGE
   ========================================================= */

/* Base styling */
body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  background: #f8fbff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #ffffff, #eaf8ff);
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  font-size: 2.6rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.green {
  color: #1c9c5e;
}

.blue {
  color: #0056b3;
}

.hero-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.doctor-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002b5b;
}

.doctor-info p {
  font-size: 1rem;
  margin: 5px 0;
  color: #444;
}

.doctor-info .designation {
  font-weight: 600;
  color: #111;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* About Section */
.about-doctor {
  padding: 70px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-doctor .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-doctor h2 {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 20px;
}

.about-doctor p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.8;
}

.expertise {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
  padding-left: 0;
}

.expertise li {
  margin: 10px 0;
  color: #333;
}

/* Footer */
footer {
  background: #0056b3;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .about-doctor h2 {
    font-size: 1.6rem;
  }

  .about-doctor p {
    font-size: 0.95rem;
  }
}
