:root{
    --ink:#10233F;
    --ink-2:#17325A;
    --teal:#0F6B66;
    --teal-light:#E4F0EE;
    --ivory:#FAF7F1;
    --sand:#F1ECE1;
    --amber:#E2A63B;
    --amber-dark:#C98D26;
    --slate:#1b1b1b;
    --line:#E4E0D6;
    --white:#FFFFFF;
    --font-display: "Oswald", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "Inter", sans-serif;
    --font-para: "Inter", sans-serif;
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
  }

  body{
    font-family:var(--font-para);
    font-size:16px;
    line-height:28px;
    color:var(--slate);
    background:var(--ivory);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3,.font-display{ font-family:var(--font-display); }

  /* Default paragraph style */
  p{
    font-family:var(--font-para);
    font-size:16px;
    line-height:28px;
    color:var(--slate);
    margin-bottom: 5px;
  }

  .auto-container{
    max-width: 1320px;
  }

  .mono{ font-family:var(--font-mono);  }
  .text-teal{ color:var(--teal) !important; }
  .text-amber{ color:var(--amber) !important; }
  .text-slate{ color:var(--slate) !important; }
  .bg-ink{ background:var(--ink) !important; }
  .bg-ivory{ background:var(--ivory) !important; }
  .bg-sand{ background:var(--sand) !important; }
  .bg-teal-light{ background:var(--teal-light) !important; }
  a{ text-decoration:none; }
  ::selection{ background:var(--amber); color:var(--ink); }

  /* ---------- Eyebrow ---------- */
  .eyebrow{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .eyebrow::before{ content:""; width:22px; height:2px; background:var(--amber); display:inline-block; }

  /* ---------- Buttons (redesigned) ---------- */
  .btn-cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    border: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    padding: 7px 15px;
    border-radius: 4px;
    
    transition: transform .28s ease, box-shadow .28s ease;
    overflow: hidden;
  }
  .btn-cta i{ transition:transform .28s ease; }
  .btn-cta:hover{ transform:translateY(-3px); box-shadow:0px 0px 10px 0px rgb(15 107 102 / 58%); color:#fff; background: var(--teal);}
  .btn-cta:hover i{ transform:translateX(4px); }

  .btn-ghost{
    display:inline-flex;
    align-items:center;
    gap:0.55rem;
    background:transparent;
    border:1.5px solid rgba(16,35,63,0.22);
    color:var(--ink);
    font-weight:700;
    font-size:0.92rem;
    padding:0.82rem 1.7rem;
    border-radius:4px;
    transition:all .28s ease;
  }
  .btn-ghost:hover{ border-color:var(--teal); background:var(--teal); color:#fff; transform:translateY(-3px); }

  .btn-ghost-light{
    display:inline-flex;
    align-items:center;
    gap:0.55rem;
    background:var(--teal);
    border:1.5px solid rgba(255,255,255,0.4);
    color:#fff;
    font-weight:500;
    font-size:0.92rem;
    padding:0.82rem 1.7rem;
    border-radius:4px;
    transition:all .28s ease;
  }
  .btn-ghost-light:hover{ background:var(--amber); color:#fff; transform:translateY(-3px); }

  .btn-sm-pill{
    display:inline-flex; align-items:center; gap:0.4rem;
    background:linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color:var(--ink); font-weight:700; font-size:0.82rem;
    padding:0.5rem 1.1rem; border-radius:50px; border:none;
    box-shadow:0 8px 16px -6px rgba(226,166,59,0.5);
    transition:transform .25s ease;
  }
  .btn-sm-pill:hover{ transform:translateY(-2px); color:var(--ink); }

  /* ---------- Topbar marquee ---------- */
  .topbar{
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-mono);
    font-size: 16px;
    padding: 3px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 6500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .marquee-track{
    display:inline-flex;
    align-items:center;
    gap:2.6rem;
    animation:marqueeScroll 36s linear infinite;
    padding-left:100%;
  }
  .topbar:hover .marquee-track{ animation-play-state:paused; }
  @keyframes marqueeScroll{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-100%); }
  }
  .marquee-track span{ display:inline-flex; align-items:center; gap:0.5rem; font-weight: 600}
  .marquee-track span a{ color: rgba(255, 255, 255, 0.85);}
  .marquee-track i{ color:var(--amber); }

  /* ---------- Header ---------- */
  .site-header{
    position:sticky; top:0; z-index:1000;
    background:rgba(250,247,241,0.94);
    backdrop-filter:saturate(180%) blur(10px);
    border-bottom:1px solid var(--line);
    transition:box-shadow .3s ease;
  }
  .site-header.scrolled{ box-shadow:0 6px 24px rgba(16,35,63,0.06); }

  .brand{ display:flex; align-items:center; gap:0.7rem; }
  .brand-mark{
    width:44px; height:44px; border-radius:50%; background:var(--ink); color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-family:var(--font-display); font-weight:600; font-size:1rem; position:relative; flex-shrink:0;
  }
  .brand-mark::after{ content:""; position:absolute; inset:-4px; border:1px solid var(--amber); border-radius:50%; opacity:0.6; }
  .brand-name{ 
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    color: var(--slate);
     }
  .brand-sub{ 
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin: 2px 0 5px 0;
    text-transform: capitalize;
    color: var(--amber);
    font-family: var(--font-mono);
  }
    .brand-sub2{ 
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--slate);
    font-family: var(--font-mono);
  }
  .nav-link:focus-visible{
    box-shadow: none!important;
  }

  .nav-link-custom{
    font-size: 16px;
    font-weight: 500;
    color: var(--slate) !important;
    padding: 20px 5px !important;
    position: relative;
    transition: color .2s ease;
  }
  .nav-link-custom:hover{ color:var(--amber-dark) !important; }
  .nav-link-custom.active{ color:var(--ink) !important; }

  /* Mega menu dropdown — sidebar + panel style */
  .mega-menu{
    border:none; border-radius:8px;
    box-shadow:0 30px 60px -20px rgba(16,35,63,0.28);
    padding:0;
    min-width:760px;
    margin-top:10px !important;
    overflow:hidden;
  }
  .mega-menu.show{ display:flex; }
  @media (max-width: 1199.98px){
    .mega-menu.show{ flex-direction:column; position:static !important; inset:auto !important; transform:none !important; max-height:70vh; overflow-y:auto; }
    .mega-menu{ min-width:100%; box-shadow:none; border:1px solid var(--line); border-radius:8px; }
  }

  .mega-sidebar{
    width:280px; flex-shrink:0; background:#fff; border-right:1px solid var(--line);
    padding:0.5rem 0; max-height:460px; overflow-y:auto;
  }
  @media (max-width: 1199.98px){ .mega-sidebar{ width:100%; border-right:none; border-bottom:1px solid var(--line); max-height:none; } }

  .mega-cat{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
  }
  .mega-cat i{ font-size:0.72rem; opacity:0.6; transition:opacity .2s ease; }
  .mega-cat:hover, .mega-cat.active{ background:var(--amber); color:#fff; }
  .mega-cat:hover i, .mega-cat.active i{ opacity:1; }

  .mega-panel{    
    flex: 1;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
  }
  .mega-panel-list{
    display:none; list-style:none; margin:0; padding:0;
    column-count:1; column-gap:0;
  }
  .mega-panel-list.active{ display:block; }
  .mega-panel-list li{ break-inside:avoid; padding:0.5rem 0; border-bottom:1px solid var(--line); }
  .mega-panel-list li a{
    color:var(--ink); font-size:15px; font-weight:500; display:block; transition:color .2s ease;
  }
  .mega-panel-list li a:hover{ color:var(--amber-dark); }

  .header-phone{ f
      font-family: var(--font-mono);
    font-size: 16px;
    color: var(--ink);
    line-height: 28px;
    font-weight: 600;
  }
/* ---------- Hero shell ---------- */

  /* ---------- Indicators: labeled, since each slide is a different topic, not a sequence ---------- */
  .hero-carousel{ position:relative; }
  .hero-slide{
    display:flex; align-items:center; padding:90px 0 ;
    position:relative; overflow:hidden;
    background-size:cover; background-position:center; background-repeat:no-repeat;
  }
  /* left-to-right scrim so text stays readable no matter what the photo looks like,
     while the right side of the image stays visible and un-covered */
  ./*hero-slide::before{
    content:''; position:absolute; inset:0; z-index:0;
    background:linear-gradient(90deg,
      rgba(16,35,63,0.92) 0%,
      rgba(16,35,63,0.78) 32%,
      rgba(16,35,63,0.35) 60%,
      rgba(16,35,63,0.05) 82%);
  }*/
  .hero-slide .auto-container{ position:relative; z-index:1; }

  .slide-a{ 
    background-image: url(../img/slider/1.jpg);
  }
  .slide-b{
   background-image:url(../img/slider/2.jpg);
 }
  .slide-c{
   background-image:url(../img/slider/3.jpg); 
 }

  .hero-text-col{ max-width:640px; }
  ..hero-text-col h1{
        font-size: 38px;
    line-height: 48px;
    color: var(--slate);
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 2px;
  }
  /* ---------- Indicators ---------- */
  #heroCarousel .carousel-indicators{ bottom:22px; gap:0.5rem; }
  #heroCarousel .carousel-indicators button{
    width: 35px;
    height: 5px;
    border-radius: 1px;
    background-color: rgb(226 166 59 / 38%);
    opacity: 1;
    border: none;
    padding: 0;
    margin: 0;
  }
  #heroCarousel .carousel-indicators button.active{ background-color:var(--amber); }

  #heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next{ width:6%; opacity:0.7; z-index:2; }
  #heroCarousel .carousel-control-prev-icon, #heroCarousel .carousel-control-next-icon{ width:1.6rem; height:1.6rem; }

  .carousel-fade .carousel-item{ transition:opacity 1.1s ease; }

  @media (max-width: 991px){
    .hero-slide::before{ background:linear-gradient(90deg, rgba(16,35,63,0.94) 0%, rgba(16,35,63,0.85) 55%, rgba(16,35,63,0.55) 100%); }
  }
  /* ---------- Section headers ---------- */
  .section-pad{ padding:60px 0; }
  .section-head h4{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: var(--teal);
    font-family: var(--font-mono);
   }
     .section-head h5{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--slate);
    font-family: var(--font-mono);
   }
  .section-head h2{ 
    font-size: 40px;
    line-height: 50px;
    color: var(--slate);
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 5px;
  }

  /* ---------- About ---------- */
  .about-photo-slot{
    width:100%; aspect-ratio:3/4; border-radius:12px;
    background:linear-gradient(150deg, var(--ink) 0%, var(--teal) 140%);
    display:flex; flex-direction:column; align-items:center; justify-content:center; color:rgba(255,255,255,0.85);
    position:relative; overflow:hidden; box-shadow:0 30px 60px -22px rgba(16,35,63,0.32);
  }
  .about-photo-slot i{ font-size:2.4rem; color:var(--amber); margin-bottom:0.6rem; }
  .about-photo-slot span{ font-family:var(--font-mono); font-size:0.78rem; letter-spacing:0.06em; text-align:center; padding:0 1.5rem; }
  .about-photo-slot::after{
      content: "";
    position: absolute;
    inset: 6px;
    border: 1px dashed rgb(255 255 255 / 80%);
    border-radius: 10px;
    pointer-events: none;
     }

  .about-text-collapse{ position:relative; }
  .about-text-collapse:not(.show){ display:block; max-height:8.4rem; overflow:hidden; -webkit-mask-image:linear-gradient(180deg,#000 65%,transparent 100%); mask-image:linear-gradient(180deg,#000 65%,transparent 100%); }

  .timeline{ position:relative; padding-left:1.6rem; }
  .timeline::before{ content:""; position:absolute; left:5px; top:6px; bottom:6px; width:1px; background:var(--line); }
  .timeline-item{ position:relative; padding-bottom:10px; }
  .timeline-item:last-child{ padding-bottom:0; }
  .timeline-item::before{ content:""; position:absolute; left:-1.6rem; top:4px; width:11px;height:11px; border-radius:50%; background:var(--ivory); border:2px solid var(--teal); }
  .timeline-item .t-date{
      font-family: var(--font-mono);
    font-weight: 500;
    font-size: 12px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .timeline-item h4{ 
      font-size: 15px;
    font-weight: 600;
    margin: 5px 0 5px 0;
     }
  .timeline-item p{ font-size:14px; line-height: 22px;margin-bottom:0; }

  /* ---------- Services Tabs ---------- */
/*==========================
SERVICE SIDEBAR
==========================*/
.service-sidebar{
background:#fff;
border:1px solid var(--line);
border-radius:18px;
padding:18px;
box-shadow:0 20px 50px rgba(16,35,63,.08);
position:sticky;
top:110px;
}
.service-sidebar .nav-link{
display:flex;
align-items:center;
gap:15px;
padding:10px;
border-radius:14px;
background:#fff;
border:1px solid var(--line);
margin-bottom:10px;
color:var(--ink);
transition:.35s;
text-align:left;
}
.service-sidebar .nav-link:last-child{
margin-bottom:0;
}
.service-sidebar .nav-link i{
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:var(--teal-light);
color:var(--teal);
font-size:22px;
transition:.35s;
flex-shrink:0;
}
.service-sidebar .nav-link h6{
margin:0;
font-size: 18px;
line-height: 28px;
font-weight:500;
font-family:var(--font-display);
}
.service-sidebar .nav-link span{
    display: block;
    font-size: 14px;
    color: var(--slate);
    margin-top: 4px;
}
.service-sidebar .nav-link:hover{
transform:translateX(6px);
border-color:var(--amber);
box-shadow:0 12px 25px rgba(0,0,0,.08);
}
.service-sidebar .nav-link.active{
background:linear-gradient(135deg,var(--ink),var(--teal));
border-color:transparent;
color:#fff;
}
.service-sidebar .nav-link.active span{
color:rgba(255,255,255,.75);
}
.service-sidebar .nav-link.active i{
background:rgba(255,255,255,.12);
color:var(--amber);
}

/*==========================
SERVICE CARD
==========================*/
.service-card{
background:#fff;
border-radius:18px;
overflow:hidden;
border:1px solid var(--line);
transition:.4s;
height:100%;
box-shadow:0 15px 35px rgba(16,35,63,.05);
}
.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(16,35,63,.12);
}
.service-img{
position:relative;
overflow:hidden;
height:240px;
}
.service-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}
.service-card:hover .service-img img{
transform:scale(1.08);
}
.service-img:before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(180deg,rgba(0,0,0,0) 20%,rgba(0,0,0,.55));
z-index:1;
opacity:0;
transition:.4s;
}
.service-card:hover .service-img:before{
opacity:1;
}
.service-content{
padding:15px;
}
.service-content h4{
    font-size: 20px;
    font-family: var(--font-display);
    margin-bottom: 5px;
    line-height: 30px;
    color: var(--ink);
}
.service-content p{
font-size:16px;
color:var(--slate);
margin-bottom:15px;
}
.service-btn{
display:inline-flex;
align-items:center;
gap:8px;
font-size:15px;
font-weight:700;
color:var(--amber-dark);
transition:.3s;
}
.service-btn i{
transition:.3s;
}
.service-card:hover .service-btn{
color:var(--teal);
}
.service-card:hover .service-btn i{
transform:translateX(6px);
}

/*==========================
BUTTON
==========================*/
.btn-sm-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 4px;
    background: var(--amber);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
}
.btn-sm-pill:hover{
background:var(--teal);
color:#fff;
transform:translateY(-2px);
}
.btn-sm-pill i{
transition:.35s;
}
.btn-sm-pill:hover i{
transform:translateX(5px);
}

/*==========================
TAB ANIMATION
==========================*/
.tab-pane{
animation:fadeIn .45s ease;
}
@keyframes fadeIn{
0%{
opacity:0;
transform:translateY(20px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

/*==========================
SECTION
==========================*/
#services .section-head{
max-width:760px;
margin-bottom:45px;
}
#services .section-head h2{
    font-size: 32px;
    line-height: 42px;
    margin-top: 7px;
    margin-bottom: 10px;
}
#services .section-head p{
font-size:16px;
}

/*==========================
RESPONSIVE
==========================*/
@media(max-width:991px){
.service-sidebar{
position:relative;
top:auto;
margin-bottom:30px;
}
.service-sidebar .nav-link{
padding:12px;
}
.service-sidebar .nav-link h6{
font-size:15px;
}
.service-content h4{
font-size:21px;
}
.service-img{
height:220px;
}
}

@media(max-width:767px){
.service-sidebar{
display:flex;
overflow:auto;
gap:10px;
padding:10px;
white-space:nowrap;
}
.service-sidebar .nav-link{
min-width:260px;
margin-bottom:0;
}
.service-img{
height:200px;
}
.service-content{
padding:20px;
}
.service-content h4{
font-size:19px;
}
#services .section-head h2{
font-size:30px;
}
}
  /* ---------- Procedures highlight ---------- */
  .procedures-highlight{
    background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%);
    border-radius: 35px;
    padding: 30px;
    position: relative;
    overflow: hidden;
  }
    .procedures-highlight .eyebrow{
      color: #fff;
    }
    .procedures-highlight h2{
      color: #fff;
    }
     .procedures-highlight p{
      color: #fff;
    }
  .procedures-highlight::before{
    content:""; position:absolute; right:-70px; top:-70px; width:260px;height:260px; border-radius:50%;
    border:1px solid rgba(226,166,59,0.3);
  }
/*  .procedures-highlight::after{
    content:""; position:absolute; left:-90px; bottom:-90px; width:220px;height:220px; border-radius:50%;
    border:1px solid rgba(15,107,102,0.35);
  }*/
  .procedure-tile{
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:10px;
    padding:10px 12px; height:100%; transition:all .3s ease; position:relative;
  }
  .procedure-tile:hover{ background:rgba(226,166,59,0.12); border-color:var(--amber); transform:translateY(-4px); }
  .procedure-tile i{ 
      color: var(--amber);
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
     }
  .procedure-tile span{ 
      font-size: 17px;
    color: #e2a63b;
    font-weight: 700;
     }
  .procedure-badge{
     position: absolute;
    top: -10px;
    right: 10px;
    background: var(--amber);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
  }

  /* ---------- Achievements ---------- */
  .achieve-card{
        background: #fff;
    border-radius: 6px;
    padding: 15px;
    height: 100%;
    border-left: 3px solid var(--amber);
    box-shadow: 0 12px 30px -20px rgba(16,35,63,0.18);
  }
  .achieve-card .a-num{ font-family:var(--font-mono); font-size:2rem; font-weight:600; color:var(--ink); line-height:1; }
  .achieve-card .a-label{
      color: var(--slate);
    line-height: 28px;
    font-size: 15px;
    margin-top: 7px;
    font-family: var(--font-body);
  }

  .credential-row{ display:flex; gap:1.1rem; padding:1.1rem 0; border-bottom:1px solid var(--line); }
  .credential-row:last-child{ border-bottom:none; }
  .credential-year{ font-family:var(--font-mono); font-size:0.78rem; color:var(--teal); min-width:64px; padding-top:0.15rem; flex-shrink:0; }
  .credential-row h4{ font-size:0.98rem; font-weight:700; margin-bottom:0.15rem; }
  .credential-row p{ font-size:0.87rem; margin-bottom:0; }

  /* ---------- Gallery ---------- */
 
.gallery-tile{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}
 
.gallery-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
 
.gallery-tile:hover img{
  transform: scale(1.12);
}
 
/* Dark overlay + plus icon on hover */
.gallery-zoom{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 35, 63, 0);
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}
 
.gallery-tile:hover .gallery-zoom{
  opacity: 1;
  background: rgba(16, 35, 63, 0.45);
}
 
.gallery-zoom i{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transform: scale(0.5);
  transition: transform 0.35s ease;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,0.4);
}
 
.gallery-tile:hover .gallery-zoom i{
  transform: scale(1);
}
 
/* Caption strip */
.gallery-caption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 10px;
    background: linear-gradient(0deg, rgb(0 0 0 / 59%) 50%, transparent 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    transform: translateY(10px);
    opacity: 1;
    transition: transform 0.3s ease;
    pointer-events: none;
}
 
.gallery-tile:hover .gallery-caption{
  transform: translateY(0);
}
 
/* Fancybox brand-color tweaks (optional, safe to remove) */
.fancybox__container{
  --fancybox-bg: rgb(0 0 0 / 90%);
}
.fancybox__caption{
  font-family: var(--font-body);
}
  /* ---------- FAQ ---------- */
  .accordion-custom .accordion-item{ border:none; border-bottom:1px solid var(--line); border-radius:0; background:transparent; }
  .accordion-custom .accordion-item:first-of-type, .accordion-custom .accordion-item:last-of-type{ border-radius:0; }
  .accordion-custom .accordion-button{
      background: transparent;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    color: var(--ink);
    padding: 20px 0;
    box-shadow: none;
  }
  .accordion-custom .accordion-button:not(.collapsed){ color:var(--teal); background:transparent; }
  .accordion-custom .accordion-button:focus{ box-shadow:none; }
  .accordion-custom .accordion-button::after{ background-size:1.1rem; }
  .accordion-custom .accordion-body{ padding:0 0 10px 0; }

  /* ---------- Contact section ---------- */
  .contact-info-card{
    background:#fff; border:1px solid var(--line); border-radius:10px; padding:1.5rem; display:flex; gap:1rem; align-items:flex-start;
    height:100%;
  }
  .contact-info-card i{ font-size:1.4rem; color:var(--teal); flex-shrink:0; margin-top:0.2rem; }
  .contact-info-card h5{ font-family:var(--font-display); font-size:1rem; font-weight:500; margin-bottom:0.25rem; }
  .contact-info-card p{ font-size:0.9rem; margin-bottom:0; }
.contact-info-card p a{
  color: var(--slate);
}
  .contact-form-card{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:2.2rem; }
  .contact-form-card .form-control{
    border-radius:8px; border:1px solid var(--line); padding:0.75rem 1rem; font-family:var(--font-body); font-size:0.92rem;
  }
  .contact-form-card .form-control:focus{ border-color:var(--teal); box-shadow:0 0 0 3px rgba(15,107,102,0.12); }
  .contact-form-card label{ font-size:0.85rem; font-weight:600; color:var(--ink); margin-bottom:0.35rem; }

  /* ---------- Locations ---------- */
  .location-card{ background:#fff; border-radius:6px; overflow:hidden; border:1px solid #fff; height:100%; }
  .location-card .loc-head{ 
      background: var(--ivory);
    padding: 15px 25px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
     }
  .location-card .loc-head i{ font-size:42px; color:var(--teal); }
  .location-card .loc-body{ padding:20px 15px; }
    .location-card .loc-body i{
      font-size: 18px;
    }
  .location-card .loc-body p{
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    gap: 5px;
  }
  .location-card .loc-body a{ color:var(--ink); font-weight:600; }
  .location-card .loc-body a:hover{ color:var(--teal); }
  .location-card .loc-body a.btn-cta{ color:var(--white); }
  .location-card .loc-body a.btn-cta:hover{ color:var(--white); }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); border-radius:10px; padding:3.2rem 2.6rem;
    position:relative; overflow:hidden;
  }
  .cta-banner::before{ content:""; position:absolute; right:-60px; top:-60px; width:220px;height:220px; border-radius:50%; border:1px solid rgba(226,166,59,0.25); }
  .cta-banner h3{ color:#fff; font-size:1.7rem; margin-bottom:0.4rem; }
  .cta-banner p{ color:rgba(255,255,255,0.72); margin-bottom:0; }

 
.stats-panel{
  position: relative;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
}
 
/* Decorative orbs — echoes the same accent motif used elsewhere on the site */
 
.stats-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr  ;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
 
.stat-cell{
      display: flex;
    gap: 20px;
    padding: 24px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}
.stat-cell:hover{
  background: rgba(226, 166, 59, 0.06);
}
 
.stat-icon{
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background: rgb(255 255 255 / 8%);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}
.stat-cell:hover .stat-icon{
  transform: scale(1.1);
}
 
.stat-number{
  font-weight: 600;
  font-size: 42px;
  line-height: 52px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
 
.stat-label{

  color: rgba(255, 255, 255);

}
 
@media (max-width: 991.98px){
  .stats-panel{ margin-bottom: 1.5rem; }
}
 
@media (max-width: 575.98px){
  .stats-panel{ padding: 2.2rem 1.6rem; }
  .stat-number{ font-size: 1.6rem; }
  .stat-cell{ padding: 1.3rem 1.1rem; }
}

  /* ---------- Footer ---------- */
  footer{ background:var(--ink); color:rgba(255,255,255,0.72); padding:3.5rem 0 1.5rem; }
  footer h5{
      color: #fff;
    font-family: var(--font-display);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 24px;
     }
  footer a{ color:rgba(255,255,255); }
  footer a:hover{ color:var(--amber); }
  footer .fnote{ font-size:16px; font-family:var(--font-body); color:rgba(255,255,255); }
  .footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); margin-top:2.5rem; padding-top:1.4rem;  color:rgba(255,255,255); }
  .footer-map{ border-radius:10px; overflow:hidden; border:1px solid rgba(255,255,255,0.14); }
  .footer-map iframe{ width:100%; height:220px; border:0; filter:grayscale(0.3) contrast(1.05); display:block; }

  /* ---------- Floating action buttons ---------- */
  .fab-stack{ position:fixed; bottom:22px; right:22px; z-index:1050; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
   .fab-stack.two .fab {
    position: fixed;
    left: 22px;
    bottom: 22px;
}
  .fab{
    width:52px;height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.35rem; color:#fff; box-shadow:0 14px 30px -8px rgba(16,35,63,0.4); transition:transform .2s ease;
  }
  .fab:hover{ transform:scale(1.08); color:#fff; background: var(--amber)}
  .fab-whatsapp{ background:#1EBE5B; box-shadow:0 14px 30px -8px rgba(30,190,91,0.5); }
  .fab-call{ background:var(--teal); }
  .fab-top{
    background:#fff; color:var(--ink); border:1px solid var(--line);
    opacity:0; pointer-events:none; transform:translateY(10px); transition:opacity .3s ease, transform .3s ease;
  }
  .fab-top.show-fab{ opacity:1; pointer-events:auto; transform:translateY(0); }

  /* ---------- Reveal on scroll ---------- */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }

  a:focus-visible, button:focus-visible{ outline:2px solid var(--teal); outline-offset:2px; }
  .nav-link-custom:focus, .nav-link-custom:focus-visible{ outline:none; }

  @media (max-width: 991.98px){
    .hero-spiral{ opacity:0.25; width:420px; }
    .section-head h2{ font-size:1.7rem; }
    .hero-slide{ min-height:auto; padding:3rem 0; }
  }
  @media (max-width: 575.98px){
    .cta-banner{ padding:2.4rem 1.4rem; text-align:center; }
    .section-pad{ padding:3.5rem 0; }
    .procedures-highlight{ padding:2.2rem 1.3rem; }
  }

  /* ============ WHY CHOOSE DR. PRAKHAR KUMAR ============ */
.wc-image-wrap{
  position: relative;
  max-width: 450px;
  margin-inline: auto;
}

.wc-image-frame{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.35);
}
.wc-image-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  pointer-events: none;
}
.wc-image-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Accent frame offset behind the photo */
.wc-image-wrap::before{
    content: "";
    position: absolute;
    top: -14px;
    right: -14px;
    bottom: 18px;
    left: 18px;
    border: 2px solid var(--amber);
    border-radius: 14px;
    z-index: -1;
}

.wc-badge{
    position: absolute;
    left: -30px;
    bottom: 35px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: -5px 5px 4px 1px rgb(16 35 63 / 66%);
}
.wc-badge-num{
  font-weight: 700;
  font-size: 40px;
  color: var(--amber);
  line-height: 1;
}
.wc-badge-label{
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255);
  line-height: 24px;
}

@media (max-width: 575.98px){
  .wc-image-wrap::before{ display: none; }
  .wc-badge{ left: 12px; bottom: 16px; padding: 0.7rem 0.9rem; }
  .wc-badge-num{ font-size: 1.3rem; }
}

/* Reasons list */
.wc-reasons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.wc-reason{
  display: flex;
  gap: 1rem;
  padding:12px 0;
  border-bottom: 1px solid var(--line);
}

.wc-reason-index{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.wc-reason h4{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 5px;
}

.wc-reason p{
  color: var(--slate);
  margin-bottom: 0;
}

@media (max-width: 767.98px){
  .wc-reasons{ grid-template-columns: 1fr; }
}


.breadcrumb-band{
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(
90deg, rgb(16 35 63) 20%, rgb(255 255 255 / 0%) 100%), url(../img/breadcrumb-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}
 
/* Decorative signature spiral, echoed from the hero */
.bc-spiral{
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 45vw;
  opacity: 0.5;
  pointer-events: none;
}
.bc-spiral svg{ width: 100%; height: 100%; }
 
/* Decorative accent orbs, matching the CTA/procedures sections */
.bc-orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bc-orb-1{
  width: 180px; height: 180px;
  left: -60px; top: -60px;
  border: 1px solid rgba(226, 166, 59, 0.22);
}
.bc-orb-2{
  width: 140px; height: 140px;
  right: 6%; bottom: -70px;
  border: 1px solid rgba(15, 107, 102, 0.3);
}
 
.bc-inner{
  position: relative;
  z-index: 1;
}
 
.bc-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: #ffffff;
  margin: 0.6rem 0 1.1rem;
  line-height: 1.15;
}
 
/* Breadcrumb trail */
.bc-trail ol{
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8rem;
}
 
.bc-trail li{
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
}
 
.bc-trail li i.bi-chevron-right{
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}
 
.bc-trail a{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bc-trail a:hover{
  color: var(--amber);
}
.bc-trail a i{
  font-size: 0.82rem;
}
 
.bc-trail li.current{
  color: var(--amber);
  font-weight: 600;
}
 
@media (max-width: 575.98px){
  .breadcrumb-band{ padding: 2.6rem 0 2.3rem; }
  .bc-spiral{ opacity: 0.3; width: 300px; }
}
 

/* ---------- Vertical tab list ---------- */
.cred-tab-list{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
 
.cred-tab-btn{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    text-align: left;
    background: var(--white, #fff);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    transition: all 0.25s ease;
}
.cred-tab-btn i:first-child{
  font-size: 20px;
  color: var(--teal);
  flex-shrink: 0;
}
.cred-tab-btn span{ flex: 1; }
.cred-chevron{
  font-size: 0.7rem;
  opacity: 0.4;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
 
.cred-tab-btn:hover{ border-color: var(--teal); }
 
.cred-tab-btn.active{
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 16px 32px -16px rgba(16, 35, 63, 0.45);
}
.cred-tab-btn.active i:first-child{ color: var(--amber); }
.cred-tab-btn.active .cred-chevron{ opacity: 1; transform: translateX(2px); color: var(--amber); }
 
@media (max-width: 991.98px){
  .cred-tab-list{ flex-direction: row; flex-wrap: wrap; }
  .cred-tab-btn{ width: auto; flex: 1 1 auto; justify-content: center; }
}
 
/* ---------- Panels (shared shell) ---------- */
.cred-panel{
  display: none;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.cred-panel.active{ display: block; }
 
.cred-panel h3, .cred-panel h4{
  color: var(--ink);
}
.cred-panel p{
  margin-bottom: 0;
}
 
/* ---------- Qualification: timeline ---------- */
.cred-timeline{ position: relative; padding-left: 1.7rem; }
.cred-timeline::before{
  content: "";
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.cred-timeline-item{ position: relative; padding-bottom: 1.6rem; }
.cred-timeline-item:last-child{ padding-bottom: 0; }
.cred-timeline-item::before{
  content: "";
  position: absolute;
  left: -1.7rem; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--white, #fff);
  border: 2px solid var(--teal);
}
.cred-date{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--teal);
}
.cred-timeline-item h4{
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0 5px 0;
}
 
/* ---------- Experience: role spotlight card ---------- */
.cred-role-card{ position: relative; }
.cred-role-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cred-role-badge{
    display: inline-block;
    background: var(--amber);
    color: #ffffff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 25px;
    margin-bottom: 15px;
}
.cred-role-card h3{ font-size: 1.3rem; font-weight: 500; margin-bottom: 0.3rem; }
.cred-role-place{
  
  font-size: 0.9rem !important;
  color: var(--teal) !important;
  font-weight: 600;
  margin-bottom: 5px !important;
}
.cred-role-points{ list-style: none; padding: 0; margin: 0; }
.cred-role-points li{
  display: flex; align-items: flex-start; gap: 0.6rem;
 
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}
.cred-role-points li:first-child{ border-top: none; }
.cred-role-points li i{ color: var(--amber); margin-top: 0.2rem; flex-shrink: 0; }
 
/* ---------- Achievements & Courses: checklist ---------- */
.cred-checklist{ list-style: none; padding: 0; margin: 0; }
.cred-checklist li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--slate);
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
}
.cred-checklist li:last-child{ border-bottom: none; }
.cred-checklist li i{ color: var(--amber); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
 
.cred-course-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.cred-course-head h3{ font-size: 1.2rem; font-weight: 500; margin: 0; }
.cred-course-date{
 
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
 
/* ---------- Certificates: dated list ---------- */
.cred-cert-list{
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.cred-cert-row{
  display: flex; gap: 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.cred-cert-row:last-child{ border-bottom: none; }
.cred-cert-year{
    font-size: 15px;
    font-weight: 700;
    color: var(--teal);
    min-width: 70px;
    flex-shrink: 0;
    padding-top: 10px;
}
.cred-cert-row h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
  }
.cred-cert-row p{  }
 
.cred-cert-featured{
  background: var(--teal-light);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-top: 0.4rem;
  border-bottom: none;
}
.cred-cert-featured h4{ display: flex; align-items: center; gap: 0.5rem; color: var(--ink); }
.cred-cert-featured h4 i{ color: var(--amber); }
 
@media (max-width: 575.98px){
  .cred-panel{ padding: 1.5rem 1.3rem; }
}

#button {
  display: inline-block;
  background-color: var(--amber-dark);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
    bottom: 80px;
    right: 22px;
  transition: background-color .3s,   opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
    content: "\f148";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 2em;
    line-height: 50px;
}

#button:hover {
  cursor: pointer;
  background-color: var(--teal);
}
#button:active {
  background-color: var(--teal);
}
#button.show {
  opacity: 1;
  visibility: visible;
}



#preloader{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
 
/* Hidden state — applied by JS once the page is ready */
#preloader.preloader-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
 
.preloader-inner{
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.preloader-mark{
  font-family: var(--font-display, 'Fraunces', serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.02em;
}
 
.preloader-ring{
  position: absolute;
  inset: 0;
  width: 80px;
  height: 80px;
  animation: preloader-spin 1s linear infinite;
}
 
.preloader-ring-track{
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3;
}
 
.preloader-ring-arc{
  fill: none;
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 120;
  transform-origin: center;
}
 
@keyframes preloader-spin{
  to{ transform: rotate(360deg); }
}
 
@media (prefers-reduced-motion: reduce){
  .preloader-ring{ animation: none; }
}
 /*--------------------*/
.treat-menu{
  border: none;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 10px;
  min-width: 300px;
  margin-top: 10px !important;
  display: none;
  position: relative; /* anchor for flyout sub-menus */
  overflow: visible;
}
.treat-menu.show{ display: block; }

/* Top-level rows (both plain links and the ones with a sub-menu) */
.treat-item,
.treat-item-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease;
}
.treat-item:hover,
.treat-item-btn:hover{
  background: var(--ivory);
  color: var(--amber-dark);
}

.treat-item-btn i{
  font-size: 12px;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.treat-has-sub:hover .treat-item-btn i,
.treat-has-sub.open .treat-item-btn i{ opacity: 1; }

/* Flyout sub-menu (desktop) */
.treat-has-sub{ position: relative; }

.treat-submenu{
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}
.treat-has-sub:hover .treat-submenu,
.treat-has-sub.open .treat-submenu{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.treat-sub-item{
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.treat-sub-item:hover{
  background: var(--ivory);
  color: var(--amber-dark);
}

/* Mobile: dropdown itself goes static (from your existing mega-menu pattern);
   sub-menus collapse inline as an accordion instead of flying out sideways */
@media (max-width: 1199.98px){
  .treat-menu.show{
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border: 1px solid var(--line
    );
    max-height: 70vh;
    overflow-y: auto;
  }

  .treat-submenu{
    position: static;
    margin-left: 0;
    margin-top: 4px;
    box-shadow: none;
    border-left: 2px solid var(--amber);
    border-radius: 0;
    padding: 4px 4px 4px 14px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .treat-has-sub.open .treat-submenu{ display: block; }
  .treat-has-sub.open .treat-item-btn i{ transform: rotate(90deg); }
}

/*-----------------*/


.proc-menu{
  border: none;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 10px;
  min-width: 300px;
  margin-top: 10px !important;
  display: none;
  position: relative; /* anchor for flyout sub-menus */
  overflow: visible;
}
.proc-menu.show{ display: block; }

/* Top-level rows (both plain links and the ones with a sub-menu) */
.proc-item,
.proc-item-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease;
}
.proc-item:hover,
.proc-item-btn:hover{
  background: var(--ivory);
  color: var(--amber-dark);
}

.proc-item-btn i{
  font-size: 12px;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.proc-has-sub:hover .proc-item-btn i,
.proc-has-sub.open .proc-item-btn i{ opacity: 1; }

/* Flyout sub-menu (desktop) */
.proc-has-sub{ position: relative; }

.proc-submenu{
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}
.proc-has-sub:hover .proc-submenu,
.proc-has-sub.open .proc-submenu{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.proc-sub-item{
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.proc-sub-item:hover{
  background:var(--ivory);
  color: var(--amber-dark);
}

/* Mobile: dropdown itself goes static (from your existing mega-menu pattern);
   sub-menus collapse inline as an accordion instead of flying out sideways */
@media (max-width: 1199.98px){
  .proc-menu.show{
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border: 1px solid var(--line
    );
    max-height: 70vh;
    overflow-y: auto;
  }

  .proc-submenu{
    position: static;
    margin-left: 0;
    margin-top: 4px;
    box-shadow: none;
    border-left: 2px solid var(--amber);
    border-radius: 0;
    padding: 4px 4px 4px 14px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .proc-has-sub.open .proc-submenu{ display: block; }
  .proc-has-sub.open .proc-item-btn i{ transform: rotate(90deg); }
}

/*-----------------*/


.about-menu{
  border: none;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 10px;
  min-width: 300px;
  margin-top: 10px !important;
  display: none;
  position: relative; /* anchor for flyout sub-menus */
  overflow: visible;
}
.about-menu.show{ display: block; }

/* Top-level rows (both plain links and the ones with a sub-menu) */
.about-item,
.about-item-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease;
}
.about-item:hover,
.about-item-btn:hover{
  background: var(--ivory);
  color: var(--amber-dark);
}

.about-item-btn i{
  font-size: 12px;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.about-has-sub:hover .about-item-btn i,
.about-has-sub.open .about-item-btn i{ opacity: 1; }

/* Flyout sub-menu (desktop) */
.about-has-sub{ position: relative; }

.about-submenu{
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(16, 35, 63, 0.28);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}
.about-has-sub:hover .about-submenu,
.about-has-sub.open .about-submenu{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.about-sub-item{
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.about-sub-item:hover{
  background:var(--ivory);
  color: var(--amber-dark);
}

/* Mobile: dropdown itself goes static (from your existing mega-menu pattern);
   sub-menus collapse inline as an accordion instead of flying out sideways */
@media (max-width: 1199.98px){
  .about-menu.show{
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border: 1px solid var(--line
    );
    max-height: 70vh;
    overflow-y: auto;
  }

  .about-submenu{
    position: static;
    margin-left: 0;
    margin-top: 4px;
    box-shadow: none;
    border-left: 2px solid var(--amber);
    border-radius: 0;
    padding: 4px 4px 4px 14px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .about-has-sub.open .about-submenu{ display: block; }
  .about-has-sub.open .about-item-btn i{ transform: rotate(90deg); }
}

/* ============ SERVICES CARD SLIDER (Swiper.js) ============ */

.services-slider-wrap{
  position: relative;
}

.services-swiper{
  overflow: hidden;
  padding: 8px 4px 40px; /* bottom room so the hover lift on cards doesn't clip */
}

.services-swiper .swiper-slide{
  height: auto; /* equal-height cards across a row */
  display: flex;
}

.services-swiper .swiper-slide .service-card{
  width: 100%;
}

/* Custom navigation arrows */
.services-slider-arrow{
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.services-slider-arrow:hover{
  background: var(--amber, #E2A63B);
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}
.services-slider-arrow:disabled{
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.services-slider-prev{ left: -10px; }
.services-slider-next{ right: -10px; }

@media (max-width: 767.98px){
  .services-slider-arrow{ width: 40px; height: 40px; font-size: 1rem; }
  .services-slider-prev{ left: -6px; }
  .services-slider-next{ right: -6px; }
}


  /* ===== Layout with sidebar ===== */

  .body-grid{
      display: grid;
    grid-template-columns: 1fr 400px;
    gap: 25px;
    align-items: start;
  }

  .lead-panel{
    background:var(--white);border:1px solid var(--line);border-left:4px solid var(--teal);
    border-radius:4px;padding:26px 28px;margin-bottom:44px;
  }
  .lead-panel p{margin:10px 0 0;color:#3a3a3a;font-size:15.5px;}
  .lead-panel a.inline-link{color:var(--teal);font-weight:600;border-bottom:1px solid var(--teal);}

  .info-section{padding:20px 0;border-top:1px solid var(--line);}
  .info-section:first-of-type{border-top:none;padding-top:0;}
  .info-head{margin-bottom:15px;}
  .info-head h2{font-size:26px;margin-top:10px;}
  .info-head p.desc{margin:10px 0 0;max-width:64ch;}
  .info-cols{display:grid;grid-template-columns:1fr 1fr;gap:5px 10px;    padding: 0;}
  .info-cols li{
    display:flex;gap:10px;align-items:flex-start;
    padding:5px 0;border-bottom:1px dashed #a2d5cc;
    color:var(--slate);
  }
  .info-cols li .dot{
    width:7px;height:7px;border-radius:50%;background:var(--teal);
    margin-top:7px;flex-shrink:0;
  }
  .info-section.alt{
      background: var(--teal-light);
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    border-top: none;
  }
  .info-section.alt .dot{background:var(--amber-dark);}

  /* Sidebar */
  .side-block{background:var(--white);border:1px solid var(--line);border-radius:6px;padding:24px;margin-bottom:24px;}
  .side-block h4{font-family:var(--font-display);font-size:16px;color:var(--ink);text-transform:uppercase;letter-spacing:.04em;margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--sand);}
  .side-links li a{
    display:flex;justify-content:space-between;align-items:center;
    padding:11px 0;border-bottom:1px solid var(--line);color:var(--ink-2);font-weight:500;
  }
  .side-links li:last-child a{border-bottom:none;}
  .side-links li a:hover{color:var(--teal);}
  .side-links li a.current{color:var(--teal);font-weight:700;}
  .side-cta{background:var(--amber);border-radius:6px;padding:26px;text-align:center;}
  .side-cta p{font-family:var(--font-display);font-size:18px;color:var(--ink);margin-bottom:14px;line-height:1.3;}
  .side-cta .btn{width:100%;justify-content:center;background:var(--ink);color:var(--white);}
  .side-contact li{display:flex;gap:12px;padding:6px 0;border-bottom:1px solid var(--line);color:var(--slate);}
  .side-contact li a{color:var(--slate);}
  .side-contact li:last-child{border-bottom:none;}
  .side-contact .ic{color:var(--teal);font-weight:700;}


.language-switcher {
    display: inline-flex;
    align-items: center;
}

#google_translate_element {
    display: flex;
    align-items: center;
}

/* Hide Google's default branding/text */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
}

/* Style dropdown */
.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 7px 30px 7px 10px;
    min-width: 130px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 14px !important;
    font-family: inherit;
    cursor: pointer;
    outline: none;
}

/* Remove Google iframe top spacing */
body {
    top: 0 !important;
}

/* Google Translate top bar */
.goog-te-banner-frame {
    display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
    .language-switcher {
        width: 100%;
    }

    #google_translate_element {
        width: 100%;
    }

    .goog-te-gadget .goog-te-combo {
        width: 100%;
        max-width: 160px;
        height: 36px;
        font-size: 13px !important;
    }
}


.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-icon img {
    width: 65px;
    margin-bottom: 0px;
}

.bb-short {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.bb-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width:45%;
    height: 2px;
    background:var(--slate);
    border-radius: 2px;
}

.logo .logo-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: var(--slate);
    margin-bottom: 0;
}

.logo .logo-text h3 {
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    margin: 2px 0 5px 0;
    text-transform: capitalize;
    color: var(--amber);
    font-family: var(--font-mono);
}

.logo .logo-text h4 {
      font-size: 12px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--slate);
    font-family: var(--font-mono);
}