:root {
  --primary-color: #04c49d;
  --primary-hover: #03a986;
  --light-bg: #f9fdfd;
  --light-bg-alt: #fef6ff;
  --text-dark: #1c1c1c;
  --text-muted: #777;
  --highlight-pink: #f44369;
}

/* === GLOBAL === */
body {
  background: linear-gradient(to right, var(--light-bg), var(--light-bg-alt));
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* === NAVBAR === */
.navbar {
  background: linear-gradient(to right, #f1fdfd, #fdf6ff);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.navbar-brand:hover,
.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link {
  color: #333 !important;
  margin: 0 10px;
  font-weight: 500;
}

/* === HERO SECTION === */
.hero {
  padding: 60px 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero h5 {
  color: var(--highlight-pink);
  font-weight: 600;
}

.hero p {
  color: #555;
}

.check-list i {
  color: var(--primary-color);
  margin-right: 8px;
}

.check-list li {
  margin-bottom: 10px;
}

/* Crop Doctor Image */
.doctor-photo-wrapper {
  width: 100%;
  max-width: 500px;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%; /* adjust as needed to center Dr. Rupali */
}

/* === BUTTONS === */
.btn-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover,
.btn-outline-custom:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

/* === SERVICES SECTION === */
.services-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.service-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* === ABOUT DOCTOR / ICON BOXES === */
.icon-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 1.5rem;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
}

.bg-gold { background-color: var(--primary-color); }
.bg-pink { background-color: #ffdbdb; color: #ff3d3d; }
.bg-purple { background-color: #e5e0ff; color: #7855ff; }
.bg-green { background-color: #ccf3e2; color: #00a97f; }

/* === FACILITIES SECTION === */
.facility-card img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.facility-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.facility-title {
  font-weight: 800;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  font-size: 1.2rem;
}

/* === CONTACT SECTION === */
.contact-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-info, .contact-form {
  padding: 40px;
}

.contact-info h4,
.contact-form h4 {
  font-weight: 700;
  color: #333;
}

.contact-info i {
  color: var(--primary-color);
  width: 30px;
  text-align: center;
}

.contact-info p,
.contact-info span {
  margin: 0;
  color: #555;
}

.form-control, .form-select, textarea {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(4, 196, 157, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* === FOOTER === */
.footer {
  background-color: #f7f7f7;
  padding: 40px 0;
  border-top: 1px solid #eaeaea;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: #555;
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* === SOCIAL ICONS === */
.social-icons i {
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.3s ease;
  color: var(--primary-color);
  cursor: pointer;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #028e75;
}

.social-icon {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
}
.text-teal {
  color: #04c49d !important;
}

