*
{
    font-family: "Barlow", sans-serif;
}
body {
    font-family: "Barlow", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #f4f7fc, #eaf1ff);
    padding: 0 30px;
}

header h1 {
    font-size: 35px;
    color: #003366;
    margin-top: 15px;
    font-weight: 700;
}

.subtitle {
    color: #000000;
    font-weight: 500;
    font-size: 18px;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Section Styling */
section {
    padding: 60px 0;
    padding: 40px 30px;
}

h2 {
    text-align: center;
    color: #003366;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.qualification-section ul,
.experience-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
}

.qualification-section li,
.experience-section li {
    background: #f9faff;
    padding: 12px 20px;
    margin: 10px 0;
    border-left: 4px solid #003366;
    border-radius: 6px;
}

/* Expertise Cards */
.expertise-card {
    background: #f0f6ff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}

.expertise-card img{width: 49px;margin: 0 0 13px;}
.expertise-card:hover {
    background: #d9e8ff;
    transform: translateY(-5px);
}

/* Clinic Cards */
.clinic-card {
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.clinic-img {
    height: 150px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #003366;
    color: #fff;
    font-size: 0.95rem;
}

.floatingwhatsapp {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
    color: #FFF;
    background: #4dc247;
    font-size: 26px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 39px;
    border-radius: 50%;
    -webkit-box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
    -moz-box-shadow: -8px 9px 5px -7px rgba(0, 0, 0, 0.24);
    box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
}

.floatingwhatsapp:hover {
    color: #FFF;
}

.clinic-card a { color: #007b5e; font-weight: 500; text-decoration: none; }
.clinic-card a:hover { text-decoration: underline; }

.book-btn {
    background: #a01853;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.book-btn:hover {
    background: #7c0e3f;
    color: #fff;
}
/* ================================
   Stats Section Start
================================ */
.stats-section {
  background-color: #a01853;
  padding: 70px 20px;
  color: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  transition: 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.stat-item h3 {
  font-size: 38px;
  margin: 10px 0;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* ================================
   Tablet View
================================ */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ================================
   Mobile View (2 + 1 Layout)
================================ */
@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px; /* reduced gap */
  }

  /* Make 3rd item center in next row */
  .stat-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-item h3 {
    font-size: 26px;
  }

  .stat-item p {
    font-size: 14px;
    margin: 0;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }
  .stats-section {
    background-color: #a01853;
    padding: 20px 20px;
    color: #fff;
}
}
/* ================================
   Stats Section End
================================ */
