:root {
    --navy: #bad9d4;
    --navy-mid: #5f8884;
    --navy-deep: #304e4c;
    --gold: #82afaa;
    --gold-light: #a0cac6;
    --gold-pale: rgb(130 175 170 / 36%);
    --cream: #f1fffe;
    --cream-deep: #f7fafa;
    --text: #25252c;
    --muted: #2b2b2b;
    --white: #ffffff;
    --sp: 70px 0;
    --head: "Philosopher", sans-serif;
    --body: "Rubik", sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  background:var(--cream);
  color:var(--text);
  font-size: 16px;
  line-height: 28px;
  overflow-x:hidden;
}

a{
  text-decoration: none;
}

/* ══════════════════════════════════
   BUTTONS — premium redesign
══════════════════════════════════ */

.btn-primary{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-family: var(--body);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    --dur: .45s;
}
.btn-primary .bp-bg{
  position:absolute;inset:0;background:var(--gold);    border-radius: 60px;
  transition:transform var(--dur) cubic-bezier(.76,0,.24,1);
  transform-origin:right;
}
.btn-primary:hover .bp-bg{transform:scaleX(0);transform-origin:left}
.btn-primary .bp-bg2{
  position:absolute;inset:0;background:var(--navy-mid);    border-radius: 60px;
  transform:scaleX(0);transform-origin:left;
  transition:transform var(--dur) cubic-bezier(.76,0,.24,1);
}
.btn-primary:hover .bp-bg2{transform:scaleX(1)}
.btn-primary .bp-inner{
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 18px;
    color: var(--white);
    transition: color var(--dur);
}
.btn-primary:hover .bp-inner{color:var(--white)}
.btn-primary .bp-arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .3s,border-color .3s;
    flex-shrink: 0;
}
.btn-primary:hover .bp-arrow{transform:rotate(45deg)}

/* Ghost outline button */
.btn-ghost{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--navy-deep);
    color:var(--navy-deep);
    padding: 6px 10px;
    border-radius: 60px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--body);
    background: none;
    transition: border-color .3s,color .3s;
    overflow: hidden;
}
.btn-ghost::before{
  content:'';position:absolute;inset:0;
      z-index: -1;
    background: rgb(130 175 170);
  transform:translateX(-101%);
  transition:transform .45s cubic-bezier(.76,0,.24,1);
}
.btn-ghost:hover{border-color:var(--gold);color:var(--white)}
.btn-ghost:hover::before{transform:translateX(0)}
.btn-ghost .gh-arrow{
  width:28px;height:28px;border-radius:50%;
  border:1.5px solid currentColor;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.65rem;transition:transform .3s;flex-shrink:0;
}
.btn-ghost:hover .gh-arrow{transform:rotate(-90deg)}

/* Gold outline (dark bg) */
.btn-gold{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--body);
    background: none;
    overflow: hidden;
    transition: color .35s;
}
.btn-gold::before{
  content:'';position:absolute;inset:0;background:var(--gold);
  transform:scaleY(0);transform-origin:bottom;
  transition:transform .38s cubic-bezier(.76,0,.24,1);z-index:-1;
}
.btn-gold:hover{color:var(--navy)}
.btn-gold:hover::before{transform:scaleY(1)}

/* Small text link with underline draw */
.btn-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--gold);font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;text-decoration:none;
  position:relative;padding-bottom:2px;
}
.btn-link::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1px;
  background:var(--gold);transition:width .3s;
}
.btn-link:hover::after{width:100%}
.btn-link span{transition:transform .3s}
.btn-link:hover span{transform:translateX(4px)}

/* Nav CTA arrow-clip shape */
.nav-cta{
    position: relative;
    background: var(--navy-mid);
    color: #ffffff;
    padding: 10px 12px 10px 8px;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    clip-path: polygon(0 0,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,0 100%);
    transition: background .25s,color .25s;
    display: inline-block;
}
.nav-cta:hover{
    background: var(--gold);
    color: #ffffff;
}

  /* ================= CTA SECTION ================= */
 
  .cta-section {
    padding: var(--sp);
    background: var(--cream-deep);
  }

 
  .cta-section__wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .cta-section__eyebrow {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 14px;
  }
 
  .cta-section__title {
    font-family: var(--head);
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: var(--navy-deep);
    margin-bottom: 8px;
  }
 
  .cta-section__desc {
    font-family: var(--body);
    font-size: 16px;
    color: var(--muted);
    max-width: 800px;
    margin-bottom: 15px;
  }
 
  .cta-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav{
    position: relative;
    z-index: 999;
    height: 110px;
    padding: 5px 0;
    background: var(--navy-deep);
    backdrop-filter: blur(18px);
    border-bottom: 0.1px solid var(--navy-deep);
    transition: background .3s;
}
.head-part{
  display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{font-family:var(--head);font-size:1.15rem;font-weight:500;color:var(--cream);text-decoration:none;letter-spacing:.03em}
.nav-logo span{color:var(--gold)}
.nav-links{display:flex;gap:20px;list-style:none;padding-left: 0;margin: 0;}
.nav-links a{
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    transition: color .2s;
    position: relative;
}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--gold);transition:width .3s}
.nav-links a:hover{color:var(--navy)}
.nav-links a:hover::after{width:100%}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--cream);transition:all .3s}

/* ── DROPDOWN ── */
.nav-links li{position:relative}
.nav-links li.has-drop>a{display:inline-flex;align-items:center;gap:2px}
.nav-links li.has-drop>a::after{display:none}/* remove underline pseudo on parent */
.drop-arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:14px;height:14px;transition:transform .3s;flex-shrink:0;
}
.drop-arrow svg{width:9px;height:9px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-links li.has-drop:hover .drop-arrow{transform:rotate(180deg)}
.dropdown{
  position:absolute;top:calc(100% + 2px);left:50%;
  transform:translateX(-50%) translateY(6px);
  min-width:230px;
  background:var(--navy-deep);
  border:1px solid rgba(184,151,90,.18);
  border-top:2px solid var(--gold);
  padding:8px 0;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .25s ease,transform .25s ease,visibility .25s;
  backdrop-filter:blur(18px);
  z-index:600;
}
.nav-links li.has-drop:hover .dropdown{
  opacity:1;visibility:visible;pointer-events:all;
  transform:translateX(-50%) translateY(0);
}
.dropdown a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    color: rgb(248 245 239 / 95%);
    font-size: 15px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    text-decoration: none;
    transition: color .2s,background .2s;
    white-space: nowrap;
}
.dropdown a:hover{
    color: #ffffff;
    background: rgb(255 255 255 / 20%);
}
.dropdown a .dd-dot{
  width:7px;height:1px;border-radius:0;
  background: var(--gold);flex-shrink:0;transition:background .2s;
}
.dropdown a:hover .dd-dot{background:var(--gold-light)}
/* divider inside dropdown */
.dropdown .dd-divider{height:1px;background:rgb(117 184 90 / 10%);margin:4px 0}

/* ══════════════════════════════════
   HERO SLIDER
══════════════════════════════════ */
#hero{
    position: relative;
    /*height: 100vh;*/
    min-height: 530px;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero-slides{position:absolute;inset:0}
.hero-slide{
  position:absolute;inset:0;
  
  opacity:0;transition:opacity 1s cubic-bezier(.4,0,.2,1);pointer-events:none;
}
.hero-slide.active{opacity:1;pointer-events:all}
.s-bg{position:absolute;inset:0;pointer-events:none}
.s-bg1{
    background-image: url(../images/slider/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.s-bg2{
    background-image: url(../images/slider/2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.s-bg3{
    background-image: url(../images/slider/3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-left-col{
  display:flex;flex-direction:column;
  padding:80px 0% 10px 0%;position:relative;z-index:1;
}
.hero-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-deep);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
}
.hero-tag::before{content:'';display:block;width:28px;height:1px;background:var(--navy-mid)}
.hero-slides h1{
    font-family: var(--head);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 48px;
    margin-bottom: 10px;
  }
.hero-slides h1 em{color:var(--navy-mid);font-style:normal}
.hero-deg{
    color: var(--navy-deep);
    letter-spacing: 0.6px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 20px;
    font-size: 16px;
  }
.hero-sub{color:var(--muted);font-size:16px;font-weight:400;line-height:28px;max-width:700px;margin-bottom:30px}
.hero-stats{
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.s-stat{border-left:2px solid var(--gold);padding-left:14px}
.s-num{font-family:var(--head);font-size:32px;font-weight:500;color:var(--navy-deep);line-height:1}
.s-lbl{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.09em;margin-top:3px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;align-items:center}

.hero-right-col{
  display:flex;align-items:center;
  padding:20px 0 20px 0;position:relative;z-index:1;
}
.hero-card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgb(122 184 90 / 18%);
    padding: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
}
.hero-card::before{
    content: '';
    position: absolute;
    top: -1px;
    left: 36px;
    right: 36px;
    height: 3px;
    background: var(--gold);
  }
.aff-label{
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
.aff-item{
      padding: 15px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    display: flex;
    align-items: center;
    gap: 15px;

}
.aff-item:last-child{border-bottom:none}
.aff-dot{width:10px;height:10px;background:var(--gold);border-radius:50%;flex-shrink:0}
.aff-text{
    font-size: 16px;
    color: rgb(248 245 239 / 83%);
    line-height: 1.5;
  }
.aff-text strong{color:var(--cream);display:block;font-weight: 500}

/* Slide in animation */
.hero-slide.active .hero-tag,
.hero-slide.active h1,
.hero-slide.active .hero-deg,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-stats,
.hero-slide.active .hero-btns,
.hero-slide.active .hero-card{animation:sUp .75s ease both}
.hero-slide.active h1{animation-delay:.07s}
.hero-slide.active .hero-deg{animation-delay:.15s}
.hero-slide.active .hero-sub{animation-delay:.22s}
.hero-slide.active .hero-stats{animation-delay:.3s}
.hero-slide.active .hero-btns{animation-delay:.38s}
.hero-slide.active .hero-card{animation-delay:.2s}
@keyframes sUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* Controls */
.hero-controls{position:absolute;bottom:30px;    visibility: hidden;left:5%;display:flex;align-items:center;gap:15px;z-index:20}
.h-dot{width:30px;height:3px;background:rgba(255,255,255,.22);cursor:pointer;border:none;transition:all .3s;padding:0}
.h-dot.active{background:var(--gold);width:30px}
.hero-nav{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 20;
    justify-content: center;
}
.h-btn{
  width:42px;height:42px;border:1px solid rgb(186 217 212);
  background:transparent;color:var(--gold);cursor:pointer;
  display:flex;align-items:center;justify-content: center;
    font-size: 20px;
    border-radius: 50px;transition:all .25s;
}
.h-btn:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.hero-prog{position:absolute;bottom:0;left:0;height:4px;background:var(--gold-light);z-index:20;width:0}

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
section{padding:var(--sp)}
.container{max-width:1280px;}
.sec-label{
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--navy-mid);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-label::before{content:'';display:block;width:20px;height:1px;background:var(--navy-mid)}
h2.section-head{
    font-family: var(--head);
    font-size: 34px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 44px;
    margin-bottom: 15px;
  }
h2.lw{color:var(--cream)}
.lead{font-size:16px;color:var(--muted);font-weight:400;line-height:28px;max-width:540px}
.lead.lw{color:#fff}
.divider{width:44px;height:2px;background:var(--gold);margin:22px 0}

/* Scroll fade-in */
.fi{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.fi.vis{opacity:1;transform:translateY(0)}
.fd1{transition-delay:.1s}.fd2{transition-delay:.2s}.fd3{transition-delay:.3s}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about{background:var(--white)}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 60px;
    align-items: start;
    margin-top: 35px;
  }
.about-sticky{position:sticky;top:96px}
.photo-wrap{position:relative;padding-bottom:125%;background:var(--cream-deep);overflow:hidden}
.photo-placeholder{
  position:absolute;inset:0;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:10px;
  color:var(--navy);
  font-family:var(--head);font-size:3.5rem;
}
.photo-frame{position:absolute;bottom:-10px;right:-10px;width:78%;height:78%;border:2px solid var(--gold);z-index:-1}
.cred-strip{margin-top:18px;padding:18px;background:var(--navy);display:flex;flex-wrap:wrap;gap:7px}
.cred{
        background: rgb(158 186 210 / 16%);
    border: 1px solid rgb(147 187 198 / 61%);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    padding: 4px 10px;
    letter-spacing: 0.9px;
  }
.about-summary{}
.about-summary.two{
    color: var(--muted);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cream-deep);
  }
.tabs{
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    justify-content: center;
    border-bottom: 1px solid var(--gold-light);
}
.tab-btn{
    padding: 10px 80px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: all .2s;
    font-family: var(--body);
}
.tab-btn.active{
    color: #ffffff;
    border-bottom-color: var(--navy-deep);
    background: var(--gold);
}
.tab-panel{display:none}
.tab-panel.active{display:block}
.tl-item{
    padding: 0px 0 10px 15px;
    border-left: 1px solid var(--gold-pale);
    position: relative;
}
.tl-item::before{content:'';position:absolute;left:-4.5px;top:4px;width:8px;height:8px;border-radius:50%;background:var(--gold);border:2px solid var(--white)}
.tl-yr{font-size:12px;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:5px;font-weight:500}
.tl-title{    
    font-family: var(--head);
    font-size: 18px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 5px;
  }
.tl-inst{color:var(--muted);font-weight:400}
.award-item{display:flex;gap:18px;align-items:flex-start;padding:18px;background:var(--cream-deep);border-left:3px solid var(--gold);margin-bottom:16px}
.award-num{font-family:var(--head);font-size:1.8rem; color: var(--navy-deep);font-weight:400;line-height:1;flex-shrink:0}
.award-title{
    font-size: 18px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 5px;
    line-height: 28px;
  }
.award-desc{color:var(--muted);font-weight:400;}
.pub-item{padding:15px 17px;border:1px solid #82afaa54;background:var(--white);margin-bottom:12px;transition:border-color .2s}
.pub-item:hover{border-color:var(--gold)}
.pub-journal{
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 5px;
    font-weight: 500;
  }
.pub-title{
    color: var(--muted);
    font-weight: 400;
  }
.pub-link{font-size:14px;color:var(--gold);text-decoration:none;display:inline-flex;align-items:center;gap:4px;margin-top:5px}
.pub-link:hover{text-decoration:underline}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
 
  /* ============ intro (unchanged from your markup) ============ */
 
  .sec-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 10px;
  }
 
  .section-head {
    font-family: var(--head);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.2;
    color: var(--navy-deep);
    letter-spacing: -0.3px;
  }
 
  .lead {
    font-family: var(--body);
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
  }
 
  #service { background: #fff; padding: var(--sp); }
 
  .svc-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
    align-items: end;
  }
 
  /* ============ your card styling — untouched ============ */
 
  .svc-card {
    background: var(--navy-mid);
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid rgb(186 217 212);
    transition: all .28s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--navy-mid);
    transition: width .35s;
  }
  .svc-card:hover { background: var(--gold); }
  .svc-card:hover::after { width: 100%; }
  .svc-icon {
    border: 1px solid rgb(186 217 212);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all .28s;
    border-radius: 12px;
    overflow: hidden;
  }
  .svc-icon img { padding: 5px; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; -webkit-user-drag: none; }
  .svc-card:hover .svc-icon { border: 1px solid #fff; }
  .svc-name {
    font-family: var(--head);
    font-size: 26px;
    font-weight: 500;
    color: var(--cream);
    line-height: 36px;
    margin-bottom: 10px;
  }
  .svc-name a { color: #fff; text-decoration: none; }
  .svc-desc { color: #fff; font-weight: 400; }
 
  /* ============ slider shell ============ */
 
  .svc-slider {
    position: relative;
    --gap: 24px;
    --per-view: 3;
  }
 
  .svc-viewport {
    overflow: hidden;
    cursor: grab;
  }
  .svc-viewport.is-dragging { cursor: grabbing; }
 
  .svc-track {
    display: flex;
    gap: var(--gap);
    will-change: transform;
  }
 
  .svc-track.no-transition { transition: none !important; }
  .svc-track { transition: transform .5s cubic-bezier(.65,0,.35,1); }
 
  .svc-track .svc-card {
    flex: 0 0 auto;
    width: calc((100% - (var(--gap) * (var(--per-view) - 1))) / var(--per-view));
    user-select: none;
  }
 
  .svc-track .svc-card a { pointer-events: auto; }
  .svc-track.is-dragging .svc-card a { pointer-events: none; }
 
  /* ============ arrows ============ */
 
  .svc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--navy-mid);
    background: var(--white);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
  }
  .svc-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .svc-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
  .svc-arrow--prev { left: -24px; }
  .svc-arrow--next { right: -24px; }
 
  /* ============ dots ============ */
 
  .svc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, width .25s;
  }
  .svc-dot.is-active {
    width: 22px;
    border-radius: 5px;
    background: var(--navy-mid);
  }
 
  /* ============ responsive ============ */
 
  @media (max-width: 991px) {
    .svc-intro { grid-template-columns: 1fr; gap: 14px; }
    .svc-arrow--prev { left: -8px; }
    .svc-arrow--next { right: -8px; }
    .svc-arrow { width: 40px; height: 40px; }
  }
 
  @media (max-width: 700px) {
    .svc-arrow { display: none; }
  }

/* ══════════════════════════════════
   HOSPITALS
══════════════════════════════════ */
#hospitals{background:var(--cream-deep)}

 
  .hosp-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:4px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .hosp-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(28,58,61,.10);
    border-color:transparent;
  }
 
  .hosp-media{
    position:relative;
    height:220px;
    overflow:hidden;
    background:var(--navy-deep);
  }
  .hosp-media img{
    width:100%; 
    height:100%; 
    object-fit:cover;
    display:block;
    filter:saturate(1.02);
    transition:transform .5s ease;
  }
  .hosp-card:hover .hosp-media img{transform:scale(1.05);}
 
  .hosp-role-tag{
    position: absolute;
    left: 10px;
    bottom: 0px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 2px;
    box-shadow: 0 6px 16px rgba(92,140,121,.35);
  }
 
  .hosp-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
 
  .hosp-name{
    font-family:var(--head);
    font-size:26px;
    line-height:36px;
    font-weight:600;
    color:var(--navy-deep);
    margin:0 0 5px;
  }
 
  .hosp-meta{
    list-style:none;
    padding:0; margin:0 0 22px;
    display:flex; flex-direction:column; gap:11px;
    border-top:1px solid var(--line);
    padding-top:5px;
  }
  .hosp-meta li{
    display:flex; gap:11px; align-items:flex-start;

    color:var(--muted);

  }
  .hosp-meta i{
    color:var(--gold);
    width:15px;
    margin-top:5px;
    text-align:center;
    font-size:16px;
  }
  .hosp-meta a{color:var(--muted); text-decoration:none;}
  .hosp-meta a:hover{color:var(--navy-deep); text-decoration:underline;}
 
  .hosp-cta{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:9px;
    align-self:flex-start;
    font-size:14px;
    font-weight:600;
    letter-spacing:.02em;
    text-transform:uppercase;
    color:var(--navy-deep);
    text-decoration:none;
    padding-bottom:2px;
    border-bottom:1.5px solid var(--navy-deep);
  }
  .hosp-cta i{
    font-size:14px;
    transition:transform .25s ease;
  }
  .hosp-cta:hover i{transform:translateX(4px);}
 
  @media (max-width:520px){
    .section-head{font-size:29px;}
    #hospitals{padding:40px 0;}
  }
/* ══════════════════════════════════
   WHY CHOOSE
══════════════════════════════════ */
#why{background:var(--white)}

/*.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}*/

.why-visual{position:relative}
.why-inner{background:var(--navy-deep);padding:20px;position:relative}
.why-inner::before{content:'';position:absolute;top:12px;left:12px;right:-12px;bottom:-12px;border:1px solid var(--gold);z-index:-1}
.why-quote{
    font-family: var(--head);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    line-height: 28px;
    margin-bottom: 10px;
}
.why-qmark{font-size:12px;color:var(--gold-light);line-height:.5;display:block;margin-bottom:6px}
.why-list{display:flex;flex-direction:column;gap:15px}
.why-item{display:flex;gap:18px;align-items:flex-start}
.why-num{
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--head);
    font-size: 22px;
    color: var(--navy-deep);
    font-weight: 600;
    flex-shrink: 0;
  }
.why-text h4{font-size:18px;font-weight:500;color:var(--navy-deep);margin-bottom:5px}
.why-text p{color:var(--muted);font-weight:400;margin-bottom: 0}

/* ══════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════ */
#reviews{background:var(--cream-deep)}
.rev-hdr{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:30px;flex-wrap:wrap;gap:16px}
.rating-num{font-family:var(--head);font-size:3.4rem;font-weight:400;color:var(--navy-deep);line-height:1}
.stars{color:var(--gold);font-size:.95rem;letter-spacing:2px}
.rating-count{
    font-size: 14px;
    color: var(--muted);
    margin-top: 0px;
  }
.rev-carousel{position:relative;overflow:hidden}
.rev-track{display:flex;gap:22px;transition:transform .55s cubic-bezier(.4,0,.2,1);will-change:transform}
.review-card{
  background:var(--white);padding:20px;
      border-radius: 20px;
  height: 100%;
  border:1px solid var(--cream-deep);
  flex:0 0 calc(33.333% - 15px);
  min-width:0;transition:box-shadow .25s;
}
.review-card:hover{box-shadow:0 4px 22px rgba(10,22,40,.07)}
.rev-stars{
    color: #ffcb36;
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 7px;
  }
.rev-text{
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    line-height: 28px;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .rev-text.two{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10000;
    -webkit-box-orient: vertical;
  }
.rev-author{display:flex;align-items:center;gap:11px}
.rev-avatar{
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--body);
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}
.rev-name{font-weight:500;color:var(--navy-deep)}
.rev-tag{font-size:14px;color:var(--muted)}
.rev-nav{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:15px}
.rev-btn{
    width: 44px;
    height: 44px;
    border: 1.5px solid rgb(48 78 76 / 40%);
    background: transparent;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .25s;
    border-radius: 4px;
}
.rev-btn:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.rev-dots{display:flex;gap:8px;align-items:center}
.rev-dot{width:8px;height:8px;border-radius:50%;background:rgb(186 217 212);border:none;cursor:pointer;padding:0;transition:all .3s}
.rev-dot.active{background:var(--gold);width:32px;border-radius:4px}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
#faq{background:var(--white)}
.faq-grid{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
.faq-sticky{position:sticky;top:96px}
.faq-contact-card{
    margin-top: 15px;
    background: var(--navy-mid);
    padding: 20px;
  }
.faq-contact-card p{color:#fff;font-weight:400;line-height:1.75;margin-bottom:18px}
.faq-list{
    display: flex;
    flex-direction: column;
    background:var(--navy-deep);
    padding: 20px;
    border-radius: 20px;
  }
.faq-item{border-bottom:1px solid var(--cream-deep);overflow:hidden}
.faq-q{
  width:100%;text-align:left;background:none;border:none;
  padding:15px 0;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  font-family:var(--body);font-size:18px;font-weight:500;color:#fff;transition:color .2s;
}
.faq-q:hover{color:var(--gold)}
.faq-ico{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    flex-shrink: 0;
    transition: transform .32s;
}
.faq-item.open .faq-ico{transform:rotate(45deg)}
.faq-ans{max-height:0;overflow:hidden;transition:max-height .38s ease}
.faq-ans-inner{padding:0 0 18px;color:#fff;font-weight:400;line-height:1.82}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
/* ══════════════════════════════════
   CONTACT — redesigned
══════════════════════════════════ */
#contact{background:var(--navy-mid);}
.ct-body{display:grid;grid-template-columns:1fr 1fr;}
.ct-left{padding:0 30px 30px 0;border-right:1px solid rgb(255 255 255 / 20%)}
.ct-info-list{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
.ct-info-item{display:flex;gap:18px;align-items:flex-start;padding:15px 0;border-bottom:1px solid rgb(255 255 255 / 17%)}
.ct-info-item:last-child{border-bottom:none}
.ct-i-icon{
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }
.ct-i-icon svg{width:28px;height:28px;fill:none;stroke:var(--gold-light);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.ct-i-label{
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 5px;
  }
.ct-i-val{
    font-size: 16px;
    color: var(--cream-deep);
    font-weight: 400;
    line-height: 28px;
  }
.ct-i-val a{color:var(--cream);text-decoration:none;transition:color .2s}
.ct-i-val a:hover{color:var(--gold)}
.ct-timing{
    margin-top: 20px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(90 145 184 / 15%);
    padding: 22px 24px;
  }
.ct-timing-title{
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
.ct-timing-title::before{content:'';width:16px;height:1px;background:var(--gold)}
.ct-timing-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.04);font-size:.8rem}
.ct-timing-row:last-child{border-bottom:none}
.ct-timing-day{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
  }
.ct-timing-time{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
  }
.ct-timing-time.closed{color:rgba(248,245,239,.3)}
.ct-right{padding:0px 0 0 30px}
.ct-form-title{
    font-family: var(--head);
    font-size: 34px;
    line-height: 44px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
  }
.ct-form-sub{color:#fff;font-weight:400;margin-bottom:28px;}
.ct-form{display:flex;flex-direction:column;gap:16px}
.ct-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.ct-field{display:flex;flex-direction:column;gap:6px}
.ct-field label{
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
  }
.ct-field input,.ct-field select,.ct-field textarea{
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(160 194 191 / 30%);
    color: var(--cream-deep);
    padding: 10px 15px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color .25s,background .25s;
    -webkit-appearance: none;
    appearance: none;
    resize: none;
}
.ct-field input:focus,.ct-field select:focus,.ct-field textarea:focus{border-color:var(--gold);background:rgba(184,151,90,.05)}
.ct-field input::placeholder,.ct-field textarea::placeholder{color:rgba(248,245,239,.2)}
.ct-field select option{background:var(--navy-deep);color:var(--cream)}
.ct-field textarea{height:130px}
.ct-submit{display:flex;align-items:center;justify-content:space-between;margin-top:4px;flex-wrap:wrap;gap:14px}
.ct-note{
    font-size: 12px;
    color: #ffffff26;
    font-weight: 400;
    max-width: 280px;
    line-height: 22px;
  }
.ct-success{display:none;padding:16px 20px;background:rgba(184,151,90,.1);border:1px solid rgba(184,151,90,.3);color:var(--gold-light);font-size:.84rem;font-weight:400;margin-top:4px}
.ct-map{margin-top:28px}
.ct-map-label{
    font-size: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgb(255 255 255);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-map-label::before{content:'';width:14px;height:1px;background:var(--gold);}
.map-wrap{border:1px solid rgba(184,151,90,.15);overflow:hidden;height:280px}
.map-wrap iframe{width:100%;height:100%;border:none;filter:grayscale(.3) contrast(1.1)}
@media(max-width:960px){.ct-hero{grid-template-columns:1fr}.ct-hero-right{justify-content:flex-start}.ct-body{grid-template-columns:1fr}.ct-left{padding:40px 0;border-right:none;border-bottom:1px solid rgba(184,151,90,.1)}.ct-right{padding:40px 0}}
@media(max-width:640px){.ct-row{grid-template-columns:1fr}.ct-channel{min-width:140px}.ct-hero{padding:60px 5% 40px}}


/* Demo page content just so there's something behind the popup */
.demo-page {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
    color: var(--muted);
}
.demo-page h1 {
    font-family: var(--head);
    color: var(--navy-deep);
}
 
/* ===== Popup Overlay ===== */
.ct-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 35, 34, 0.55);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity .35s ease;
}
.ct-popup-overlay.show {
    display: flex;
}
.ct-popup-overlay.visible {
    opacity: 1;
}
 
.ct-popup-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 100vh;
    /* overflow-y: auto; */
    /* background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid)); */
    padding: 15px 20px;
    transform: translateY(24px) scale(.97);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    /* border: 1px solid rgba(160,194,191,.25); */
}
.ct-popup-overlay.visible .ct-popup-box {
    transform: translateY(0) scale(1);
}
 
.ct-popup-close {
    position: absolute;
    top: 25px;
    right: 31px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.05);
    color: var(--cream);
    font-size: 18px;
    border-radius: 50%;
    line-height: 1;
    z-index: 9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .2s;
}
.ct-popup-close:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--gold-light);
    transform: rotate(90deg);
}
/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer{background:var(--navy-deep);padding:60px 0 0}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1.5fr 1.5fr;gap:20px;}
.ft-name{font-family:var(--head);font-size:26px;font-weight:400;color:var(--cream);margin-bottom:3px}
.ft-creds{
    font-size: 16px;
    font-weight: 400;
    color: var(--navy-mid);
    letter-spacing: 0.03em;
    margin-bottom: 5px;
    line-height: 28px;
}
.ft-about{color:#fff;font-weight:400;margin-bottom:20px}
.ft-col-title{
    font-family: var(--head);
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.6px;
    color: #fff;
    margin-bottom: 20px;
  }
.ft-links{list-style:none;display:flex;flex-direction:column;gap:9px;padding-left: 0}
.ft-links a{color:#fff;text-decoration:none;font-weight:400;transition:color .2s}
.ft-links a:hover{color:var(--gold-light)}
.ft-c-item{
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: start;
}
.ft-c-item a{color:#fff;text-decoration:none}
.ft-c-item a:hover{color:var(--gold-light)}
.footer-bottom{margin-top:35px;padding: 20px 0;border-top:1px solid rgba(255,255,255,.05);color:#fff}

/* ══════════════════════════════════
   STICKY FLOAT BUTTONS
══════════════════════════════════ */
.float-btns{
    position: fixed;
    bottom: 95px;
    left: 0px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}
.float-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--body);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s,transform .3s;
}
.float-btn:hover{
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  transform:translateX(-5px)
}
.float-btn .fb-icon{
    width: 50px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
/* WhatsApp */
.fb-wa{background:var(--navy-mid);color:#fff}
.fb-wa .fb-icon{background:#6ac12a}
/* Call */
.fb-call{background:var(--gold);color:var(--navy)}
.fb-call .fb-icon{background:rgba(0,0,0,.18);color:#fff}
/* pulse ring */
.fb-wa::before,.fb-call::before{    
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    width: 40px;
    height: 40px;
    border-radius: 1px;
    transform: translate(-50%,-50%) scale(1);
    opacity: 0;
    border: 5px solid rgb(255 255 255);
    animation: fPulse 2.5s ease-out infinite;
}
@keyframes fPulse{0%{transform:translate(-50%,-50%) scale(.8);opacity:.6}100%{transform:translate(-50%,-50%) scale(2);opacity:0}}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:960px){
  #hero .hero-slide{grid-template-columns:1fr}
  /*.hero-right-col{display:none}*/
  .about-grid{grid-template-columns:1fr;gap:36px}
  .about-sticky{position:static}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .hosp-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .faq-sticky{position:static}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .svc-intro{grid-template-columns:1fr;gap:18px}
  .review-card{flex:0 0 calc(50% - 11px)}
}
@media(max-width:991px){
  .nav-links,.nav-cta{display:none}
  nav.menu-open .nav-links{
    display:flex;flex-direction:column;
    position:fixed;top:120px;left:0;right:0;
    background:var(--navy-deep);padding:22px 5%;
    border-bottom:1px solid rgba(184,151,90,.12);z-index:499;
  }
  nav.menu-open .nav-cta{display:block;margin:0 5% 18px;width:auto;text-align:center;padding:12px 20px}
  .hamburger{display:flex}
  .svc-grid{grid-template-columns:repeat(2,1fr); background: transparent;}
  .footer-inner{grid-template-columns:repeat(2,1fr);}
  .review-card{flex:0 0 calc(100% - 0px)}
  h1{font-size:2.2rem}
  .float-btn .fb-label{display:none}
  .float-btn{padding:0;width:52px;border-radius:50%}
  .float-btn .fb-icon{border-radius:50%}
}

.logo{
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo .logo-icon img {
    width: 110px;
    margin-bottom: 0px;
}

.bb-short {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.bb-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width:35%;
    height: 3px;
    background: var(--gold-light);
    border-radius: 1px;
}

.logo .logo-text h2 {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--head);
}

.logo .logo-text h3 {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-family:  var(--body);
    margin-bottom: 2px;
}

.lightbox-gallery{
    padding: 50px 0;
    color: #000;
overflow-x: hidden;
}

.lightbox-gallery .photos{
    padding-bottom:20px;
}
.lightbox-gallery .item{
    padding-bottom:30px
}
.lightbox-gallery .item img{
    border: 1px solid #c6c6c6;
    padding: 3px;
}
.lb-nav a.lb-next, .lb-nav a.lb-prev{
    opacity: 1 !important;
    position: absolute;
}
.lb-nav a.lb-next{
    right: -45% !important;
}
.lb-nav a.lb-prev{
    left: -45% !important;
}
.lb-data .lb-number{
    display: none !important;
}
.lb-dataContainer{
    position: absolute;
    top: -5%;
    right: 20%;
}

  /* ── Page layout: sidebar nav + main ── */
  .sv-layout {
    /* max-width: 1280px; */
    /* margin: 0 auto; */
    padding: 60px 0;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 20px;
    align-items: start;
  }

  /* ── Sidebar quick nav ── */
  .sv-sidenav {
    position: sticky;
    top: 0px;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
  }
  .sv-sidenav__title {
     font-family: var(--head);
    font-size: 26px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
  }
  .sv-sidenav__list { display: flex; flex-direction: column; gap: 2px; }
  .sv-sidenav__item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    font-size: 16px;
    margin-bottom: 5px;
    color:var(--text);
    background: var(--cream);
    text-decoration: none;
    border-left: 2px solid var(--gold);
    transition: 0.5s;
  }
  .sv-sidenav__item:hover {
    color: #fff; 
    background: var(--navy-deep);
  }
  .sv-sidenav__item.active {
    color: #fff; 
    background: var(--navy-deep);
    border-left-color: var(--gold);
  }
  .sv-sidenav__icon {     
    font-size: 16px;
    flex-shrink: 0;
    padding-left: 10px; 
  }
  .sv-category[data-hidden="true"] { display: none; }

  .sv-category__title {
    font-family: var(--head);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 34px;
    margin-bottom: 5px;
  }

  .sv-category__title-two {
    font-family: var(--head);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 32px;
    margin-bottom: 5px;
  }

 .headend .cond{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

.headend ul li{
  padding: 5px 0;
}
.headend ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}
.headend ul li i{
  color: var(--gold);
  padding-right: 10px;
}


  /* ── Responsive ── */
  @media(max-width:960px){
    .sv-layout { grid-template-columns:1fr; }
    .sv-card__body-inner { grid-template-columns:1fr; }
    .sv-card__panel { order:-1; }
  }
  @media(max-width:640px){
    .sv-hero__content { padding:6rem 1.25rem 3rem; }
    .sv-filter__inner { padding:0 1rem; }
    .sv-card__head { padding:1.1rem; gap:1rem; }
    .sv-card__body-inner { padding:1.25rem; gap:1.25rem; }
  }


  .counters {
    padding: var(--sp);
    background: #f7fafa;
  }
 
  .counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
 
  .counter {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
    position: relative;
  }
 
  .counter:not(:first-child) {
    border-left: 1px solid var(--cream-deep);
  }
 
  .counter__icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
  }
 
  .counter__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--navy-deep);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .counter--accent .counter__icon {
    background: rgba(95, 136, 132, 0.14);
  }
 
  .counter--accent .counter__icon svg {
    stroke: var(--navy-mid);
  }
 
  .counter__body {
    display: flex;
    flex-direction: column;
  }
 
  .counter__number {
    font-family: var(--head);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--navy-deep);
    line-height: 1;
    display: flex;
    align-items: baseline;
    letter-spacing: -0.5px;
  }
 
  .counter--accent .counter__number {
    color: var(--navy-mid);
  }
 
  .counter__plus {
    font-size: 0.7em;
    margin-left: 2px;
    font-weight: 700;
  }
 
  .counter__label {
    margin-top: 8px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
  }
 
  @media (max-width: 900px) {
    .counters__grid {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 40px;
    }
    .counter:nth-child(3) { border-left: 1px solid var(--cream-deep); }
    .counter:nth-child(2n+1) { border-left: none; }
  }
 
  @media (max-width: 520px) {
    .counters__grid {
      grid-template-columns: 1fr;
      row-gap: 32px;
    }
    .counter { border-left: none !important; padding: 0; }
    .counter__label { white-space: normal; }
  }
 
  @media (prefers-reduced-motion: reduce) {
    .counter__number { transition: none; }
  }


  .marquee-section {
    padding: 30px 0;
    background: var(--navy-deep);
    overflow: hidden;
    position: relative;
  }
 
  .marquee-section__eyebrow {
    text-align: center;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
  }
 
  .marquee-section__title {
    text-align: center;
    font-family: var(--head);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: -0.3px;
  }
 
  .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%
    );
  }
 
  .marquee__track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 8px 0;
    animation: scroll-left 42s linear infinite;
  }
 
  .marquee--reverse .marquee__track {
    animation-name: scroll-right;
    animation-duration: 42s;
  }
 
  .marquee + .marquee {
    margin-top: 5px;
  }
 
  .marquee:hover .marquee__track {
    animation-play-state: paused;
  }
 
  .pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(241, 255, 254, 0.05);
    border: 1px solid rgba(160, 202, 198, 0.22);
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }
 
  .pill:hover {
    background: rgba(160, 202, 198, 0.12);
    border-color: var(--gold-light);
    transform: translateY(-2px);
  }
 
  .pill__dash {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    border: 1px dashed #304e4c;
    background: var(--gold-light);
    flex-shrink: 0;
  }
 
  .pill:hover .pill__dash {

    background: var(--white);
    transition: width 0.25s ease, background 0.25s ease;
  }
 
  .pill__text {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.2px;
  }
 
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
 
  @keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
 
  @media (max-width: 600px) {
    .pill { padding: 13px 20px; }
    .pill__text { font-size: 14px; }
    .marquee__track { gap: 12px; animation-duration: 28s; }
    .marquee--reverse .marquee__track { animation-duration: 28s; }
  }
 
  @media (prefers-reduced-motion: reduce) {
    .marquee__track {
      animation: none;
    }
  }