    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { overflow-x: hidden; }
    body { font-family:'Plus Jakarta Sans',sans-serif; background:#f4f6fb; overflow-x:hidden; }
    a { text-decoration:none; }
    ul { list-style:none; }
 
    /* ── TOP BAR ── */
    .top-bar { width:100%; background:#0a6ef5; padding:9px 0; }
    .top-container {
      width:90%; max-width:1280px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between;
    }
    .top-left a, .top-right a {
      color:#fff; font-size:13px; font-weight:500;
      display:flex; align-items:center; gap:7px; transition:opacity .2s;
    }
    .top-left a:hover, .top-right a:hover { opacity:.8; }
    .top-right { display:flex; align-items:center; gap:20px; }
    .social-icons { display:flex; align-items:center; gap:8px; }
    .social-icons a {
      width:30px; height:30px; border-radius:50%;
      background:rgba(255,255,255,.18); color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-size:12px; transition:background .25s, color .25s, transform .25s;
    }
    .social-icons a:hover { background:#fff; color:#0a6ef5; transform:translateY(-2px); }
 
    /* ── NAVBAR ── */
    .navbar { width:100%; background:#fff; border-bottom:1px solid #eaeaea; position:sticky; top:0; z-index:998; }
    .nav-container {
      width:90%; max-width:1280px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between;
      padding:16px 0; gap:16px;
    }
    .logo { color:#0b1c2d; letter-spacing:-.5px; white-space:nowrap; flex-shrink:0; display:flex; flex-direction:column; line-height:1.05; }
    .logo strong{font-size:24px; font-weight:800; display:block;}
    .logo span { color:#0a6ef5; }
    .logo small{font-size:10px; font-weight:700; color:#526b7c; letter-spacing:.7px; margin-top:5px;}
 
    /* desktop nav */
    .nav-menu { display:flex; align-items:center; gap:28px; flex-wrap:nowrap; }
    .nav-menu > li { position:relative; }
    .nav-menu > li > a {
      color:#1a2b3c; font-size:14px; font-weight:500;
      display:flex; align-items:center; gap:4px;
      white-space:nowrap; transition:color .2s;padding: 11px;
    }
    .nav-menu > li > a:hover { color:#0a6ef5; }
    .nav-menu > li > a i { font-size:10px; transition:transform .2s; }
    .nav-menu > li:hover > a i { transform:rotate(180deg); }
 
    /* dropdown */
    .dropdown-menu {
      position:absolute; top:calc(64% + 12px); left:0;
      background:#fff; min-width:260px;
      padding:8px 0;
      box-shadow:0 12px 40px rgba(10,110,245,.12), 0 2px 8px rgba(0,0,0,.06);
      border:1px solid #e8eef8;
      opacity:0; visibility:hidden; pointer-events:none;
      transform:translateY(6px);
      transition:opacity .22s, transform .22s, visibility .22s;
      z-index:200;
    }
    .dropdown:hover .dropdown-menu {
      opacity:1; visibility:visible; pointer-events:all; transform:translateY(0);
    }
    .dropdown-menu li a {
      padding:10px 18px; font-size:13.5px; font-weight:400;
      color:#ffffff; display:block; transition:background .15s, color .15s;background-color: #0a6ef5;
    }
    .dropdown-menu li a:hover { background:#f0f6ff; color:#0a6ef5; }
 
    /* book btn */
    .nav-appointment-btn {
      background:#051122; color:#fff; padding:11px 22px; border-radius:50px;
      font-size:13.5px; font-weight:600;
      display:flex; align-items:center; gap:10px;
      transition:background .25s, transform .2s; white-space:nowrap; flex-shrink:0;
      width:auto; height:auto; margin:0;
    }
    .nav-appointment-btn .btn-icon {
      width:28px; height:28px; border-radius:50%;
      background:rgba(255,255,255,.2);
      display:flex; align-items:center; justify-content:center; font-size:11px;color: white;
    }
    .nav-appointment-btn:hover { background:#0a6ef5; transform:translateY(-2px); }
 
    /* hamburger */
    .menu-toggle {
      display:none; background:none; border:2px solid #0a6ef5;
      border-radius:8px; width:40px; height:40px; cursor:pointer;
      align-items:center; justify-content:center;
      color:#0a6ef5; font-size:18px; flex-shrink:0; transition:background .2s;
    }
    .menu-toggle:hover { background:#f0f6ff; }
 
    /* ── OVERLAY ── */
    .overlay {
      position:fixed; inset:0; background:rgba(5,17,34,.55);
      z-index:9998; opacity:0; visibility:hidden;
      transition:opacity .35s, visibility .35s;
    }
    .overlay.show { opacity:1; visibility:visible; }
 
    /* ── MOBILE MENU ── */
    .mobile-menu {
      position:fixed; top:0; left:0; height:100dvh; width:300px;
      background:#fff; z-index:9999;
      transform:translateX(-100%);
      transition:transform .38s cubic-bezier(.4,0,.2,1);
      display:flex; flex-direction:column;
      overflow:hidden;
    }
    .mobile-menu.open { transform:translateX(0); }
 
    /* mobile header */
    .mob-header {
      display:flex; align-items:center; justify-content:space-between;
      padding:18px 20px; border-bottom:1px solid #eaeaea; flex-shrink:0;
      background:#fff;
    }
    .mob-logo { color:#0b1c2d; display:flex; flex-direction:column; line-height:1.05; }
    .mob-logo strong{font-size:19px; font-weight:800; display:block;}
    .mob-logo span { color:#0a6ef5; }
    .mob-logo small{font-size:9px; font-weight:700; color:#526b7c; letter-spacing:.4px; margin-top:5px;}
    .mob-close {
      width:36px; height:36px; border-radius:8px; background:#f4f6fb;
      border:none; cursor:pointer; color:#0b1c2d; font-size:16px;
      display:flex; align-items:center; justify-content:center; transition:background .2s, color .2s;
    }
    .mob-close:hover { background:#fee2e2; color:#e53e3e; }
 
    /* mobile nav scroll area */
    .mob-nav-wrap { flex:1; overflow-y:auto; }
    .mobile-nav li { border-bottom:1px solid #f0f0f0; }
    .mobile-nav li > a {
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 20px; font-size:15px; font-weight:500; color:#1a2b3c;
      transition:background .15s, color .15s;
    }
    .mobile-nav li > a:hover { background:#f7f9ff; color:#0a6ef5; }
 
    /* treatment accordion */
    .treat-toggle .acc-icon { font-size:11px; transition:transform .28s; flex-shrink:0; }
    .treat-toggle.open .acc-icon { transform:rotate(180deg); }
    .sub-wrap { max-height:0; overflow:hidden; transition:max-height .38s cubic-bezier(.4,0,.2,1); background:#fafbff; }
    .sub-wrap.open { max-height:1000px; }
    .mobile-nav .sub-item > a {
      padding:11px 20px 11px 36px; font-size:13.5px;
      font-weight:400; color:#555; background:#fafbff;
    }
    .mobile-nav .sub-item > a:hover { color:#0a6ef5; background:#f0f6ff; }
 
    /* mobile book btn */
    .mob-book {
      margin:16px 20px 24px; border-radius:50px; padding:14px 20px;
      background:#0a6ef5; color:#fff; font-size:14px; font-weight:600;
      display:flex; align-items:center; justify-content:center; gap:10px;
      transition:background .25s; flex-shrink:0;
    }
    .mob-book:hover { background:#051122; }
 
    /* ── RESPONSIVE ── */
    @media (max-width:1024px) {
      .nav-menu { gap:20px; }
      .nav-menu > li > a { font-size:13px; }
    }
    @media (max-width:900px) {
      .nav-menu, .nav-appointment-btn { display:none; }
      .menu-toggle { display:flex; }
      .logo { font-size:21px; }
    }
    @media (max-width:600px) {
      .top-container { flex-direction:column; gap:8px; text-align:center; }
      .top-right { flex-wrap:wrap; justify-content:center; gap:10px; }
      .logo { font-size:18px; }
      .nav-container { padding:13px 0; }
    }
    @media (max-width:360px) {
      .mobile-menu { width:280px; }
    }

















/* =========================
   HERO IMAGE ONLY
========================= */
.tcb-fullscreen-wrapper{
    width:100%;
    position:relative;
    overflow:hidden;
    background:#fff;
}

.carousel-inner{
    display:flex;
    transition:transform .6s ease-in-out;
    width:100%;
}

.item{
    min-width:100%;
    width:100%;
    flex:0 0 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.item img{
    width:100%;
    display:block;
    object-fit:cover;   /* contain ki jagah cover */
    margin:0;
    padding:0;
    border:0;
    line-height:0;
}

/* Controls */
.carousel-control{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.4);
    color:#fff;
    border:none;
    font-size:28px;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.carousel-control:hover{
    background:rgba(0,0,0,.7);
}

.carousel-control.left{
    left:20px;
}

.carousel-control.right{
    right:20px;
}

/* Indicators */
.carousel-indicators{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    list-style:none;
    z-index:10;
    margin:0;
    padding:0;
}

.carousel-indicators li{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.carousel-indicators li.active{
    background:#fff;
}

/* Tablet */
@media(max-width:992px){

    .carousel-control{
        width:45px;
        height:45px;
        font-size:24px;
    }

}

/* Mobile */
@media(max-width:768px){

    .tcb-fullscreen-wrapper{
        height:auto;
    }

    .carousel-inner{
        width:100%;
    }

    .item{
        min-width:100%;
    }

    .item img{
        width:100%;
        height:auto;
        object-fit:cover;
    }

    .carousel-control{
        width:40px;
        height:40px;
        font-size:20px;
    }

    .carousel-control.left{
        left:10px;
    }

    .carousel-control.right{
        right:10px;
    }

    .carousel-indicators{
        bottom:10px;
    }

    .carousel-indicators li{
        width:10px;
        height:10px;
    }

}
  /* =========================
   ABOUT SECTION
========================= */

.about-section{
  width:100%;
  padding:100px 0;
  background:#fff;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.about-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:460px 1fr;
  gap:75px;
  align-items:center;
}

/* IMAGE DESIGN */

.about-image{
  position:relative;
  height:580px;
}

.about-image::before{
  content:"";
  position:absolute;
  top:-20px;
  left:-20px;
  width:100%;
  height:100%;
  border:2px solid #dbeafe;
  z-index:1;
}

.about-image::after{
  content:"";
  position:absolute;
  right:-35px;
  bottom:-35px;
  width:180px;
  height:180px;
  background:#0b7cff;
  z-index:0;
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:relative;
  z-index:2;

  /* UNIQUE MODERN CUT */
  clip-path:polygon(
    0 0,
    82% 0,
    100% 12%,
    100% 100%,
    18% 100%,
    0 88%
  );
}

/* FLOATING SHAPE */

.about-shape{
  position:absolute;
  top:28px;
  right:-28px;
  width:120px;
  height:120px;
  border:14px solid #fff;
  background:#0b7cff;
  z-index:3;
}

/* CONTENT */

.about-subtitle{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  color:#0b7cff;
  margin-bottom:16px;
}

.about-content h2{
  font-size:48px;
  line-height:1.15;
  color:#0f172a;
  font-weight:700;
  margin-bottom:14px;
}

.about-content h2 span{
  color:#0b7cff;
}

.about-content h4{
  font-size:18px;
  color:#0b7cff;
  font-weight:600;
  margin-bottom:24px;
}

.about-content p{
  font-size:16px;
  line-height:1.95;
  color:#64748b;
  margin-bottom:18px;
}

/* FEATURES */

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-top:30px;
  margin-bottom:36px;
}

.about-features div{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#0f172a;
  font-weight:500;
}

.about-features div i{
  width:24px;
  height:24px;
  background:#eef5ff;
  color:#0b7cff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
}

/* BUTTON */

.read-more-btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:155px;
  height:48px;
  padding:0 24px;
  background:#0b7cff;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  transition:.35s ease;
  z-index:1;
}

.read-more-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#073047;
  transition:.35s ease;
  z-index:-1;
}

.read-more-btn:hover::before{
  left:0;
}

.read-more-btn:hover{
  box-shadow:0 12px 24px rgba(11,124,255,.18);
}

.read-more-btn span i{
  font-size:11px;
  transition:.35s ease;
}

.read-more-btn:hover span i{
  transform:translateX(4px);
}

/* RESPONSIVE */

@media(max-width:991px){

  .about-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-image{
    max-width:520px;
    height:520px;
  }

}

@media(max-width:576px){

  .about-section{
    padding:70px 0;
  }

  .about-container{
    width:90%;
  }

  .about-image{
    height:380px;
  }

  .about-image::after{
    width:100px;
    height:100px;
    right:-18px;
    bottom:-18px;
  }

  .about-shape{
    width:70px;
    height:70px;
    border-width:8px;
    right:-10px;
  }

  .about-content h2{
    font-size:32px;
  }

  .about-content h4{
    font-size:15px;
  }

  .about-content p{
    font-size:13.5px;
  }

  .about-features{
    grid-template-columns:1fr;
  }

}









.treatment-section{
  width:100%;
  padding:80px 0;
  background:#f7f9fc;
  font-family:'Poppins',sans-serif;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  padding:0 15px;
}

.section-title span{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  color:#0b7cff;
  margin-bottom:10px;
}

.section-title h2{
  font-size:38px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:12px;
  line-height:1.2;
}

.section-title h2 b{
  color:#0b7cff;
}

.section-title p{
  font-size:14px;
  color:#64748b;
  line-height:1.8;
  max-width:620px;
  margin:auto;
}

.treatment-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.treatment-card{
  background:#fff;
  padding:14px;
  border:1px solid #dfe8f2;
  box-shadow:0 8px 24px rgba(15,23,42,0.04);
}

.treatment-img{
  width:100%;
  height:220px;
  overflow:hidden;
  margin-bottom:20px;
}

.treatment-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s ease;
}

.treatment-card:hover .treatment-img img{
  transform:scale(1.05);
}

.treatment-icon{
  display:none;
}

.treatment-content{
  padding:4px 8px 10px;
}

.treatment-card h3{
  font-size:18px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:10px;
}

.treatment-card p{
  font-size:13.5px;
  line-height:1.8;
  color:#64748b;
  margin-bottom:22px;
}

.treatment-card a{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-width:140px;
  height:42px;
  padding:0 18px;
  background:#0b7cff;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  transition:.35s ease;
  z-index:1;
}

.treatment-card a::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#073047;
  transition:.35s ease;
  z-index:-1;
}

.treatment-card a:hover::before{
  left:0;
}

.treatment-card a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(11,124,255,.22);
}

.treatment-card a i{
  font-size:11px;
  transition:.35s ease;
}

.treatment-card a:hover i{
  transform:translateX(4px);
}

@media(max-width:991px){

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

}

@media(max-width:576px){

  .treatment-section{
    padding:65px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h2{
    font-size:30px;
  }

  .section-title p{
    font-size:13px;
  }

  .treatment-container{
    width:90%;
    grid-template-columns:1fr;
    gap:22px;
  }

  .treatment-img{
    height:210px;
  }

  .treatment-card{
    padding:12px;
  }

}





/* =========================
   APPOINTMENT BAR
========================= */
.appointment-bar{
  width:100%;
  padding:55px 0;
  background:#0b7cff;
  font-family:'Poppins',sans-serif;
}

.appointment-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  background:#fff;
  padding:34px 38px;
  display:grid;
  grid-template-columns:1fr 1.1fr auto;
  align-items:center;
  gap:34px;
  border:1px solid rgba(255,255,255,0.25);
  box-shadow:0 18px 45px rgba(15,23,42,0.12);
}

.appointment-box h3{
  color:#0f172a;
  font-size:20px;
  font-weight:600;
  margin:0 0 8px;
}

.appointment-box p{
  color:#64748b;
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.appointment-box p + p{
  margin-top:3px;
}

.appointment-box p a{
  color:#0b7cff;
  font-weight:600;
  text-decoration:none;
}

.center-box{
  padding-left:34px;
  border-left:1px solid #e2e8f0;
}

.appointment-btn{
  position:relative;
  overflow:hidden;
  height:46px;
  padding:0 18px 0 24px;
  background:#0b7cff;
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:13.5px;
  font-weight:600;
  white-space:nowrap;
  z-index:1;
  transition:.35s ease;
}

.appointment-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#073047;
  z-index:-1;
  transition:.35s ease;
}

.appointment-btn:hover::before{
  left:0;
}

.appointment-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(11,124,255,.25);
}

.appointment-btn span{
  width:26px;
  height:26px;
  background:#fff;
  color:#0b7cff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  transition:.35s ease;
}

.appointment-btn:hover span{
  transform:translateX(4px);
}

@media(max-width:991px){
  .appointment-container{
    grid-template-columns:1fr;
    gap:24px;
  }

  .center-box{
    padding-left:0;
    border-left:none;
    padding-top:22px;
    border-top:1px solid #e2e8f0;
  }
}

@media(max-width:576px){
  .appointment-bar{
    padding:45px 0;
  }

  .appointment-container{
    width:90%;
    padding:28px 22px;
  }

  .appointment-box h3{
    font-size:18px;
  }

  .appointment-box p{
    font-size:13.5px;
  }

  .appointment-btn{
    width:100%;
  }
}
/* =========================
   GALLERY SECTION
========================= */
.gallery-section{
  width:100%;
  padding:85px 0;
  background:#f7f9fc;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

/* =========================
   TITLE
========================= */

.gallery-title{
  text-align:center;
  margin-bottom:50px;
  padding:0 15px;
}

.gallery-title span{
  display:inline-block;
  color:#0b7cff;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  margin-bottom:10px;
}

.gallery-title h2{
  font-size:38px;
  font-weight:700;
  color:#0f172a;
  line-height:1.2;
  margin:0;
}

.gallery-title h2 b{
  color:#0b7cff;
}

/* =========================
   GRID
========================= */

.gallery-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* =========================
   ITEM
========================= */

.gallery-item{
  position:relative;
  background:#fff;
  padding:10px;
  border:1px solid #dfe8f2;
  overflow:hidden;
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition:.4s ease;
}

/* =========================
   SIMPLE HOVER
========================= */

.gallery-item:hover img{
  transform:scale(1.04);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

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

}

@media(max-width:768px){

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

  .gallery-title h2{
    font-size:32px;
  }

}

@media(max-width:576px){

  .gallery-section{
    padding:65px 0;
  }

  .gallery-container{
    width:90%;
    grid-template-columns:1fr;
    gap:16px;
  }

  .gallery-title{
    margin-bottom:35px;
  }

  .gallery-title h2{
    font-size:28px;
  }

  .gallery-item{
    padding:8px;
  }

  .gallery-item img{
    height:240px;
  }

}


.counter-section{
  width:100%;
  padding:85px 0;
  background:#0b7cff;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.counter-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* BOX */

.counter-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:38px 28px;
  text-align:center;
  backdrop-filter:blur(4px);
  transition:.35s ease;
}

.counter-box:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.12);
}

/* NUMBER */

.counter-box h2{
  color:#fff;
  font-size:46px;
  font-weight:700;
  line-height:1;
  margin-bottom:14px;
}

/* TEXT */

.counter-box p{
  color:rgba(255,255,255,.88);
  font-size:15px;
  font-weight:500;
  line-height:1.7;
  margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

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

}

@media(max-width:576px){

  .counter-section{
    padding:65px 0;
  }

  .counter-container{
    width:90%;
    grid-template-columns:1fr;
    gap:18px;
  }

  .counter-box{
    padding:32px 20px;
  }

  .counter-box h2{
    font-size:40px;
  }

  .counter-box p{
    font-size:14px;
  }

}













.review-section{
  width:100%;
  padding:90px 0;
  background:
    linear-gradient(rgba(247,249,252,.94),rgba(247,249,252,.94)),
    url("img/testimonial-bg.jpg");
  background-size:cover;
  background-position:center;
  font-family:'Poppins',sans-serif;
}

.review-title{
  text-align:center;
  margin-bottom:48px;
  padding:0 15px;
}

.review-title span{
  display:inline-block;
  color:#0b7cff;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  margin-bottom:10px;
}

.review-title h2{
  font-size:38px;
  color:#0f172a;
  font-weight:700;
  margin:0;
}

.review-title h2 b{
  color:#0b7cff;
}

.review-wrapper{
  width:90%;
  max-width:880px;
  margin:auto;
  position:relative;
  background:#fff;
  padding:58px 75px 72px;
  border:1px solid #dfe8f2;
  box-shadow:0 18px 45px rgba(15,23,42,.07);
}

.review-slider{
  position:relative;
  overflow:hidden;
}

.review-slide{
  display:none;
  text-align:center;
  animation:reviewFade .45s ease;
}

.review-slide.active{
  display:block;
}

.client-letter{
  width:72px;
  height:72px;
  background:#0b7cff;
  color:#fff;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:700;
  border-radius: 50%;
}

.review-slide h3{
  color:#0f172a;
  font-size:19px;
  margin-bottom:14px;
  font-weight:600;
}

.review-slide p{
  color:#64748b;
  font-size:15px;
  line-height:1.9;
  max-width:650px;
  margin:auto;
}

.review-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  background:#eef5ff;
  color:#0b7cff;
  cursor:pointer;
  z-index:5;
  transition:.3s ease;
}

.review-arrow:hover{
  background:#0b7cff;
  color:#fff;
}

.review-arrow.left{left:24px;}
.review-arrow.right{right:24px;}

.review-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.review-dots button{
  width:8px;
  height:8px;
  border:none;
  background:#cbd5e1;
  cursor:pointer;
  transition:.3s ease;
}

.review-dots button.active{
  width:26px;
  background:#0b7cff;
}

@keyframes reviewFade{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:768px){
  .review-section{
    padding:65px 0;
  }

  .review-title h2{
    font-size:30px;
  }

  .review-wrapper{
    padding:45px 28px 75px;
  }

  .review-slide p{
    font-size:14px;
  }

  .review-arrow{
    top:auto;
    bottom:24px;
  }

  .review-arrow.left{left:25px;}
  .review-arrow.right{right:25px;}
}



/* =========================
   FOOTER
========================= */
.main-footer{
  width:100%;
  background:#0b7cff;
  font-family:'Poppins',sans-serif;
  margin-top:90px;
  position:relative;
}

/* CTA */

.footer-cta{
  width:92%;
  max-width:1180px;
  margin:0 auto;
  background:#073047;
  padding:34px 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  transform:translateY(-50%);
  border:1px solid rgba(255,255,255,.08);
}

.footer-cta h2{
  color:#fff;
  font-size:26px;
  font-weight:700;
  margin-bottom:6px;
}

.footer-cta p{
  color:rgba(255,255,255,.82);
  font-size:14px;
  margin:0;
}

.footer-cta a{
  height:46px;
  padding:0 24px;
  background:#fff;
  color:#0b7cff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
  transition:.3s ease;
}

.footer-cta a:hover{
  background:#dff0ff;
}

/* MAIN */

.footer-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  padding:10px 0 58px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1.2fr 1.3fr;
  gap:45px;
}

/* LOGO */

.footer-logo{
  color:#fff;
  font-size:30px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
  margin-bottom:20px;
}

.footer-logo span{
  color:#dff0ff;
}

/* ABOUT */

.footer-about p{
  color:rgba(255,255,255,.85);
  font-size:14px;
  line-height:1.9;
  margin-bottom:25px;
}

/* SOCIAL */

.footer-social{
  display:flex;
  gap:10px;
}

.footer-social a{
  width:38px;
  height:38px;
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  transition:.3s ease;
}

.footer-social a:hover{
  background:#073047;
  border-color:#073047;
}

/* TITLE */

.footer-box h3{
  color:#fff;
  font-size:18px;
  font-weight:600;
  margin-bottom:24px;
  position:relative;
  padding-bottom:12px;
}

.footer-box h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:38px;
  height:2px;
  background:#fff;
}

/* LINKS */

.footer-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-box ul li{
  margin-bottom:13px;
}

.footer-box ul li a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:9px;
  transition:.3s ease;
}

.footer-box ul li a i{
  font-size:11px;
}

.footer-box ul li a:hover{
  color:#fff;
  padding-left:5px;
}

/* CONTACT */

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:13px;
}

.contact-item i{
  width:34px;
  height:34px;
  background:rgba(255,255,255,.10);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  flex-shrink:0;
}

.contact-item p,
.contact-item p a{
  color:rgba(255,255,255,.85);
  font-size:14px;
  line-height:1.7;
  text-decoration:none;
  margin:0;
}

/* BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:22px 4%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:rgba(255,255,255,.82);
  font-size:13.5px;
  margin:0;
}

.footer-bottom span{
  color:#fff;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .footer-cta{
    flex-direction:column;
    align-items:flex-start;
    transform:translateY(-35%);
  }

  .footer-container{
    grid-template-columns:1fr;
    padding-top:0;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}

@media(max-width:576px){

  .main-footer{
    margin-top:70px;
  }

  .footer-cta{
    width:90%;
    padding:28px 22px;
  }

  .footer-cta h2{
    font-size:22px;
  }

  .footer-cta a{
    width:100%;
    justify-content:center;
  }

  .footer-logo{
    font-size:26px;
  }

}



.credential-section{
  background:#0b7cff;
  padding:32px 0;
  font-family:'Poppins',sans-serif;
}

.credential-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.credential-container div{
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  padding:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
}

.credential-container i{
  font-size:18px;
}

/* WHY */

.why-section{
  width:100%;
  padding:90px 0;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.why-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.why-card{
  position:relative;
  background:#fff;
  padding:34px 24px 32px;
  border:1px solid #dfe8f2;
  overflow:hidden;
}

.why-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:#0b7cff;
}

.why-icon{
  width:56px;
  height:56px;
  background:#eef5ff;
  color:#0b7cff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:24px;
}

.why-card h3{
  font-size:18px;
  color:#0f172a;
  font-weight:600;
  margin-bottom:12px;
}

.why-card p{
  color:#64748b;
  font-size:13.5px;
  line-height:1.8;
  margin:0;
}

.why-card:hover{
  box-shadow:0 16px 38px rgba(15,23,42,.07);
  transform:translateY(-4px);
  transition:.3s ease;
}

@media(max-width:991px){
  .why-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .why-section{
    padding:65px 0;
  }

  .why-container{
    width:90%;
    grid-template-columns:1fr;
  }
}
/* FORM */
.appointment-section{
  width:100%;
  padding:110px 0;
  background:linear-gradient(135deg,#f4f9ff 0%,#ffffff 55%,#eef7ff 100%);
  font-family:'Poppins',sans-serif;
}

.appointment-container{
  width:92%;
  max-width:1220px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.appointment-left .sub-title{
  display:inline-block;
  color:#0b7cff;
  font-size:13px;
  letter-spacing:3px;
  font-weight:700;
  margin-bottom:14px;
}

.appointment-left h2{
  font-size:46px;
  line-height:1.15;
  color:#0f172a;
  margin-bottom:20px;
  font-weight:700;
}

.appointment-left > p{
  font-size:15px;
  line-height:1.9;
  color:#64748b;
  max-width:540px;
  margin-bottom:34px;
}

.appointment-points{
  display:grid;
  gap:18px;
}

.appointment-points div{
  background:#fff;
  padding:22px 24px;
  border-radius:16px;
  display:grid;
  grid-template-columns:54px 1fr;
  column-gap:16px;
  align-items:center;
  border:1px solid #e4eef8;
  box-shadow:0 12px 35px rgba(15,23,42,0.06);
}

.appointment-points i{
  width:54px;
  height:54px;
  background:#eaf4ff;
  color:#0b7cff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-size:21px;
  grid-row:1 / 3;
}

.appointment-points h4{
  margin:0 0 5px;
  color:#0f172a;
  font-size:16px;
}

.appointment-points p{
  margin:0;
  color:#64748b;
  font-size:14px;
}

.appointment-form-box{
  background:#fff;
  padding:42px;
  border-radius:24px;
  border:1px solid #dfeaf5;
  box-shadow:0 25px 70px rgba(15,23,42,0.10);
  position:relative;
  overflow:hidden;
}

.appointment-form-box:before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width:180px;
  height:180px;
  background:#e8f4ff;
  border-radius:50%;
}

.appointment-form-box h3{
  font-size:28px;
  color:#0f172a;
  margin-bottom:8px;
  position:relative;
}

.appointment-form-box > p{
  color:#64748b;
  font-size:14px;
  margin-bottom:26px;
  position:relative;
}

.appointment-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:17px;
  position:relative;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea{
  width:100%;
  height:54px;
  border:1px solid #dce8f4;
  border-radius:12px;
  padding:0 16px;
  font-size:14px;
  color:#0f172a;
  background:#f9fcff;
  font-family:'Poppins',sans-serif;
  outline:none;
  transition:.3s;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus{
  border-color:#0b7cff;
  background:#fff;
  box-shadow:0 0 0 4px rgba(11,124,255,0.08);
}

.appointment-form textarea{
  grid-column:1 / -1;
  height:135px;
  padding-top:16px;
  resize:none;
}

.appointment-form button{
  grid-column:1 / -1;
  height:56px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#0b7cff,#075fd0);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.appointment-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(11,124,255,0.28);
}

.appointment-form button i{
  margin-left:8px;
}

/* Responsive */
@media(max-width:900px){
  .appointment-container{
    grid-template-columns:1fr;
  }

  .appointment-left h2{
    font-size:36px;
  }
}

@media(max-width:575px){
  .appointment-section{
    padding:70px 0;
  }

  .appointment-form-box{
    padding:28px 22px;
  }

  .appointment-form{
    grid-template-columns:1fr;
  }

  .appointment-left h2{
    font-size:30px;
  }

  .appointment-points div{
    padding:18px;
  }
}

/* FAQ */

.faq-section{
  width:100%;
  padding:90px 0;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.faq-container{
  width:92%;
  max-width:950px;
  margin:auto;
}

.faq-item{
  background:#fff;
  border:1px solid #dfe8f2;
  margin-bottom:18px;
  overflow:hidden;
  transition:.3s ease;
}

.faq-item.active{
  box-shadow:0 16px 38px rgba(15,23,42,.05);
}

.faq-question{
  width:100%;
  padding:22px 26px;
  border:none;
  background:#fff;
  color:#0f172a;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:left;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  font-family:'Poppins',sans-serif;
}

.faq-question i{
  width:32px;
  height:32px;
  background:#eef5ff;
  color:#0b7cff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  transition:.3s ease;
  flex-shrink:0;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
  background:#0b7cff;
  color:#fff;
}

.faq-answer{
  display:none;
  padding:0 26px 24px;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-answer p{
  color:#64748b;
  font-size:14px;
  line-height:1.9;
}

@media(max-width:576px){

  .faq-section{
    padding:65px 0;
  }

  .faq-container{
    width:90%;
  }

  .faq-question{
    padding:18px 18px;
    font-size:14px;
  }

  .faq-answer{
    padding:0 18px 18px;
  }

}

/* BLOG */
.tips-section{
  width:100%;
  padding:90px 0;
  background:#f7f9fc;
  font-family:'Poppins',sans-serif;
}

.tips-container{
  width:92%;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.tips-card{
  background:#fff;
  border:1px solid #dfe8f2;
  overflow:hidden;
  transition:.35s ease;
}

.tips-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}

.tips-img{
  overflow:hidden;
}

.tips-img img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition:.4s ease;
}

.tips-card:hover .tips-img img{
  transform:scale(1.05);
}

.tips-content{
  padding:26px;
}

.tips-content span{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:#0b7cff;
  letter-spacing:2px;
  margin-bottom:14px;
}

.tips-content h3{
  font-size:22px;
  color:#0f172a;
  line-height:1.45;
  margin-bottom:14px;
  font-weight:600;
}

.tips-content p{
  color:#64748b;
  font-size:14px;
  line-height:1.9;
  margin-bottom:24px;
}

/* BUTTON */

.tips-content a{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:145px;
  height:46px;
  padding:0 20px;
  background:#0b7cff;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  transition:.35s ease;
  z-index:1;
}

.tips-content a::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#073047;
  transition:.35s ease;
  z-index:-1;
}

.tips-content a:hover::before{
  left:0;
}

.tips-content a:hover{
  box-shadow:0 12px 24px rgba(11,124,255,.18);
}

.tips-content a i{
  font-size:11px;
  transition:.35s ease;
}

.tips-content a:hover i{
  transform:translateX(4px);
}

/* RESPONSIVE */

@media(max-width:991px){

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

}

@media(max-width:576px){

  .tips-section{
    padding:65px 0;
  }

  .tips-container{
    width:90%;
    grid-template-columns:1fr;
  }

  .tips-content{
    padding:22px;
  }

  .tips-content h3{
    font-size:19px;
  }

  .tips-content p{
    font-size:13.5px;
  }

}
/* FLOATING */

.float-buttons{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.float-buttons a{
  width:46px;
  height:46px;
  background:#0b7cff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
}

.float-buttons a.call{
  background:#073047;
}

@media(max-width:991px){
  .credential-container,
  .why-container,
  .blog-container{
    grid-template-columns:repeat(2,1fr);
  }

  .form-container{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){
  .credential-container,
  .why-container,
  .blog-container{
    grid-template-columns:1fr;
  }

  .form-content h2{
    font-size:30px;
  }

  .appointment-form{
    grid-template-columns:1fr;
    padding:24px;
  }
}

/* Added missing section styles */
.related-treatment-section{padding:70px 20px;background:#fff;}
.related-treatment-container{max-width:1180px;margin:auto;text-align:center;}
.section-label{display:inline-block;color:#0a6ef5;font-weight:700;margin-bottom:10px;text-transform:uppercase;letter-spacing:.5px;}
.related-treatment-container h2{font-size:34px;margin-bottom:28px;color:#16334f;}
.related-treatment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.related-treatment-grid a{display:block;padding:18px 15px;border-radius:14px;background:#f4fbfa;color:#16334f;text-decoration:none;font-weight:600;box-shadow:0 8px 22px rgba(0,0,0,.07);transition:.3s;}
.related-treatment-grid a:hover{transform:translateY(-5px);background:#0b8f84;color:#fff;}
.service-appointment-cta{max-width:1180px;margin:0 auto 70px;padding:38px;border-radius:22px;background:linear-gradient(135deg,#0a6ef5,#051122);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.service-appointment-cta span{font-weight:700;opacity:.9;}
.service-appointment-cta h2{font-size:30px;margin:8px 0;}
.service-appointment-cta p{margin:0;opacity:.9;}
.service-appointment-cta a{background:#fff;color:#0a6ef5;text-decoration:none;padding:14px 24px;border-radius:999px;font-weight:700;white-space:nowrap;}
@media(max-width:768px){.related-treatment-grid{grid-template-columns:1fr}.service-appointment-cta{flex-direction:column;text-align:center}.service-appointment-cta h2{font-size:24px}}

/* Linked pages polish - same blue medical theme */
.nav-menu a.active, .mobile-nav a.active{color:#0a6ef5;}
.footer-box ul li a:hover{color:#0a6ef5;}
.footer-box ul{max-height:none;}


/* FINAL FIX BY CHATGPT */
.treatment-card{transition:.3s ease;}
.treatment-card:hover{transform:translateY(-8px); box-shadow:0 18px 45px rgba(10,110,245,.14);}
.treatment-content a{color:#0a6ef5;font-weight:700;}
.treatment-content a:hover{color:#f59a2f;}
.footer-contact .contact-item p{line-height:1.6;}


/* FINAL SMALL FIXES - blue medical theme consistency */
.treatment-card{cursor:pointer;}
.treatment-card a,
.treatment-content a{
  background:#0a6ef5 !important;
  color:#ffffff !important;
  border-radius:6px;
  box-shadow:0 8px 18px rgba(10,110,245,.18);
}
.treatment-card a i,
.treatment-content a i{color:#ffffff !important;}
.treatment-card a:hover,
.treatment-content a:hover{background:#051122 !important;color:#ffffff !important;}
.appointment-form button,
.appointment-btn-box .appointment-btn,
.appointment-section .appointment-form button{
  background:linear-gradient(135deg,#0a6ef5,#075fd0) !important;
  color:#fff !important;
}
.appointment-form button:hover,
.appointment-btn-box .appointment-btn:hover{
  box-shadow:0 14px 30px rgba(10,110,245,.28) !important;
}
.related-treatment-grid a{background:#f0f6ff !important;color:#16334f !important;}
.related-treatment-grid a:hover{background:#0a6ef5 !important;color:#fff !important;}
.service-appointment-cta{background:linear-gradient(135deg,#0a6ef5,#051122) !important;}
.service-appointment-cta a{color:#0a6ef5 !important;background:#fff !important;}
.footer-contact .contact-item a{color:inherit;}
@media(max-width:576px){.tcb-fullscreen-wrapper{}.gallery-container{grid-template-columns:1fr !important;}}


/* NAV BUTTON SAFETY FIX */
.navbar .nav-appointment-btn{width:auto!important;height:auto!important;margin:0!important;background:#051122!important;color:#fff!important;padding:11px 22px!important;border-radius:50px!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;box-shadow:none!important;}
.navbar .nav-appointment-btn:hover{background:#0a6ef5!important;transform:translateY(-2px);}
.navbar .nav-appointment-btn .btn-icon{width:28px!important;height:28px!important;background:rgba(255,255,255,.2)!important;border-radius:50%!important;color:#fff!important;}
@media(max-width:991px){.navbar .nav-appointment-btn{display:none!important}.logo strong{font-size:20px}.logo small{font-size:8.5px}}
