  :root{
    --deep-green:#0f2a1c;
    --dark-green:#173a26;
    --green-accent:#1f4a30;
    --cream:#f6efdf;
    --cream-2:#fbf7ec;
    --gold:#c99a3e;
    --gold-dark:#a97e2a;
    --gold-light:#e6c877;
    --text:#2a2018;
    --text-light:#5c5346;
    --border:#e3d7bc;
    --white:#ffffff;
    --shadow: 0 10px 30px rgba(23,58,38,0.08);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:"Karla", system-ui, sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{font-family:"Karla", system-ui, sans-serif;font-weight:700;color:var(--deep-green);}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;padding-left: 0rem;}
  img{max-width:100%;display:block;}
  .container{max-width:1300px;margin:0 auto;padding:0 24px;}
  .eyebrow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  .eyebrow::before,.eyebrow::after{content:"";width:36px;height:1px;background:var(--gold);}
  .section-title{
    text-align:center;font-size:clamp(28px,4vw,40px);margin:10px 0 44px;
  }
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:13px 26px;border-radius:6px;font-weight:700;font-size:14.5px;
    border:1.5px solid transparent;cursor:pointer;transition:all .25s ease;
    white-space:nowrap;
  }
  .btn-gold{background:linear-gradient(180deg,var(--gold-light),var(--gold));color:var(--deep-green);border-color:var(--gold-dark);}
  .btn-gold:hover{filter:brightness(1.05);transform:translateY(-2px);}
  .btn-outline-green{background:transparent;border-color:var(--deep-green);color:var(--deep-green);}
  .btn-outline-green:hover{background:var(--deep-green);color:#fff;}
  .btn-solid-green{background:#c99a3e;color:#fff;}
  .btn-solid-green:hover{background:#c99a3e;}
  .btn-outline-gold{background:transparent;border-color:var(--gold);color:var(--gold-dark);}
  .btn-outline-gold:hover{background:var(--gold);color:#fff;}
  .btn-white{background:#fff;color:var(--deep-green);border-color:#fff;}

  /* ===== HEADER ===== */
  header{
    background:#fffff2;
    color:#f4efe1;
    position:sticky;top:0;z-index:100;
    /* box-shadow:0 2px 14px rgba(0,0,0,0.15);*/
  }
  .nav-wrap{
    display:flex;align-items:center;justify-content:space-between;
    padding: 12px 24px;
    max-width: 1300px;
    margin:0 auto;
  }
  .logo{display:flex;align-items:center;gap:10px;}
  .logo .leaf-badge{
    width:200px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;font-size:22px;color:var(--deep-green);
    flex-shrink:0;
  }
  .logo-text{line-height:1.2;}
  .logo-text .name{font-family: "Karla", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;}
  .logo-text .sub{font-size:10px;letter-spacing:2px;color:var(--gold-light);text-transform:uppercase;}
  nav.main-nav{display:flex;align-items:center;gap:40px;}
  nav.main-nav a{font-size: 14px;
    font-weight: bold;
    color: #000;
    position: relative;
    padding: 6px 0;}
  nav.main-nav a.active{color:#000;}
  nav.main-nav a:hover{color:#000;}
  .nav-item{position:relative;}
  .has-dropdown{display:flex;align-items:center;gap:4px;cursor:pointer;}
  .has-dropdown .caret{font-size:10px;transition:transform .25s ease;}
  .nav-item.open .has-dropdown .caret{transform:rotate(180deg);}
  .submenu{
    list-style:none;margin:0;padding:10px;
    background:#fff;
    min-width:220px;
  }
  /* Desktop: floating dropdown on hover */
  @media (min-width:761px){
    .submenu{
      position:absolute;top:calc(100% + 14px);left:0;
      opacity:0;visibility:hidden;transform:translateY(8px);
      transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
      z-index:50;
    }
    .nav-item:hover .submenu,
    .nav-item.open .submenu{
      opacity:1;visibility:visible;transform:translateY(0);
    }
    .submenu li a{
      display:block;padding:2px 12px;border-radius:5px;font-size:13.5px;font-weight:600;color:#000;white-space:nowrap;
    }
    .submenu li a:hover{background:rgba(255,255,255,0.08);color:#000;}
  }
  .header-cta{display:flex;align-items:center;}
  .menu-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;}
  .menu-toggle span{width:26px;height:2.5px;background:#000;border-radius:2px;}

    /* Tablet */
  @media (max-width: 991px) {
      nav.main-nav a {
          padding: 0px 0;
      }

      .submenu {

        list-style: none;
        margin: 0;
        padding: 10px;
        /*background: var(--dark-green);
         border: 1px solid rgba(255, 255, 255, 0.1); */
        border-radius: 8px;
        /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); */
        min-width: 220px;

      }

  }

  /* Mobile */
  @media (max-width: 767px) {
      nav.main-nav a {
          padding: 0px 0;
      }

      .submenu {

        list-style: none;
        margin: 0;
        padding: 10px;
        /*background: var(--dark-green);
         border: 1px solid rgba(255, 255, 255, 0.1); */
        border-radius: 8px;
        /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); */
        min-width: 220px;

      }

  }

  /* Small Mobile */
  @media (max-width: 480px) {
      nav.main-nav a {
          padding: 0px 0;
      }
      .submenu {

        list-style: none;
        margin: 0;
        padding: 10px;
        /* background: var(--dark-green);
        border: 1px solid rgba(255, 255, 255, 0.1); */
        border-radius: 8px;
        /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); */
        min-width: 220px;

      }
  }

  /* ===== HERO ===== */
  .hero{
    background:
      radial-gradient(circle at 85% 10%, rgba(201,154,62,0.12), transparent 40%),
      linear-gradient(180deg,var(--cream-2),var(--cream));
    padding:56px 0 60px;
    border-bottom:1px solid var(--border);
    position:relative;
    overflow:hidden;
  }
  .hero-badge-row{margin-bottom:26px;}
  .hero-stats{
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    font-size: 25px;
    color: var(--text-light);
    font-weight: 600;
    flex-wrap: wrap;
    margin-bottom: 45px;

  }
  .hero-stats span.dot{color:var(--gold);}
  .hero-grid{
    display:grid;grid-template-columns:1fr 1.15fr;gap:50px;align-items:center;
  }
  .hero-copy h1{font-size:clamp(30px,4vw,44px);line-height:1.18;margin-bottom:18px;}
  .hero-copy .sub-heading{color:var(--green-accent);font-size:19px;font-weight:700;font-family:"Karla", system-ui, sans-serif;margin-bottom:14px;}
  .hero-copy p.desc{color:var(--text-light);font-size:15.5px;max-width:480px;margin-bottom:26px;}
  .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:16px;}
  .hero-actions .btn{flex:1 1 auto;min-width:200px;}
  .hero-actions-2{display:flex;flex-wrap:wrap;gap:12px;}
  .hero-actions-2 .btn{flex:1 1 auto;min-width:150px;font-size:13.5px;padding:11px 18px;}

  .portraits{
    display:grid;grid-template-columns:repeat(3,1fr);gap:18px;position:relative;
  }
  .portrait-card{text-align:center;}
  .portrait-frame{
    position:relative;
    /* border-radius:50% 50% 6px 6px / 60% 60% 6px 6px; */
    border:3px solid var(--gold);
    padding:6px;background:var(--cream-2);
    aspect-ratio:3/4;overflow:hidden;
    box-shadow:var(--shadow);
  }
  .portrait-frame .avatar{
    width:100%;height:100%;
    display:flex;align-items:center;justify-content:center;
    font-family:"Karla", system-ui, sans-serif;font-size:15px;font-weight:700;color:#fff;
    
  }
  .portrait-card h4{font-size:14.5px;margin-top:12px;color:var(--deep-green);}
  .portrait-card .role{font-size:12px;color:var(--text-light);font-weight:600;margin-top:2px;}
  .portrait-card .tag{
    display:inline-block;margin-top:8px;background:var(--deep-green);color:var(--gold-light);
    font-size:10px;letter-spacing:1px;font-weight:700;padding:4px 10px;border-radius:3px;text-transform:uppercase;
  }

  /* ===== TRUST STRIP ===== */
  .trust-strip{
    background:var(--dark-green);border-bottom:1px solid var(--border);padding:26px 0;
  }
  .trust-grid{
    display:grid;grid-template-columns:repeat(6,1fr);gap:16px;
  }
  .trust-item{display:flex;align-items:center;gap:12px;text-align:left;}
  .trust-icon{
    width:46px;height:46px;border-radius:50%;border:1.5px solid var(--gold);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:19px;color:var(--gold-dark);
  }
  .trust-item strong{display:block;font-size:13.5px;color:#fff;}
  .trust-item span{font-size:12px;color:#fff;}

  /* ===== SPECIALITIES ===== */
  .specialities{padding:50px 0 40px;background:var(--cream-2);}
  .spec-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
  }
  .spec-card{
    background:#fff;border:1px solid var(--border);border-radius:10px;padding:26px 24px 24px;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .spec-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--gold);}
  .spec-icon{
    width:52px;height:52px;border-radius:50%;background:var(--cream);
    display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:14px;color:var(--green-accent);
  }
  .spec-card h3{font-size:19px;margin-bottom:12px;}
  .spec-card ul li{
    font-size:14px;color:var(--text-light);padding:4px 0;display:flex;gap:8px;align-items:flex-start;
  }
  .spec-card ul li::before{content:"✓";color:var(--gold-dark);font-weight:700;}
  .spec-card .btn{margin-top:16px;width:100%;padding:10px;font-size:13px;}

  /* ===== FEATURED SPLIT ===== */
  .featured{padding:50px 0 40px;}
  .featured-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;}
  .feature-box{
    background:var(--cream);border:1px solid var(--border);border-radius:12px;
    padding:34px;display:flex;flex-direction:column;gap:14px;
  }
  .feature-box.doctor-box{background:linear-gradient(180deg,#fff,var(--cream-2));}
  .feature-tag{
    color:var(--gold-dark);font-weight:700;font-size:12px;letter-spacing:2px;text-transform:uppercase;
  }
  .feature-box h2{font-size:26px;}
  .feature-box .credential{color:var(--text-light);font-size:13.5px;font-weight:600;}
  .feature-media{
    display:grid;grid-template-columns:1fr 1.1fr;gap:18px;align-items:center;margin:6px 0;
  }
  .product-visual{
    
    border-radius:10px;display:flex;align-items:center;justify-content:center;
    color:var(--gold-light);font-size:13px;font-weight:700;text-align:center;overflow:hidden;
  }
  .product-visual img{width:100%;height:100%;object-fit:cover;border-radius:10px;}
  .doctor-visual{
    background:linear-gradient(160deg,#3a2f22,var(--deep-green));
    border-radius:10px;aspect-ratio:1/1.05;display:flex;align-items:center;justify-content:center;
    color:#fff;font-family:"Karla", system-ui, sans-serif;font-size:15px;font-weight:700;
  }
  .feature-box ul li{font-size:14px;color:var(--text-light);padding:4px 0;display:flex;gap:8px;}
  .feature-box ul li::before{content:"✓";color:var(--gold-dark);font-weight:700;}
  .feature-actions{display:flex;gap:12px;margin-top:8px;flex-wrap:wrap;}
  .feature-box .view-all{margin-top:6px;font-size:13.5px;font-weight:700;color:var(--green-accent);}

  /* ===== TESTIMONIALS ===== */
  .testimonials{padding:70px 0;background:var(--cream-2);}
  .test-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
  .test-card{
    border-radius:10px;overflow:hidden;background:#fff;border:1px solid var(--border);
    display:flex;flex-direction:column;justify-content:flex-end;min-height:210px;position:relative;
  }
  .test-video{
    background:linear-gradient(160deg,var(--green-accent),var(--deep-green));
    color:#fff;padding:18px;justify-content:space-between;display:flex;flex-direction:column;
  }
  .play-btn{
    width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,0.15);
    border:1.5px solid rgba(255,255,255,0.6);display:flex;align-items:center;justify-content:center;font-size:16px;
    align-self:center;margin:auto;
  }
  .test-video .label{font-weight:700;font-size:14px;}
  .test-google{
    padding:22px;display:flex;flex-direction:column;gap:6px;justify-content:center;align-items:center;text-align:center;
  }
  .test-google .g-logo{font-weight:800;font-size:20px;color:#444;}
  .test-google .g-logo span:nth-child(1){color:#4285F4;}
  .stars{color:var(--gold-dark);font-size:15px;letter-spacing:2px;}
  .test-google .score{font-weight:700;color:var(--deep-green);}
  .test-google .count{font-size:12px;color:var(--text-light);}
  .test-google a{font-size:12.5px;font-weight:700;color:var(--green-accent);margin-top:4px;}
  .test-quote{padding:24px;display:flex;flex-direction:column;justify-content:center;gap:10px;}
  .test-quote .quote-mark{font-size:30px;color:var(--gold);font-family:"Karla", system-ui, sans-serif;line-height:0.5;}
  .test-quote p{font-size:13.5px;color:var(--text-light);font-style:italic;}
  .test-quote .author{font-weight:700;font-size:13px;color:var(--deep-green);font-style:normal;}

  /* ===== CTA BANNER ===== */
  .cta-banner{
    background:var(--dark-green);color:#fff;padding:26px 0;
  }
  .cta-inner{
    display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  }
  .cta-left{display:flex;align-items:center;gap:16px;}
  .cta-left .icon-circle{
    width:52px;height:52px;border-radius:50%;background:var(--gold);color:var(--deep-green);
    display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0;
  }
  .cta-left h3{color:#fff;font-size:20px;}
  .cta-left span{color:#c9d6cb;font-size:13.5px;}
  .cta-steps{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
  .cta-step{display:flex;align-items:center;gap:8px;font-size:13px;}
  .cta-step .num{
    width:32px;height:32px;border-radius:50%;border:1.5px solid var(--gold);color:var(--gold-light);
    display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;flex-shrink:0;
  }
  .cta-step small{display:block;color:#a9b8ab;font-size:11px;}
  .cta-step strong{color:#fff;font-size:13px;}
  .cta-arrow{color:var(--gold);font-size:16px;}
  .cta-right{text-align:right;}
  .cta-right span{display:block;font-size:12px;color:#c9d6cb;margin-top:6px;}

  /* ===== FOOTER ===== */
  footer{background:var(--deep-green);color:#d9e0d5;padding:56px 0 0;}
  .footer-grid{
    display:grid;grid-template-columns:1.3fr 1.3fr 1.3fr 1.1fr;gap:34px;padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-col h4
  {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: "Karla", system-ui, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
  }
  .clinic-item{display:flex;gap:12px;margin-bottom:18px;}
  .clinic-thumb{
    width:64px;height:52px;border-radius:6px;flex-shrink:0;
    background:linear-gradient(160deg,var(--green-accent),#2c4f3a);
    display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--gold-light);
  }
  .clinic-item h5{color:#fff;font-size:14px;margin-bottom:3px;}
  .clinic-item p{font-size:12.5px;color:#aebba7;margin-bottom:4px;}
  .clinic-item a{font-size:12px;color:var(--gold-light);font-weight:700;}
  .footer-col p, .footer-col li{font-size:13.5px;color:#c3ccbe;margin-bottom:12px;display:flex;gap:8px;align-items:flex-start;}
  .footer-col a.link-btn{
    display:inline-block;margin-top:8px;border:1px solid var(--gold);color:var(--gold-light);
    padding:9px 18px;border-radius:6px;font-size:13px;font-weight:700;
  }
  .social-row{display:flex;gap:10px;margin-top:14px;}
  .social-row a{
    width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;font-size:14px;color:#fff;
  }
  .footer-bottom{
    display:flex;align-items:center;justify-content:space-between;padding:18px 0;font-size:12.5px;color:#9aa693;flex-wrap:wrap;gap:10px;
  }
  .footer-bottom a{color:#c3ccbe;margin-left:16px;}

  /* ===== RESPONSIVE ===== */
  @media (max-width:1024px){
    .hero-grid{grid-template-columns:1fr;}
    .portraits{max-width:520px;margin:0 auto;}
    .spec-grid{grid-template-columns:repeat(2,1fr);}
    .featured-grid{grid-template-columns:1fr;}
    .test-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .trust-grid{grid-template-columns:repeat(3,1fr);}
  }
  @media (max-width:760px){
    nav.main-nav{
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
        transform: translateY(-130%);
        transition: transform .3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        max-height: 80vh;
        overflow: auto;
    }
    nav.main-nav.open{transform:translateY(0);}
    .menu-toggle{display:flex;}
    .header-cta .btn span.txt{display:none;}
    .hero-actions .btn, .hero-actions-2 .btn{min-width:100%;}
    .spec-grid{grid-template-columns:1fr;}
    .test-grid{grid-template-columns:1fr;}
    .trust-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr;}
    .cta-inner{flex-direction:column;align-items:flex-start;}
    .cta-right{text-align:left;}
    .feature-media{grid-template-columns:1fr 1fr;}
    .header-cta { display: none; }
  }

.stories-col{ background:#f1e9d2; }
.story-card{
  background:#fff;
  border-radius:10px;
  padding:1rem;
  border:1px solid #eee1c4;
}
.story-card h6{ color:var(--green); font-weight:700; font-size:.9rem; }
.story-card img{ width:50%; border-radius:6px; }
.story-card p{ font-size:.78rem; color:var(--text-muted); margin-bottom:.3rem; }
.patient-name{ font-size:.78rem; font-style:italic; color:var(--gold); font-weight:600; }
/* Tablet */
@media (max-width: 768px) {
    .logo .leaf-badge {
        width: 65px;
        font-size: 19px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo .leaf-badge {
        width: 160px;
        font-size: 17px;
    }
}



.slider-wrap{
    max-width:1180px;
    margin:0 auto;
    position:relative;
  }
 
  .grid-header{
    text-align:center;
    margin-bottom:44px;
  }
  .grid-eyebrow{
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--gold-dark);
    font-weight:600;
    margin-bottom:10px;
  }
  .grid-title{
    font-family:'Fraunces', serif;
    font-size:clamp(28px, 3.4vw, 40px);
    color:var(--teal-deep);
    margin:0;
  }
 
  /* Track */
  .track-viewport{
    overflow:hidden;
  }
 
  .track{
    display:flex;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:6px 6px 20px;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
  .track::-webkit-scrollbar{ display:none; }
 
  .card{
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 285px;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    /*min-height: 250px;*/
    text-align: center;
  }

  .nbt{
    background: var(--green-accent);
    border-radius: 18px;
    padding: 10px 24px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;width: 155px;margin-top: 30px;
  }
 
  .btn-details{
    display: block;
    width: 100%;
    text-align: center;
    background: var(--green-accent);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 0px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  .btn-details:hover{
    background:var(--gold-dark);
    transform:translateY(-1px);
  }
 
  /* Slide controls */
  .slide-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    background:#c99a3e;
    border:1px solid var(--card-border);
    box-shadow:0 10px 24px -8px rgba(22,51,46,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2;
    transition:background .2s ease;
  }
  .slide-btn:hover{ background:#c99a3e; }
  .slide-btn.prev{ left:-24px; }
  .slide-btn.next{ right:-24px; }
  .slide-btn svg{ width:18px; height:18px; stroke:#000; }
 
  /* Progress dots */
  .dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:8px;
  }
  .dots span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--card-border);
    transition:background .2s ease, width .2s ease;
  }
  .dots span.active{
    background:var(--gold);
    width:20px;
    border-radius:4px;
  }
 
  @media (max-width:720px){
    .slide-btn{ display:none; }
    .card{ width:82vw; }
  }

    .stories-col{ background:#f1e9d2; }
.story-card{
  background:#fff;
  border-radius:10px;
  padding:1rem;
  border:1px solid #eee1c4;
}
.story-card h6{ color:var(--green); font-weight:700; font-size:.9rem; }
.story-card img{ width:50%; border-radius:6px; }
.story-card p{ font-size:.78rem; color:var(--text-muted); margin-bottom:.3rem; }
.patient-name{ font-size:.78rem; font-style:italic; color:var(--gold); font-weight:600; }

  .floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.call-btn,
.whatsapp-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: .3s ease;
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: scale(1.1);
}

.call-btn::before,
.whatsapp-btn::before{
    content:'';
    position:absolute;
    /* width: 45px;
    height: 45px; */
    border-radius:50%;
    animation:pulse 1.8s infinite;
}

.call-btn::before{
    background:rgba(0,123,255,.35);
}

.whatsapp-btn::before{
    background:rgba(37,211,102,.35);
}

.ayurveda-banner {
    width: 100%;
    background: #f8f2e3;
}

/* Common */
.clinic-image-card,
.clinic-info-card,
.appointment-card {
    height: 100%;
    min-height: 185px;
    border-radius: 10px;
    overflow: hidden;
}

/* Image */
.clinic-image-card img {
    width: 100%;
    height: 100%;
    min-height: 185px;
    object-fit: cover;
    display: block;
}

/* Clinic Information */
.clinic-info-card {
    background: #f8f2e3;
    border: 1px solid #ded4bd;
    padding: 12px 10px;
    color: #222;
}

.clinic-info-card h5 {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.clinic-info-card p {
    font-size: 17px;
    margin-bottom: 6px;
}

.clinic-info-card i {
    width: 17px;
    display: inline-block;
    color: #795d20;
    font-size: 11px;
}

/* Direction Button */
.direction-btn {
    display: inline-block;
    padding: 4px 12px;
    margin-top: 2px;
    background: #f8f2e3;
    border: 1px solid #cdbf9e;
    border-radius: 4px;
    color: #222;
    text-decoration: none;
    font-size: 18px;
}

.direction-btn:hover {
    background: #e8dec7;
    color: #000;
}

/* Appointment */
.appointment-card {
    background: #075b3d;
    padding: 13px 16px;
    color: #fff;
}

.appointment-card h4 {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #f4e6bd;
}

.appointment-card p {
    font-size: 11px;
    margin-bottom: 9px;
}

.appointment-card i {
    width: 20px;
    display: inline-block;
    color: #e8d49a;
}

.book-btn {
    display: block;
    background: #f8f2e3;
    color: #222;
    text-align: center;
    padding: 7px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin-top: 12px;
}

.book-btn:hover {
    background: #fff;
    color: #075b3d;
}
 
.reviews-section {
    padding: 50px 0;
    background: #fff;
}

.reviews-wrapper {
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
}

.reviews-title {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-title h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
    text-transform: uppercase;
}

.reviews-title p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

/* Google Review Box */
.google-review-box {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google-logo {
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.google-logo .g-blue {
    color: #4285F4;
}

.google-logo .o-red {
    color: #EA4335;
}

.google-logo .o-yellow {
    color: #FBBC05;
}

.google-logo .g-green {
    color: #34A853;
}

.reviews-text {
    font-size: 19px;
    font-weight: 600;
    color: #222;
    margin-left: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.stars {
    color: #c66a19;
    font-size: 27px;
    letter-spacing: 2px;
    line-height: 1;
}

.based-reviews {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.read-reviews-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 22px;
    text-align: center;
    transition: 0.3s;
}

.read-reviews-btn:hover {
    background: #333;
    color: #fff;
}

/* Review Cards */
.patient-review {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 25px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.quote {
    font-size: 55px;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 35px;
    color: #111;
    margin-bottom: 10px;
}

.review-content {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.review-bottom {
    margin-top: 18px;
}

.review-stars {
    color: #c66a19;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}

.review-author {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .reviews-wrapper {
        padding: 22px;
    }

    .google-review-box {
        padding: 25px 20px;
    }

    .patient-review {
        padding: 22px;
        min-height: 210px;
    }

    .review-content {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .reviews-section {
        padding: 30px 15px;
    }

    .reviews-wrapper {
        padding: 18px;
        border-radius: 18px;
    }

    .reviews-title {
        margin-bottom: 20px;
    }

    .reviews-title h2 {
        font-size: 22px;
    }

    .reviews-title p {
        font-size: 14px;
    }

    .google-review-box {
        text-align: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .rating {
        justify-content: center;
    }

    .stars {
        font-size: 24px;
    }

    .rating-number {
        font-size: 28px;
    }

    .patient-review {
        min-height: auto;
        margin-bottom: 15px;
    }

    .review-content {
        font-size: 18px;
    }

    .quote {
        font-size: 48px;
    }
}

/* =========================
    Main Section
========================= */

.product-range-section {
    padding: 60px 0;
    background: #fff;
}

.product-wrapper {
    border: 1px solid #e2e2dc;
    overflow: hidden;
    background: #f9f9f6;
}

.product-column {
    padding: 35px 5px;
    height: 100%;
}

.heritage-column {
    border-right: 20px solid #deded8;
}


/* =========================
    Heading
========================= */

.small-heading {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.small-heading::before,
.small-heading::after {
    content: "—";
    margin: 0 10px;
    color: #9a896b;
}

.product-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.product-since {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.product-since::before,
.product-since::after {
    content: "—";
    margin: 0 10px;
    color: #9a896b;
}

.product-description {
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #222;
    max-width: 550px;
    margin: 0 auto 25px;
}


/* =========================
    Product Images
========================= */

.heritage-product-image {
    width: 100%;
    max-width: 340px;
    height: 260px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.modern-product-images {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.modern-product-images img {
    width: 32%;
    height: 280px;
    object-fit: contain;
}


/* =========================
    Features
========================= */

.features-row {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 5px 20px;
    border-right: 1px solid #ddd;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 68px;
    height: 68px;
    border: 1px solid #d6d1c5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    color: #604b2e;
}

.feature-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin: 0;
}


/* =========================
    Ayurvedic Benefits
========================= */

.benefits-row {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.benefit-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}

.benefit-icon {
    width: 75px;
    height: 75px;
    border: 1px solid #d8d3c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 27px;
    color: #604b2e;
}

.benefit-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}


/* =========================
    Button
========================= */

.product-btn {
    display: block;
    width: fit-content;
    margin: 28px auto 0;
    padding: 17px 35px;
    background: #050505;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s ease;
}

.product-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
    Mobile
========================= */

@media (max-width: 991px) {

    .product-column {
        padding: 30px 25px;
    }

    .heritage-column {
        border-right: none;
        border-bottom: 1px solid #deded8;
    }

    .product-title {
        font-size: 26px;
    }

    .modern-product-images {
        height: 250px;
    }

    .modern-product-images img {
        height: 230px;
    }
}


@media (max-width: 767px) {

    .product-range-section {
        padding: 30px 15px;
    }

    .product-wrapper {
        border-radius: 18px;
    }

    .product-column {
        padding: 25px 15px;
    }

    .small-heading {
        font-size: 14px;
    }

    .small-heading::before,
    .small-heading::after {
        margin: 0 5px;
    }

    .product-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .product-since {
        font-size: 18px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .heritage-product-image {
        height: 220px;
    }

    .features-row {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 0 0 33.333%;
        padding: 5px 8px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .feature-text {
        font-size: 13px;
    }

    .modern-product-images {
        height: 210px;
        gap: 3px;
    }

    .modern-product-images img {
        height: 200px;
        width: 33%;
    }

    .benefits-row {
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .benefit-text {
        font-size: 13px;
    }

    .product-btn {
        width: 100%;
        text-align: center;
        padding: 14px 15px;
        font-size: 14px;
    }
}


@media (max-width: 400px) {

    .feature-item {
        flex: 0 0 100%;
        margin-bottom: 15px;
        border-right: none;
    }

    .modern-product-images {
        height: 180px;
    }

    .modern-product-images img {
        height: 170px;
    }
}


.clinic-highlights {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 14px 18px;
    background: #fffdf5;
    border: 2px solid #eadfbc;
    border-radius: 18px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.1fr 1fr;
    align-items: stretch;
}

.highlight-item {
    min-height: 145px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Vertical separator */
.highlight-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    width: 1px;
    height: 84%;
    background: #e5d8b5;
}

.highlight-content {
    width: 100%;
}

.icon {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 8px;
    color: #a87816;
}

.title {
    color: #222;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 7px;
}

.subtitle {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}

.rating {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}

.stars {
    color: #a87816;
    font-size: 19px;
    letter-spacing: 2px;
    margin: 3px 0;
}

.number {
    color: #222;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gold {
    color: #9a6b12;
}

.green-icon {
    color: #145a3b;
    font-size: 43px;
}

.location-icon {
    color: #9b6910;
    font-size: 43px;
}

.location-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.location-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: bold;
}

.location-btn {
    display: inline-block;
    background: #075d3d;
    color: #fff;
    text-decoration: none;
    padding: 8px 17px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.location-btn:hover {
    background: #05482f;
}


/* =========================
    TABLET
========================== */

@media (max-width: 900px) {

    .clinic-highlights {
        margin: 15px;
        padding: 12px;
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlight-item {
        min-height: 150px;
        padding: 15px 10px;
    }

    .highlight-item:nth-child(3)::after {
        display: none;
    }

    .highlight-item:nth-child(4)::after {
        display: none;
    }

    .title {
        font-size: 15px;
    }

    .subtitle,
    .rating,
    .location-text {
        font-size: 13px;
    }
}


/* =========================
    MOBILE
========================== */

@media (max-width: 600px) {

    .clinic-highlights {
        margin: 10px;
        padding: 8px;
        border-radius: 14px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item {
        min-height: 145px;
        padding: 15px 8px;
    }

    /* Remove all desktop separators */
    .highlight-item::after {
        display: none !important;
    }

    /* Add horizontal separator */
    .highlight-item:nth-child(1),
    .highlight-item:nth-child(2),
    .highlight-item:nth-child(3),
    .highlight-item:nth-child(4) {
        border-bottom: 1px solid #e5d8b5;
    }

    /* Add vertical separator between columns */
    .highlight-item:nth-child(odd) {
        border-right: 1px solid #e5d8b5;
    }

    .highlight-item:nth-child(5) {
        grid-column: 1 / -1;
        border-bottom: none;
        border-right: none;
    }

    .icon,
    .green-icon,
    .location-icon {
        font-size: 34px;
    }

    .title {
        font-size: 14px;
        line-height: 1.3;
    }

    .subtitle,
    .rating,
    .location-text {
        font-size: 12px;
    }

    .number {
        font-size: 19px;
    }

    .stars {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .location-btn {
        font-size: 12px;
        padding: 7px 13px;
    }
}


/* =========================
    SMALL MOBILE
========================== */

@media (max-width: 380px) {

    .highlight-item {
        min-height: 135px;
        padding: 12px 5px;
    }

    .icon,
    .green-icon,
    .location-icon {
        font-size: 30px;
    }

    .title {
        font-size: 13px;
    }

    .subtitle,
    .rating,
    .location-text {
        font-size: 11px;
    }

    .number {
        font-size: 17px;
    }
}

.banner {
    width: 100%;
    height: 590px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    object-position: center;
    display: block;
}

/* Mobile */
@media (max-width: 767px) {
    .banner {
        height: auto;
    }

    .banner img {
        object-fit: cover;
        object-position: center;
    }
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    width: 130px;
}
.label{
  font-weight: bold;
}

.tick {
    width: 22px;
    height: 22px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.primary-btn {
    display: inline-block;
    font-size: 14px;
    padding: 12px 36px 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: #009B54;
    border-radius: 2px;
    letter-spacing: 2px;
}
.space {
    padding: 0px 0 15px;
}

   /* Breadcrumb Banner */
.breadcrumb-banner {
    position: relative;
    width: 100%;
    height: 200px;

    background-image: url("https://www.planetayurveda.com/wp-content/uploads/2024/03/inner-header-bg-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /*background: rgba(0, 0, 0, 0.55);*/
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

/* Page Title */
.breadcrumb-content h1 {
    margin: 0 0 15px;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #fff;
}


/* =========================
   Tablet
========================= */

@media (max-width: 768px) {

    .breadcrumb-banner {
        height: 250px;
    }

    .breadcrumb-content h1 {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 15px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 480px) {

    .breadcrumb-banner {
        height: 130px;
        background-position: center;
    }

    .breadcrumb-content {
        padding: 0 15px;
    }

    .breadcrumb-content h1 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .breadcrumb {
        font-size: 14px;
        gap: 7px;
    }
}