
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --teal: #1a6b6b;
    --teal-light: #2a9090;
    --teal-pale: #e8f4f4;
    --teal-glow: rgba(26,107,107,0.12);
    --gold: #b8934a;
    --gold-light: #d4ab6a;
    --cream: #faf8f5;
    --white: #ffffff;
    --ink: #1c2b2b;
    --muted: #5a7272;
    --border: rgba(26,107,107,0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(176, 215, 238, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    height: 70px;
    animation: slideDown 0.6s ease;
  }
  @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 700; color: var(--ink);
    letter-spacing: 0.02em; text-decoration: none;
  }
  .nav-brand span { color: #7a5a1e; }

  /* Wrapper holding the menu icon, its dropdown, and the logo — on the left side */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
  }

  /* Wrapper holding the appointment button and the links row, on the right side */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .nav-links { display: flex; gap: 0.6rem; list-style: none; }
  .nav-links li { flex-shrink: 0; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; transition: color 0.3s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--teal); color: var(--white) !important;
    padding: 8px 14px; border-radius: 50px;
    transition: background 0.3s !important;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-cta:hover { background: var(--teal-light) !important; color: var(--white) !important; }
  .nav-cta.active { background: var(--ink, #1a1a1a); color: var(--white) !important; }

  /* Hamburger is now always visible — desktop and mobile */
  .menu-toggle-btn { display: inline-flex; }

  /* Close (×) button row inside the dropdown panel — only shown when dropdown is open */
  .nav-links-close-item { display: none; }

  /* Dropdown panel opened by the hamburger — anchored to the LEFT, under the icon, hidden until toggled */
  .nav-dropdown {
    display: none;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    padding: 14px;
    gap: 6px;
    z-index: 200;
  }
  .nav-dropdown.open { display: flex; }
  .nav-dropdown li { list-style: none; }
  .nav-dropdown .nav-links-close-item {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
  }
  .nav-dropdown .nav-links-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
    padding: 0 4px;
  }
  .nav-dropdown .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    box-shadow: 0 4px 10px rgba(26,107,107,0.25);
    transition: background 0.3s, transform 0.15s;
  }
  .nav-dropdown .nav-cta:active { transform: scale(0.97); }
  .nav-dropdown li + li { margin-top: 2px; }

  /* ─── HERO ────────────────────────────── */
  #hero {
    min-height: 100vh; padding-top: 70px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 60%, var(--teal-pale) 100%);
    position: relative; overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,107,107,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  #hero::after {
    content: '';
    position: absolute; bottom: -60px; left: 20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(184,147,74,0.07) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-text {
    padding: 6% 5% 6% 8%;
    animation: fadeUp 0.9s ease 0.3s both;
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal-glow); border: 1px solid var(--border);
    padding: 10px 24px; border-radius: 50px; margin-bottom: 1.5rem;
    font-size: 1rem; font-weight: 600; letter-spacing: 0.1rem;
    text-transform: uppercase; color: #003c3c;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 600; line-height: 1.1;
    color: var(--ink); margin-bottom: 0.3rem;
  }
  .hero-title .accent { color: var(--teal); }

  .hero-qual {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--gold);
    font-style: italic; margin-bottom: 1.2rem; letter-spacing: 0.03em;
  }

  .hero-desc {
    font-size: 1rem; color: var(--muted); line-height: 1.75;
    max-width: 480px; margin-bottom: 2rem;
  }

  .hero-stats {
    display: flex; gap: 2rem; margin-bottom: 2.5rem;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--teal); display: block;
  }
  .stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal); color: var(--white);
    padding: 14px 32px; border-radius: 50px; border: none;
    font-size: 0.9rem; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(26,107,107,0.25);
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,107,107,0.35); }

  .btn-secondary {
    background: transparent; color: var(--teal);
    padding: 14px 32px; border-radius: 50px;
    border: 1.5px solid var(--teal);
    font-size: 0.9rem; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.3s;
  }
  .btn-secondary:hover { background: var(--teal-glow); transform: translateY(-2px); }

  .hero-image {
    padding: 4% 6% 4% 2%;
    display: flex; justify-content: center; align-items: center;
    animation: fadeUp 0.9s ease 0.5s both;
    position: relative;
  }
  .hero-img-wrap {
    position: relative; width: 100%; max-width: 440px;
  }
  .hero-img-wrap::before {
    content: '';
    position: absolute; top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--teal);
    border-radius: 24px; opacity: 0.2;
  }
  .hero-img-wrap::after {
    content: '';
    position: absolute; bottom: -20px; left: -20px;
    width: 60%; height: 60%;
    background: var(--gold); opacity: 0.06;
    border-radius: 20px;
  }
  .hero-img {
    width: 100%; border-radius: 20px;
    object-fit: cover; aspect-ratio: 3/4;
    box-shadow: 0 20px 60px rgba(26,107,107,0.2);
    position: relative; z-index: 1;
  }
  .hero-card {
    position: absolute; bottom: 30px; left: -30px; z-index: 2;
    background: var(--white);
    padding: 14px 20px; border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 12px;
    min-width: 200px;
  }
  .hero-card-icon {
    width: 44px; height: 44px; background: var(--teal-pale);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
  }
  .hero-card-text strong { display: block; font-size: 0.9rem; color: var(--ink); }
  .hero-card-text span { font-size: 0.75rem; color: var(--muted); }

  /* ─── SECTION BASE ─────────────────────── */
  section { padding: 90px 8%; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600; color: var(--ink); line-height: 1.2;
  }
  .section-title .teal { color: var(--teal); }
  .section-divider {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    margin: 16px auto 0;
    border-radius: 2px;
  }

  /* ─── ABOUT ────────────────────────────── */
  /* ABOUT SECTION */
/* SECTION */
#about{
    padding:80px 5%;
    background:#fff;
}

/* CONTAINER */
.about-container{
    max-width:1200px;
    margin:auto;
}

/* HEADER CENTER FIX */
.about-header{
    text-align:center;
    margin-bottom:50px;
}

.section-tag{
    color:#00a8a8;
    font-weight:600;
}

.section-title{
    font-size:2.4rem;
    margin:10px 0;
}

.teal{
    color:#00a8a8;
}

.section-divider{
    width:70px;
    height:4px;
    background:#00a8a8;
    margin:10px auto;
    border-radius:5px;
}

/* MAIN FLEX LAYOUT */
.about-content-split{
    display:flex;
    flex-direction:row;
    gap:40px;
    align-items:center;
}

/* LEFT IMAGE */
.about-image{
    flex:1;
    position:relative;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

/* BADGE */
.about-badge{
    position:absolute;
    bottom:15px;
    left:15px;
    background:#00a8a8;
    color:#fff;
    padding:10px 15px;
    border-radius:8px;
}

/* RIGHT TEXT */
.about-text{
    flex:1;
}

.about-text p{
    line-height:1.8;
    margin-bottom:15px;
    color:#444;
}

/* QUALIFICATIONS */
.about-quals{
    margin-top:20px;
}

.qual-item{
    display:flex;
    gap:12px;
    margin-bottom:12px;
    background:#f5f5f5;
    padding:12px;
    border-radius:10px;
}

.qual-icon{
    font-size:20px;
}

.qual-name{
    font-weight:bold;
}

.qual-from{
    font-size:13px;
    color:#666;
}

/* BUTTON */
.btn-primary{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#00a8a8;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-content-split{
        flex-direction:column;
    }

    .about-image img{
        height:auto;
    }
}

  /* ─── EXPERTISE ────────────────────────── */
  #expertise { background: var(--cream); }
  .expertise-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
  }
  .expertise-card {
    background: var(--white); border-radius: 18px;
    padding: 32px 28px; border: 1px solid var(--border);
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .expertise-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .expertise-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,107,107,0.12); }
  .expertise-card:hover::before { transform: scaleX(1); }
  .expertise-icon { font-size: 2.2rem; margin-bottom: 16px; }
  .expertise-title { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
  .expertise-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

  /* ─── EXPERIENCE ───────────────────────── */
  #experience { background: var(--white); }
  .timeline { max-width: 800px; margin: 0 auto; position: relative; }
  .timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--teal), var(--gold));
    opacity: 0.3;
  }
  .timeline-item {
    padding-left: 60px; margin-bottom: 36px; position: relative;
    animation: fadeUp 0.6s ease both;
  }
  .timeline-dot {
    position: absolute; left: 11px; top: 6px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--teal);
    box-shadow: 0 0 0 4px var(--teal-pale);
  }
  .timeline-date {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  }
  .timeline-role { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .timeline-place { font-size: 0.88rem; color: var(--muted); }

  /* ─── PUBLICATIONS ─────────────────────── */
  #publications { background: var(--teal); color: var(--white); }
  #publications .section-title { color: var(--white); }
  #publications .section-tag { color: var(--gold-light); }
  .pub-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
  }
  .pub-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 24px;
    transition: all 0.3s;
  }
  .pub-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
  .pub-journal {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
  }
  .pub-title { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.9); }

  /* ─── SURGERY SECTION ──────────────────── */
  #surgery {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center;
  }
  .surgery-img {
    width: 100%; border-radius: 20px;
    object-fit: cover; aspect-ratio: 4/5;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  }
  .surgery-content .section-header { text-align: left; }
  .surgery-content .section-divider { margin-left: 0; }
  .skill-bars { margin-top: 1.5rem; }
  .skill-bar { margin-bottom: 18px; }
  .skill-bar-label {
    display: flex; justify-content: space-between;
    font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 8px;
  }
  .skill-bar-track {
    height: 6px; background: var(--border); border-radius: 6px; overflow: hidden;
  }
  .skill-bar-fill {
    height: 100%; border-radius: 6px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    animation: fillBar 1.2s ease both;
  }
  @keyframes fillBar { from { width: 0; } }

  /* ─── CONTACT ──────────────────────────── */
  #contact { background: var(--white); text-align: center; }
  .contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; max-width: 900px; margin: 0 auto 50px;
  }
  .contact-card {
    background: var(--cream); border-radius: 16px;
    padding: 28px 20px; border: 1px solid var(--border);
    transition: all 0.3s;
  }
  .contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,107,107,0.1); }
  .contact-card-icon {
    font-size: 2rem; margin-bottom: 12px; display: flex;
  }
  .contact-card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 6px; }
  .contact-card-value { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
  .contact-card-value a { color: var(--teal); text-decoration: none; }

  /* ─── FOOTER ───────────────────────────── */
  footer {
    background: var(--ink); color: rgba(255,255,255,0.5);
    text-align: center; padding: 36px 28px;
    font-size: 0.82rem;
  }
  footer span { color: var(--gold-light); }
  .footer-logo { display: block; margin: 0 auto 18px; height: 70px; width: auto; opacity: 0.92; }
  .footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
  .footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; text-decoration: none;
    transition: transform 0.25s, opacity 0.25s; opacity: 0.7;
  }
  .footer-social a:hover { transform: translateY(-3px); opacity: 1; }
  .footer-social .fb  { background: #1877f2; }
  .footer-social .ig  { background: radial-gradient(circle at 30% 107%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
  .footer-social .wa  { background: #25d366; }
  .footer-social .yt  { background: #ff0000; }

  /* ─── RESPONSIVE ───────────────────────── */
  @media (max-width: 900px) {
    #hero, #about, #surgery {
      grid-template-columns: 1fr; gap: 3rem;
    }
    .hero-image { order: -1; padding: 4% 5%; }
    .hero-text { padding: 3% 5%; }
    .hero-card { left: 10px; bottom: 10px; }
    .about-img-badge { right: 10px; }
    nav { padding: 0 4%; }
    .nav-links { display: flex; }
    section { padding: 60px 5%; }
  }
  
.appointment-btn{
background:#e7d804;
color:#010208;
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-weight:900;
font-size: 18px;
margin-left:15px;
animation:pulse 2s infinite;
box-shadow:0 4px 15px rgba(31,47,95,0.25);
white-space:nowrap;
flex-shrink:0;
}

.appointment-btn:hover{
background:#c9a86a;
color:#ffffff
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

.appointment-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:99999;
}

.popup-content{
background:#fff;
width:90%;
max-width:650px;
margin:50px auto;
padding:30px;
border-radius:15px;
border-top:5px solid #c9a86a;
position:relative;
}

.popup-content h2{
color:#1f2f5f;
text-align:center;
}

.close-btn{
position:absolute;
top:10px;
right:20px;
font-size:30px;
cursor:pointer;
}

.appointment-option{
margin-top:20px;
padding-bottom:15px;
border-bottom:1px solid #ddd;
}

.book-link{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#1f2f5f;
color:#fff;
text-decoration:none;
border-radius:5px;
}

.book-link:hover{
background:#c9a86a;
}
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  font-size: 18px;
}
/* --- Mobile Layout (Screens smaller than 768px) --- */
@media (max-width: 768px) {
  nav {
    height: auto;
    padding: 10px 4%;
    row-gap: 8px;
  }

  .nav-right {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
  }

  /* Appointment button — completely unchanged in style */
  .appointment-btn {
    white-space: nowrap;
  }

  /* Links row becomes a horizontally-scrollable strip below the top row,
     so every button stays reachable even when the screen is narrow */
  .nav-links {
    flex-basis: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .nav-links::-webkit-scrollbar { height: 4px; }
  .nav-links::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

  /* Dropdown panel: anchored to the LEFT, below the header, sized for small screens */
  .nav-dropdown {
    width: min(78vw, 280px);
    top: calc(100% + 8px);
    left: 0;
  }

  .nav-dropdown .nav-cta {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* ─── OPD SECTION CONTAINER ──────────────── */
.opd-section {
  background: #faf8f5;
  color: #1c2b2b;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
}


/* ─── HERO BAND ─────────────────────────── */
.opd-section .hero-band {
  background: linear-gradient(135deg, #1a6b6b 0%, #0e4a4a 55%, #0a3535 100%);
  padding: 68px 8% 56px;
  position: relative;
  overflow: hidden;
}
.opd-section .hero-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(184,147,74,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,244,244,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.opd-section .hero-band::after {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.opd-section .hero-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
}
.opd-section .hero-text { flex: 1; min-width: 260px; }
.opd-section .hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(184,147,74,0.45);
  color: #d4ab6a;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px;
}
.opd-section .hero-chip::before {
  content: ''; width: 6px; height: 6px;
  background: #b8934a; border-radius: 50%;
  animation: opd-pulse 2s infinite;
}
@keyframes opd-pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.4);} }

.opd-section .hero-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff; font-weight: 600; line-height: 1.1;
  margin-bottom: 8px;
}
.opd-section .hero-text h2 em { font-style: italic; color: #d4ab6a; }

.opd-section .hero-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #b8934a, transparent);
  margin: 18px 0;
  border-radius: 2px;
}
.opd-section .hero-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem; font-weight: 300;
  max-width: 420px; line-height: 1.8;
}

.opd-section .hero-stats { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.opd-section .stat-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,147,74,0.22);
  border-radius: 16px; padding: 16px 26px;
  text-align: center; backdrop-filter: blur(8px);
  min-width: 130px;
}
.opd-section .stat-pill .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 600;
  color: #fff; line-height: 1;
}
.opd-section .stat-pill .lbl {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}

/* ─── MAIN CONTENT WRAPPER ──────────────── */
.opd-section .opd-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 5% 96px;
}
.opd-section .sec-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.opd-section .sec-label::before {
  content: ''; width: 32px; height: 1px; background: #b8934a;
}
.opd-section .sec-label span {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #b8934a;
}
.opd-section .sec-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: #1c2b2b; font-weight: 600; line-height: 1.15; margin-bottom: 10px;
}
.opd-section .sec-heading .teal { color: #1a6b6b; }
.opd-section .sec-divider {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, #1a6b6b, #b8934a);
  border-radius: 2px; margin-bottom: 14px;
}
.opd-section .sec-sub {
  color: #5a7272; font-size: 0.95rem; font-weight: 300; line-height: 1.75; max-width: 520px; margin-bottom: 52px;
}

/* ─── OPD CARDS GRID ────────────────────── */
.opd-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 5% 72px;
}

/* Base Card */
.opd-section .opd-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(26,107,107,0.12);
  box-shadow: 0 8px 32px rgba(26,107,107,0.07);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s;
}
.opd-section .opd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(26,107,107,0.15);
}

/* Featured Card (Medcure) */
.opd-section .opd-card--featured {
  border-color: rgba(184,147,74,0.35);
  box-shadow: 0 12px 40px rgba(184,147,74,0.14), 0 4px 16px rgba(26,107,107,0.08);
  transform: scale(1.03);
  z-index: 2;
}
.opd-section .opd-card--featured:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 28px 60px rgba(184,147,74,0.22), 0 8px 24px rgba(26,107,107,0.12);
}
.opd-featured-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: linear-gradient(90deg, #b8934a, #d4ab6a);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(35deg);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(184,147,74,0.4);
}

/* Card Image */
.opd-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.opd-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.opd-section .opd-card:hover .opd-card-img-wrap img {
  transform: scale(1.07);
}

/* Image Badge */
.opd-card-badge {
  position: absolute;
  bottom: 12px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.opd-badge--green  { background: rgba(37,211,102,0.18); border: 1px solid rgba(37,211,102,0.5); color: #0a7c3a; }
.opd-badge--gold   { background: rgba(184,147,74,0.22); border: 1px solid rgba(184,147,74,0.55); color: #7a5a10; }
.opd-badge--teal   { background: rgba(26,107,107,0.18); border: 1px solid rgba(26,107,107,0.45); color: #0e4a4a; }

/* Pulse dot */
.badge-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: opd-pulse 2s infinite;
  flex-shrink: 0;
}

/* Card Body */
.opd-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta row: icon + type label */
.opd-card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.opd-card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #e8f4f4;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.opd-card-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a6b6b;
}

/* Card Title */
.opd-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1c2b2b;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Schedule block */
.opd-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,107,107,0.12);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  flex: 1;
}
.opd-sched-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(26,107,107,0.08);
  background: #fafefe;
}
.opd-sched-row:last-child { border-bottom: none; }
.opd-sched-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a6b6b;
}
.opd-sched-val {
  font-size: 0.85rem;
  color: #3d5c5c;
  font-weight: 400;
  line-height: 1.5;
}
.opd-sched-highlight {
  font-weight: 600;
  color: #1a6b6b;
}

/* Card Buttons */
.opd-card-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.opd-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  flex: 1; justify-content: center;
}
.opd-btn--teal {
  background: #1a6b6b; color: #fff;
  box-shadow: 0 4px 18px rgba(26,107,107,0.25);
}
.opd-btn--teal:hover { background: #2a9090; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,107,107,0.35); }
.opd-btn--wa {
  background: #25d366; color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.opd-btn--wa:hover { background: #1fba57; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,0.38); }

/* Responsive */
@media (max-width: 900px) {
  .opd-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .opd-section .opd-card--featured { transform: scale(1); }
  .opd-section .opd-card--featured:hover { transform: translateY(-10px); }
}
@media (max-width: 600px) {
  .opd-cards-grid { padding: 40px 5% 56px; gap: 20px; }
  .opd-card-img-wrap { height: 180px; }
}
/* ─── NOTICE BAR ────────────────────────── */
.opd-section .notice-bar {
  max-width: 1140px; margin: 0 auto 44px; padding: 20px 26px;
  background: #e8f4f4; border: 1px solid rgba(26,107,107,0.15); border-left: 4px solid #1a6b6b; border-radius: 0 16px 16px 0;
  display: flex; align-items: flex-start; gap: 14px;
  margin-left: 5%; margin-right: 5%;
}
.opd-section .notice-bar .ni { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.opd-section .notice-bar p { font-size: 0.87rem; color: #5a7272; line-height: 1.75; }
.opd-section .notice-bar strong { color: #1c2b2b; font-weight: 600; }

/* ─── CONTACT STRIP ─────────────────────── */
.opd-section .contact-strip {
  margin: 44px 5% 72px; max-width: 1140px; margin-left: 5%; margin-right: 5%;
  background: linear-gradient(135deg, #1a6b6b 0%, #0e4a4a 100%); border-radius: 22px; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; position: relative; overflow: hidden;
}
.opd-section .contact-strip::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(184,147,74,0.14) 0%, transparent 70%); pointer-events: none;
}
.opd-section .contact-strip .ct-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.opd-section .contact-strip .ct-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 300; }
.opd-section .contact-strip .ct-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.opd-section .strip-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.25s; white-space: nowrap; }
.opd-section .strip-btn.outline { border: 1.5px solid rgba(232,244,244,0.45); color: #e8f4f4; }
.opd-section .strip-btn.outline:hover { background: rgba(232,244,244,0.10); transform: translateY(-2px); }
.opd-section .strip-btn.solid { background: #b8934a; color: #fff; box-shadow: 0 4px 18px rgba(184,147,74,0.35); }
.opd-section .strip-btn.solid:hover { background: #d4ab6a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,147,74,0.45); }

/* ─── RESPONSIVE STYLES ─────────────────── */
@media(max-width: 600px){
  .opd-section .hero-band { padding: 44px 5% 40px; }
  .opd-section .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .opd-section .stat-pill { flex: 1; min-width: 90px; }
  .opd-section .opd-wrap { padding: 44px 5% 72px; }
  .opd-section .contact-strip { padding: 28px 24px; }
  .opd-section .strip-btn, .opd-section .btn-primary, .opd-section .btn-wa { font-size: 0.8rem; padding: 9px 16px; }
}




/* ─── OPD HERO IMAGE ─────────────────────── */
.opd-hero-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 240px;
}
.opd-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 3px solid rgba(184,147,74,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  display: block;
}
.opd-img-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #b8934a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(184,147,74,0.4);
}
.opd-img-badge .badge-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: opd-pulse 2s infinite;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .opd-hero-img-wrap { width: 100%; max-width: 280px; margin: 0 auto; }
  .opd-hero-img { height: 220px; }
}


/* ═══════════════════════════════════════════════════════════
   SECTION BACKGROUNDS — Updated per user brief
   Each section has a thematic, high-quality Unsplash image
═══════════════════════════════════════════════════════════ */

/* WOMEN'S HEALTH (#about) — Doctors meeting / women's health conference */
#about {
  background: url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#about::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.83) 0%, rgba(232,244,244,0.80) 100%);
  z-index: 0;
}
#about .about-container { position: relative; z-index: 1; }

/* AREA OF SPECIALIZATION (#expertise) — Advanced medical technology / ultrasound */
#expertise {
  background: url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#expertise::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,244,244,0.82) 0%, rgba(255,255,255,0.79) 100%);
  z-index: 0;
}
#expertise .section-header,
#expertise .expertise-grid { position: relative; z-index: 1; }

/* PROFESSIONAL EXPERIENCE (#experience) — Medical career levels / hospital hierarchy */
#experience {
  background: url('https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#experience::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.84) 0%, rgba(232,244,244,0.81) 100%);
  z-index: 0;
}
#experience .section-header,
#experience .timeline { position: relative; z-index: 1; }

/* PUBLICATIONS (#publications) — Medical research / scientific journals */
#publications {
  background: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#publications::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,53,53,0.87) 0%, rgba(26,107,107,0.84) 100%);
  z-index: 0;
}
#publications .section-header,
#publications .pub-grid { position: relative; z-index: 1; }

/* CLINICAL SKILLS (#surgery) — Female doctor performing surgery in advanced theater */
#surgery {
  background: url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#surgery::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,248,245,0.80) 0%, rgba(232,244,244,0.77) 100%);
  z-index: 0;
}
#surgery > * { position: relative; z-index: 1; }

/* OPD SCHEDULE (#opd-schedule) — Doctor consultation / appointment booking */
#opd-schedule {
  background: url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#opd-schedule::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(240,252,252,0.88);
  z-index: 0;
  pointer-events: none;
}
#opd-schedule > * { position: relative; z-index: 1; }

/* BOOK APPOINTMENT (#contact) — Hospital reception / booking desk */
#contact {
  background: url('https://images.unsplash.com/photo-1519494140681-8b17d830a3e9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
  position: relative;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.84) 0%, rgba(232,244,244,0.81) 100%);
  z-index: 0;
}
#contact .section-header,
#contact .contact-grid,
#contact .btn-primary { position: relative; z-index: 1; }


/* Premium upgrades */
.floating-whatsapp{position:fixed;bottom:25px;right:25px;width:65px;height:65px;
background:#25D366;color:#fff;border-radius:50%;display:flex;align-items:center;
justify-content:center;font-size:32px;text-decoration:none;z-index:99999;
box-shadow:0 10px 30px rgba(0,0,0,.25);}
#testimonials,#faq,#appointment-form{padding:80px 8%;background:#fff;}
.review-grid,.faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;}
.review-card,.faq-card{background:#f8fcfc;padding:25px;border-radius:15px;border:1px solid #dcecec;}
.appointment-form{max-width:780px;margin:auto;}
.appt-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.appt-grid .appt-full{grid-column:1/-1;}
.appt-field{display:flex;flex-direction:column;gap:6px;}
.appt-field label{font-size:0.72rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--teal);}
.appt-field input,.appt-field textarea,.appt-field select{
  padding:14px 16px;border:1.5px solid var(--border);border-radius:12px;
  font-family:'DM Sans',sans-serif;font-size:0.92rem;color:var(--ink);
  background:#fff;transition:border-color 0.25s,box-shadow 0.25s;outline:none;
  -webkit-appearance:none;appearance:none;
}
.appt-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a6b6b' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px;cursor:pointer;}
.appt-field input:focus,.appt-field textarea:focus,.appt-field select:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(26,107,107,0.1);}
.appt-field input::placeholder,.appt-field textarea::placeholder{color:#aab8b8;}
.appt-field textarea{resize:vertical;min-height:110px;}
.appt-submit{
  background:var(--teal);color:#fff;border:none;padding:16px 36px;border-radius:50px;
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:600;letter-spacing:0.05em;
  cursor:pointer;display:inline-flex;align-items:center;gap:10px;
  box-shadow:0 6px 24px rgba(26,107,107,0.28);transition:all 0.3s;
}
.appt-submit:hover{background:var(--teal-light);transform:translateY(-2px);box-shadow:0 10px 32px rgba(26,107,107,0.38);}
.appt-submit i{font-size:1.1rem;}
.appt-note{font-size:0.8rem;color:var(--muted);margin-top:10px;text-align:center;}
.appt-note a{color:var(--teal);text-decoration:none;font-weight:500;}
.appt-header{text-align:center;margin-bottom:40px;}
.appt-header h2{font-family:'Cormorant Garamond',serif;font-size:2.4rem;font-weight:600;color:var(--ink);margin-bottom:8px;}
.appt-header p{color:var(--muted);font-size:0.95rem;}
.appt-divider{width:50px;height:3px;background:var(--gold);border-radius:2px;margin:12px auto 0;}
@media(max-width:600px){.appt-grid{grid-template-columns:1fr;}.appt-grid .appt-full{grid-column:1;}}



#testimonials,#faq,#appointment-form{
  background:url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed !important;
  position:relative;
}
#testimonials::before,#faq::before,#appointment-form::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.88);
}
#testimonials > *,#faq > *,#appointment-form > *{
  position:relative;
  z-index:1;
}




/* ─── MENU TOGGLE BUTTON (hamburger) ───── */
.menu-toggle-btn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 32px;
  background: var(--ink, #1c2b2b);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.menu-toggle-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle-btn.open span:nth-child(2) { opacity: 0; }
.menu-toggle-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
