 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal:        #0a8f8f;
    --teal-light:  #12b3b3;
    --teal-pale:   #e6f8f8;
    --teal-mid:    #b2e8e8;
    --mint:        #f0fafa;
    --accent:      #f97316;
    --accent-soft: #fff4ed;
    --navy:        #0d3b4f;
    --text:        #1e3a3a;
    --muted:       #5a7a7a;
    --white:       #ffffff;
    --border:      #d4eeee;
    --radius:      16px;
    --shadow:      0 4px 24px rgba(10,143,143,0.10);
    --shadow-lg:   0 12px 48px rgba(10,143,143,0.16);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-brand {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo {
    width: 485px; height: 51px; 
    border-radius: 12px;
    display: flex; align-items: center; justify-content: start;
  }
  .nav-logo img {    width: 100%;
    max-width: 285px;
    max-height: 60px;
    object-fit: cover;}
  .nav-name { line-height: 1.2; }
  .nav-name strong { font-size: 0.95rem; font-weight: 700; color: var(--navy); display: block; }
  .nav-name span { font-size: 0.72rem; color: var(--muted); font-weight: 400; }

  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text); font-size: 0.88rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta {
    background: var(--teal); color: white; padding: 10px 22px;
    border-radius: 50px; font-weight: 600; font-size: 0.88rem;
    text-decoration: none; transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
  .hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all .3s; display: block; }

  .mobile-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: white; border-bottom: 1.5px solid var(--border);
    padding: 20px 5%; flex-direction: column; gap: 16px; z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { text-decoration: none; color: var(--text); font-size: 1rem; font-weight: 500; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

  /* ── SLIDER / HERO ── */
  .slider { margin-top: 68px; position: relative; overflow: hidden; height: calc(100svh - 68px); min-height: 480px; max-height: 780px; }
  .slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 0 8%;
    opacity: 0; transition: opacity .8s ease;
  }
  .slide.active { opacity: 1; z-index: 2; }

  .slide-1 { background-image: linear-gradient(135deg, #e6f9f900 0%, #b8eaea00 50%, #e0f5f500 100%),url(../images/banner/01.jpg);  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;}
  .slide-2 { background-image: linear-gradient(135deg, #e6f9f900 0%, #b8eaea00 50%, #e0f5f500 100%),url(../images/banner/02.jpg);  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .slide-3 { background-image: linear-gradient(135deg, #e6f9f900 0%, #b8eaea00 50%, #e0f5f500 100%),url(../images/banner/03.jpg);  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

  .slide-content { max-width: 600px; }
  .slide-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--teal); border: 1.5px solid var(--teal-mid);
    padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 22px;
  }
  .slide-badge::before { content: ''; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
  .slide h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
  .slide h1 em { font-style: normal; color: var(--teal); }
  .slide p { font-size: 1.05rem; color: var(--muted); margin-bottom: 30px; max-width: 480px; }
  .slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal); color: white; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; text-decoration: none;
    font-size: 0.95rem; transition: all .2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,143,143,0.3); }
  .btn-outline {
    border: 2px solid var(--teal); color: var(--teal); padding: 12px 28px;
    border-radius: 50px; font-weight: 600; text-decoration: none;
    font-size: 0.95rem; transition: all .2s; display: inline-block; background: white;
  }
  .btn-outline:hover { background: var(--teal-pale); }

  .slide-visual {
    position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
    width: min(380px, 42vw); height: min(380px, 42vw);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.18;
    pointer-events: none;
  }
  .slide-1 .slide-visual { background: radial-gradient(circle, var(--teal) 0%, transparent 70%); }
  .slide-2 .slide-visual { background: radial-gradient(circle, var(--accent) 0%, transparent 70%); }
  .slide-3 .slide-visual { background: radial-gradient(circle, #6bc44a 0%, transparent 70%); }

  .slider-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 5;
  }
  .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--teal-mid); border: none; cursor: pointer;
    transition: all .3s; padding: 0;
  }
  .dot.active { background: var(--teal); width: 30px; border-radius: 5px; }

  .slider-arr {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: white; border: 1.5px solid var(--border); border-radius: 50%;
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5; transition: all .2s; box-shadow: var(--shadow);
  }
  .slider-arr:hover { background: var(--teal); border-color: var(--teal); }
  .slider-arr:hover svg { stroke: white; }
  .slider-arr svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2.2; }
  .arr-prev { left: 20px; }
  .arr-next { right: 20px; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--navy); color: white;
    display: flex; justify-content: space-around; flex-wrap: wrap;
    padding: 28px 5%; gap: 24px;
  }
  .stat { text-align: center; }
  .stat-num { font-size: 1.9rem; font-weight: 700; color: var(--teal-light); line-height: 1; }
  .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* ── SECTIONS GENERAL ── */
  section { padding: 80px 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--teal); font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 12px;
  }
  .section-label::before { content: ''; width: 28px; height: 2px; background: var(--teal); }
  .section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
  .section-sub { color: var(--muted); margin-top: 12px; max-width: 560px; font-size: 1rem; }

  /* ── ABOUT ── */
  .about { background: var(--mint); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-img {
    position: relative;
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--teal-mid) 100%);
    border-radius: 24px; aspect-ratio: 4/5; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
  }
  .about-img-inner {
    width:100%;
    background: var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    /* opacity: .35; */
  }
  .about-img-inner img{
    width: 100%;;
  }
  .about-img-inner svg { width: 64px; height: 64px; fill: white; }
  .about-badge-float {
    position: absolute; bottom: 28px; left: -24px;
    background: white; border-radius: 16px; padding: 16px 20px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  }
  .about-badge-icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .about-badge-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; }
  .about-badge-text strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--navy); }
  .about-badge-text span { font-size: 0.78rem; color: var(--muted); }

  .about-content .section-sub { max-width: 100%; }
  .about-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .about-highlight {
    display: flex; align-items: flex-start; gap: 14px;
    background: white; padding: 16px 18px; border-radius: 14px;
    border: 1.5px solid var(--border);
  }
  .hl-icon { width: 38px; height: 38px; min-width: 38px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .hl-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; }
  .hl-text strong { display: block; font-size: 0.93rem; font-weight: 600; color: var(--navy); }
  .hl-text span { font-size: 0.83rem; color: var(--muted); }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services-header { text-align: center; margin-bottom: 48px; }
  .services-header .section-label, .services-header .section-sub { margin-left: auto; margin-right: auto; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
  .service-card {
    background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 28px 24px; transition: all .3s; cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--teal); transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-mid); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .svc-icon { width: 54px; height: 54px; background: var(--teal-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .svc-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
  .service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .service-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

  /* ── DOCTOR ── */
  .doctor { background: linear-gradient(135deg, var(--navy) 0%, #0a5a6e 100%); color: white; }
  .doctor-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
  .doctor-img {
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border-radius: 24px; border: 1.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .doctor-avatar { width: 100%; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .doctor-avatar img { width: 100%; fill: rgba(255,255,255,0.5); }
  .doctor-badge-d {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: var(--teal); color: white; border-radius: 50px;
    padding: 10px 22px; white-space: nowrap; font-weight: 600; font-size: 0.85rem;
  }
  .doctor .section-label { color: var(--teal-light); }
  .doctor .section-label::before { background: var(--teal-light); }
  .doctor .section-title { color: white; }
  .doctor-title { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 6px; margin-bottom: 22px; }
  .doctor-about { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
  .expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
  .expertise-item {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.07); border-radius: 10px;
    padding: 10px 14px; border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.83rem; color: rgba(255,255,255,0.88); font-weight: 500;
  }
  .expertise-item::before { content: '✦'; color: var(--teal-light); font-size: 0.7rem; flex-shrink: 0; }
  .opd-box {
    background: rgba(255,255,255,0.09); border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 16px; padding: 22px 24px;
  }
  .opd-box h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-light); margin-bottom: 14px; }
  .opd-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; }
  .opd-row:last-child { border-bottom: none; }
  .opd-row span:first-child { color: rgba(255,255,255,0.65); }
  .opd-row span:last-child { color: white; font-weight: 600; }

  /* ── GALLERY ── */
  .gallery { background: var(--mint); }
  .gallery-header { text-align: center; margin-bottom: 40px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery-item {
    border-radius: 16px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform .3s;
  }
  .gallery-item:hover { transform: scale(1.02); }
  /* .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; } */
  .gallery-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 600; color: white;
    letter-spacing: .06em; text-transform: uppercase;
    position: relative;
  }
  .gallery-bg::after {
    content: attr(data-label); position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    padding: 28px 18px 16px; font-size: 0.82rem; text-align: left;
  }

  .gallery-bg img{
    width: 100%;
  }
  .gb1 { background: linear-gradient(135deg, #0a8f8f, #12b3b3); }
  .gb2 { background: linear-gradient(135deg, #0d3b4f, #0a7a7a); }
  .gb3 { background: linear-gradient(135deg, #0a5a6e, #0a8f8f); }
  .gb4 { background: linear-gradient(135deg, #12b3b3, #0a5a6e); }
  .gb5 { background: linear-gradient(135deg, #0d3b4f, #12b3b3); }
  .gb6 { background: linear-gradient(135deg, #0a8f8f, #0d3b4f); }

  /* ── FAQ ── */
  .faq { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; align-items: start; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1.5px solid var(--border); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--navy);
    font-size: 0.95rem; gap: 16px; user-select: none;
  }
  .faq-q:hover { color: var(--teal); }
  .faq-icon {
    width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
    background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
    transition: transform .3s, background .2s;
  }
  .faq-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2.5; transition: transform .3s; }
  .faq-item.open .faq-icon { background: var(--teal); }
  .faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

  .faq-contact-box {
    background: linear-gradient(135deg, var(--teal-pale) 0%, #d0f0f0 100%);
    border: 1.5px solid var(--teal-mid); border-radius: 20px;
    padding: 36px 30px; text-align: center; position: sticky; top: 90px;
  }
  .faq-contact-box svg { width: 48px; height: 48px; stroke: var(--teal); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
  .faq-contact-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .faq-contact-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
  .phone-link {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 1.4rem; font-weight: 700; color: var(--teal); text-decoration: none;
    margin-bottom: 20px;
  }
  .phone-link:hover { color: var(--teal-light); }
  .gmb-link {
    display: block; background: var(--teal); color: white;
    padding: 13px 24px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 0.9rem; transition: background .2s;
  }
  .gmb-link:hover { background: var(--teal-light); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--mint); }
  .testi-header { text-align: center; margin-bottom: 48px; }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .testi-card {
    background: white; border-radius: var(--radius); padding: 28px;
    border: 1.5px solid var(--border); transition: all .3s; position: relative;
  }
  .testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }
  .testi-quote { font-size: 2.5rem; color: var(--teal-mid); line-height: 1; margin-bottom: 14px; }
  .testi-text { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--teal); font-size: 1rem; }
  .testi-name strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); }
  .testi-name span { font-size: 0.78rem; color: var(--muted); }
  .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.82);
  }
  .footer-top {
    padding: 60px 5% 40px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  }
  .footer-brand { }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
 .footer-logo img{    width: 100%;
    max-width: 285px;
    max-height: 60px;
    object-fit: cover;}
  .footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

  .footer-col h4 { color: white; font-weight: 700; font-size: 0.9rem; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--teal-light); }

  .footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
  .fc-item { display: flex; align-items: flex-start; gap: 10px; }
  .fc-icon { width: 32px; height: 32px; min-width: 32px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
  .fc-icon svg { width: 15px; height: 15px; stroke: var(--teal-light); fill: none; stroke-width: 2; }
  .fc-text { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
  .fc-text a { color: var(--teal-light); text-decoration: none; }
  .fc-text a:hover { text-decoration: underline; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 5%; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px;
  }
  .footer-bottom a { color: var(--teal-light); text-decoration: none; }

  /* ── FLOATING CTA ── */
  .floating-call {
    position: fixed; bottom: 28px; right: 28px; z-index: 90;
    background: var(--teal); color: white; border-radius: 50px;
        padding: 15px; text-decoration: none; font-weight: 700;
    display: flex; align-items: center; gap: 10px; font-size: 0.92rem;
    box-shadow: 0 8px 32px rgba(10,143,143,0.4); transition: all .2s;
    animation: pulse-ring 2.5s ease infinite;
  }
  .whatsapp-link {
    position: fixed; bottom: 95px; right: 28px; z-index: 90;
    background: var(--teal); color: white; border-radius: 50px;
        padding: 15px; text-decoration: none; font-weight: 700;
    display: flex; align-items: center; gap: 10px; font-size: 0.92rem;
    box-shadow: 0 8px 32px rgba(10,143,143,0.4); transition: all .2s;
    animation: pulse-ring 2.5s ease infinite;
  }
  .floating-call:hover { background: var(--teal-light); transform: translateY(-2px); }
  .floating-call svg { width: 35px; height: 35px; fill: white; }
  .whatsapp-link:hover { background: var(--teal-light); transform: translateY(-2px); }
  .whatsapp-link img { width: 35px; height: 35px; fill: white; }



  #gallery-grid-box {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
  }

  #gallery-grid-box.expanded {
    max-height: none;
  }

  .view-toggle-btn {
    display: block;
    margin: 15px auto;
    padding: 10px 20px;
    background: var(--teal);
    padding: 14px 22px;
    border-radius: 50px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all .2s;
    animation: pulse-ring 2.5s ease infinite;
  }


  .view-toggle-btn:hover{
  background: var(--teal-light); transform: translateY(-2px)
  }

  @keyframes pulse-ring {
    0%, 100% { box-shadow: 0 8px 32px rgba(10,143,143,0.4); }
    50% { box-shadow: 0 8px 40px rgba(10,143,143,0.65); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { aspect-ratio: 16/9; max-height: 320px; }
    .about-badge-float { left: 16px; }
    .doctor-grid { grid-template-columns: 1fr; }
    .doctor-img { aspect-ratio: 16/9; max-height: 300px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-contact-box { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .doctor-grid .doctor-img{
      grid-row: 1;
    }

  .slide-1,
  .slide-2,
  .slide-3 {
    background-position: top center; /* focus subject */
    background-image: none;
  }
.slider-arr{
  top: 94%;
}
.slide-btns{
  gap: 5px;
}
.slider{
  margin-top: 40px;
  height: calc(90svh - 68px);
}
.btn-primary,.btn-outline{
      padding: 14px 15px;
}
  }
  @media (max-width: 640px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child, .gallery-item:nth-child(5) { grid-column: span 1; }
    .expertise-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .slider { height: calc(100svh - 68px); }
    .slide { padding: 0 6%; }
    .slide-visual { display: none; }
    .stats-bar { gap: 16px; }
  }