 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #333;
}

/* TOP BAR */
.top-bar {
  background: #0d6efd;
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0d6efd;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-nav {
  background: #0d6efd;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #0d6efd, #20c997);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
}

.hero h2 {
  margin: 10px 0;
}

.hero button {
  margin-top: 20px;
  padding: 14px 28px;
  border: none;
  background: #fff;
  color: #0d6efd;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1250px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d6efd;
}

. {
  background: #f5f9ff;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  text-align: center;
  font-weight: 500;
}

/* CLINIC */
.clinic-box {
  background: #fff;
  padding: 25px;
  margin: 15px 0;
  border-left: 5px solid #0d6efd;
  border-radius: 8px;
}

/* APPOINTMENT */
.appointment {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.appointment button {
  margin-top: 20px;
  padding: 14px 30px;
  background: #fff;
  color: #0d6efd;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }

  .hero h1 {
    font-size: 30px;
  }
}
/* ===============================
   CLINIC ADDRESS + MAP (50/50)
   =============================== */

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 30px;
}

.address-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.address-box h3 {
  color: #0d6efd;
  margin-bottom: 15px;
}

.address-box p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
}

.map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ===============================
   MOBILE VIEW (STACK)
   =============================== */
@media (max-width: 768px) {
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 300px;
  }
}

/* ===============================
   BUTTON GROUP (Directions + Review)
   =============================== */
.review-buttons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-btn {
    padding: 10px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.review-btn:hover {
    background: #084298;
    color: #fff;
}

.review-btn.ehealth-review {
    background: #198754;
}

.review-btn.ehealth-review:hover {
    background: #146c43;
}

/*.btn-group {*/
/*  display: flex;*/
/*  gap: 12px;*/
/*  flex-wrap: wrap;*/
/*  margin-top: 10px;*/
/*}*/

/*.review-btn {*/
/*  display: inline-block;*/
/*  padding: 10px 20px;*/
/*  background: #05524a;*/
/*  color: #fffdfd;*/
/*  text-decoration: none;*/
/*  border-radius: 25px;*/
/*  font-weight: 500;*/
/*}*/
/*.review-btns {*/
/*  display: inline-block;*/
/*  padding: 10px 20px;*/
/*  background: #060606;*/
/*  color: #ffffff;*/
/*  text-decoration: none;*/
/*  border-radius: 25px;*/
/*  font-weight: 500;*/
/*}*/
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c3e50;
}

. {
  background: #f5f9ff;
}
.services{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px){
  .services{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px){
  .services{
    grid-template-columns: repeat(1, 1fr);
  }
}


.service-card{
  background:#fff;
  padding:28px 26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  text-align:center; /* heading center */
}
.service-card ul{
  list-style:disc;
  padding-left:22px;   /* bullet proper jagah */
  margin-top:10px;
  text-align:left;     /* ⭐ MAIN FIX */
}

.service-card ul li{
  font-size:15px;
  color:#1f2937;
  line-height:1.6;
  margin-bottom:8px;
  white-space:normal;   /* text ek line me */
}


/* Agar pehle ::before use kiya tha to force remove */
.service-card ul li::before{
  content: none !important;
}


/* Consultation Cards */
.consultation-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  max-width:1250px;
  margin:auto;
}

.consult-card{
  padding:25px;
  border-radius:16px;
  text-align:center;
  color:#111;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.consult-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.consult-card .icon{
  font-size:42px;
  display:block;
  margin-bottom:12px;
}

.consult-card h4{
  font-size:18px;
  margin-bottom:8px;
}

.consult-card p{
  font-size:14px;
  color:#333;
}

/* Individual Colors */
.consult-card.video{
  background:#e0f2fe;
}

.consult-card.report{
  background:#ede9fe;
}

.consult-card.medicine{
  background:#dcfce7;
}

.consult-card.home{
  background:#fff7ed;
}

/* Mobile spacing */
@media(max-width:768px){
  .consult-card{
    padding:22px;
  }
}

  /* trusted secure logo above text – CENTER */
.secure-logo {
  display: block;
  margin: 0 auto 6px;
  max-width: 220px;
  height: auto;
}

  /* ================= BASE CARD ================= */
.doctor-card {
  max-width: 1210px;
  margin: 40px auto;
  background: #f8fbff;
  border-radius: 16px;
  padding: 25px;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
/* ================= AVATAR ================= */
.doctor-avatar {
  width: 260px;
  height: 260px;
  margin: auto;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-avatar img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}
.doctor-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px dashed #1d9bf0;
  animation: rotateDots 12s linear infinite;
}
@keyframes rotateDots { to { transform: rotate(360deg); } }

/* ================= INFO ================= */
.doctor-info h1 { font-size: 25px; }
.degree { color:#2563eb; font-weight:600; }
.speciality { color:#6b7280; margin-bottom:8px; }
.meta { display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
/* ================= BUTTONS ================= */
.actions {gap:12px; flex-wrap:wrap; } 
.btn { padding:10px 18px; border-radius:8px; font-weight:600; text-decoration:none; }
.btn.primary { background:#2563eb; color:#fff; }
.btn.whatsapp { background:#eafff3; color:#16a34a; border:1px solid #16a34a; }

/* ================= TRUST CARD ================= */
.ehealth-trust-card {
  min-width: 280px;
  background: linear-gradient(180deg,#ffffff,#f0fdf4);
  border-radius: 16px;
  padding: 20px;
  border:1px solid #dcfce7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.trust-header {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.verified-badge {
  width:32px;height:32px;
  background:#16a34a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.pulse-ring {
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(22,163,74,.4);
  animation:pulse 1.8s infinite;
}
@keyframes pulse { to { transform:scale(1.8); opacity:0; } }

.trust-points { list-style:none; padding:10px; margin:0 0 1px; }
.trust-points li { font-size:14px; margin-bottom:6px; }

.trust-btn {
  display:block;
  text-align:center;
  background:#16a34a;
  color:#fff;
  padding:12px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
}

/* ================= LAYOUT RULES ================= */

/* MOBILE + TABLET (0–1023px) */
@media (max-width: 1023px) {
  .doctor-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .ehealth-trust-card {
    width: 100%;
    max-width: 420px;
    margin-top: 24px;
  }
}

/* LAPTOP + DESKTOP (1024px+) */
@media (min-width: 1024px) {
  .doctor-card {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    align-items: stretch;
    text-align: left;
  }
}.video-section {
  max-width: 1250px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.video-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1f2937;
}

.youtube-row {
  display: flex;
  gap: 35px;
}

/* ✅ Video Card */
.video-card {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  background: transparent; /* black hataya */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;  /* responsive height */
  border: none;
  display: block;
  border-radius: 10px;
}


/* Mobile */
@media (max-width: 768px) {
  .youtube-row {
    flex-direction: column;
    gap: 25px;
  }
}
 .doctor-details {
  max-width: 1250px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  padding: 0 20px;
  overflow: visible;
}

/* INFO CARD */
.info-card{
  background:#fff;
  padding:22px 25px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

/* TITLE */
.info-card h3{
  font-size:18px;
  font-weight:600;
  color:#111827;
  margin-bottom:14px;
  padding-bottom:8px;
  border-bottom:1px solid #e5e7eb;
}

/* LIST */
.info-card ul{
  margin:0;
  padding-left:20px;   /* bullet thoda andar */
}

.info-card ul li{
  font-size:14.5px;
  color:#374151;
  line-height:1.7;
  margin-bottom:10px;
}

/* OPTIONAL: colon ke baad thoda gap feel */
.info-card ul li::marker{
  color:#111827;
}

/* RIGHT */
.booking-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.booking-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.booking-card input,
.booking-card select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.booking-card button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .doctor-details {
    grid-template-columns: 1fr;
  }
}
  /* ===== TIMING SECTION ===== */
.timing-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1250px;
  margin: 30px auto;
  padding: 0 20px;
  overflow: visible;
}

.timing-card {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.timing-card .icon {
  font-size: 40px;
  color: #0d6efd;
}

.timing-card .label {
  font-size: 14px;
  color: #111827;
  margin-bottom: 4px;
  font-weight: 700;
}

.timing-card .time {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* AVAILABLE CARD */
.timing-card.available {
  background: #ffffff;
}

.timing-card.available .icon {
  color: #16a34a;
}

.timing-card .status {
  font-size: 16px;
  font-weight: 600;
  color: #16a34a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .timing-section {
    grid-template-columns: 1fr;
  }
}
 .trust-card {
  background: #f3fff8;
  border-radius: 16px;
  padding: 20px;
  max-width: 360px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #d9f5e5;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-points li {
  font-size: 17px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-points li:last-child {
  margin-bottom: 0;
}
.trust-card:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.timing-card.available .status {
  color: #0f9d58;
  font-weight: 600;
}

.timing-card.not-available .status {
  color: #d93025;
  font-weight: 600;
}
 /* Ad container */
.ad-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each ad item */
.ad-item {
  position: relative;
  background: transparent;   /* 🔥 no background */
  padding: 0;                 /* 🔥 padding removed */
  border-radius: 14px;
  overflow: hidden;           /* 🔥 badge & image clean */
}

/* Image & video */
.ad-item img,
.ad-item iframe,
.ad-item video {
  width: 100%;
  display: block;
  border-radius: 14px;
  margin: 0;                  /* 🔥 no gap */
}

/* Video height */
.ad-item iframe {
  height: 220px;
}

/* 🔥 AD BADGE – EXACT STYLE LIKE IMAGE */
.ad-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #1f2a44;        /* dark blue */
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 0px;       /* pill shape */
  font-weight: 600;
  z-index: 10;
  line-height: 1;
}
