
  *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f1f5f9;
  color:#0f172a;
  line-height:1.7;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}




.hmc-container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

/* HERO SECTION */

.hmc-doctor-hero{
  padding:70px 0;
  background:linear-gradient(135deg,#e0f2fe,#ffffff,#dcfce7);
}

.hmc-hero-grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:45px;
  align-items:center;
}

.hmc-doctor-card{
  background:#ffffff;
  border-radius:28px;
  padding:18px;
  box-shadow:0 20px 50px rgba(15,23,42,0.10);
}

.hmc-doctor-card img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:22px;
}

.hmc-badge{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#dcfce7;
  color:#166534;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.hmc-doctor-content h1{
  font-size:52px;
  line-height:1.15;
  margin-bottom:14px;
  font-weight:800;
}

.hmc-subtitle{
  font-size:22px;
  color:#2563eb;
  font-weight:700;
  margin-bottom:10px;
}

.hmc-speciality{
  color:#475569;
  font-size:18px;
  margin-bottom:28px;
}

.hmc-meta-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:30px;
}

.hmc-meta-box{
  background:#ffffff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 25px rgba(15,23,42,0.06);
}

.hmc-meta-box strong{
  display:block;
  font-size:28px;
  color:#16a34a;
  margin-bottom:4px;
}

.hmc-meta-box span{
  color:#64748b;
  font-size:15px;
}

.hmc-btn-group{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hmc-btn{
  padding:15px 28px;
  border-radius:14px;
  font-weight:700;
  transition:0.3s ease;
}

.hmc-btn-primary{
  background:#16a34a;
  color:#ffffff;
}

.hmc-btn-primary:hover{
  background:#15803d;
}

.hmc-btn-secondary{
  background:#0f172a;
  color:#ffffff;
}

.hmc-btn-secondary:hover{
  background:#1e293b;
}

/* CONTENT */

.hmc-section{
  padding:70px 0;
}

.hmc-content-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.hmc-card{
  background:#ffffff;
  border-radius:26px;
  padding:35px;
  margin-bottom:26px;
  box-shadow:0 12px 35px rgba(15,23,42,0.06);
}

.hmc-card h2{
  font-size:30px;
  margin-bottom:18px;
}

.hmc-card p{
  color:#475569;
  font-size:16px;
}

.hmc-list{
  list-style:none;
}

.hmc-list li{
  padding:14px 0;
  border-bottom:1px solid #e2e8f0;
  color:#334155;
  font-weight:500;
}

.hmc-list li:last-child{
  border-bottom:none;
}

.hmc-highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.hmc-highlight{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:24px;
  text-align:center;
}

.hmc-highlight strong{
  display:block;
  font-size:32px;
  color:#2563eb;
}

.hmc-highlight span{
  color:#64748b;
}

.hmc-sidebar .hmc-card{
  position:sticky;
  top:20px;
}

.hmc-contact-box p{
  margin-bottom:14px;
}

.hmc-contact-box strong{
  color:#0f172a;
}

.hmc-timing{
  margin-top:18px;
  background:#eff6ff;
  border-left:5px solid #2563eb;
  padding:18px;
  border-radius:14px;
}

.hmc-disclaimer{
  background:#fff7ed;
  border-left:5px solid #f97316;
  color:#7c2d12;
  padding:20px;
  border-radius:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

  .hmc-hero-grid,
  .hmc-content-grid{
    grid-template-columns:1fr;
  }

  .hmc-meta-grid,
  .hmc-highlight-grid{
    grid-template-columns:1fr 1fr;
  }

  .hmc-sidebar .hmc-card{
    position:static;
  }

}

@media(max-width:768px){

  .hmc-doctor-hero{
    padding:50px 0;
  }

  .hmc-doctor-content h1{
    font-size:38px;
  }

  .hmc-subtitle{
    font-size:20px;
  }

  .hmc-card{
    padding:26px;
  }

  .hmc-meta-grid,
  .hmc-highlight-grid{
    grid-template-columns:1fr;
  }

  .hmc-btn{
    width:100%;
    text-align:center;
  }

  .hmc-doctor-card img{
    height:320px;
  }

}
