:root {
  --brand: #0b7bc4;
  --brand-dark: #08619f;
  --teal: #0e9594;
  --teal-2: #2ec4b6;
  --navy: #0b2440;
  --navy-2: #123f63;
  --ink: #0f2f4b;
  --body-c: #5b7186;
  --line: #e4eef5;
  --soft: #f2f8fc;
  --sun: #f4a825;
  --red: #c1121f;
  --font-body:
    "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial,
    sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --shadow-sm: 0 10px 26px -12px rgba(15, 47, 75, 0.18);
  --shadow-md: 0 22px 44px -18px rgba(15, 47, 75, 0.22);
  --shadow-lg: 0 34px 70px -24px rgba(15, 47, 75, 0.32);
  --grad: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  --grad-navy: linear-gradient(120deg, #0b2440 0%, #0b5d8f 60%, #0e9594 140%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  font-family: var(--font-body);
  color: var(--body-c);
  background: #fff;
  position: relative;
  font-size: 0.99rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  letter-spacing: -0.015em;
}
a {
  text-decoration: none;
}
::selection {
  background: var(--brand);
  color: #fff;
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: #eef4f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand), var(--teal));
  border-radius: 99px;
  border: 3px solid #eef4f9;
}
.lead-text {
  font-size: 1.05rem;
  color: var(--body-c);
  line-height: 1.75;
}
section {
  padding: 5.2rem 0;
  overflow: hidden;
}

/* ---------- display font + gradient text ---------- */
.font-display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}
.gradient-text {
  background: linear-gradient(120deg, var(--brand), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- brand buttons ---------- */
.btn {
  transition: all 0.28s var(--ease);
  border-radius: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  --bs-btn-disabled-bg: var(--brand);
  --bs-btn-disabled-border-color: var(--brand);
}
.btn-outline-primary {
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
}
.btn-gradient {
  background: var(--grad);
  color: #fff;
  border: 0;
  position: relative;
  overflow: hidden;
}
.btn-gradient:hover,
.btn-gradient:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(11, 123, 196, 0.55);
}
.btn-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-gradient:hover::after {
  left: 130%;
}
.btn-white {
  background: #fff;
  color: var(--red);
  border: 0;
}
.btn-white:hover {
  background: #fff;
  color: #8f1020;
  transform: translateY(-2px);
}
.text-brand {
  color: var(--brand) !important;
}
.bg-soft {
  background: var(--soft);
}

/* ---------- icons ---------- */
.ic {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}
.ic-f {
  fill: currentColor;
  stroke: none;
}
.ic-sm {
  width: 16px;
  height: 16px;
}
.ic-lg {
  width: 30px;
  height: 30px;
}
.icon-tile {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #e8f4ff, #dcf3ef);
  color: var(--brand);
  flex: 0 0 auto;
  transition: all 0.35s var(--ease);
}
.icon-tile .ic {
  width: 26px;
  height: 26px;
}
.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

/* ---------- scroll progress ---------- */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--teal-2));
  z-index: 1060;
  border-radius: 0 99px 99px 0;
}

/* ---------- topbar ---------- */
.topbar {
  background: var(--navy);
  color: #c9dfee;
  font-size: 0.84rem;
  padding: 0.55rem 0;
  position: relative;
}
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 196, 182, 0.5),
    transparent
  );
}
.topbar a {
  color: #c9dfee;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--teal-2);
}
.topbar .ic {
  width: 15px;
  height: 15px;
  color: var(--teal-2);
}

/* ---------- navbar (glass) ---------- */
.navbar-main {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(15, 47, 75, 0.06);
  transition: all 0.35s var(--ease);
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(228, 238, 245, 0.9);
}
.navbar-main.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 34px rgba(15, 47, 75, 0.12);
}
.brand-name {
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}
.navbar-main .nav-link {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
  margin: 0 0.12rem;
  border-radius: 0.75rem;
  padding: 0.55rem 0.95rem !important;
  position: relative;
  transition: all 0.25s var(--ease);
}
.navbar-main .nav-link:hover {
  color: var(--brand);
  background: #ecf5fc;
  transform: translateY(-1px);
}
.navbar-main .nav-link.active {
  color: #fff !important;
  background: var(--grad);
  box-shadow: 0 8px 18px -6px rgba(11, 123, 196, 0.5);
}

/* ---------- navbar dropdowns ---------- */
.navbar-main .dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2.2px solid currentColor;
  border-bottom: 2.2px solid currentColor;
  border-top: 0;
  border-left: 0;
  display: inline-block;
  transform: rotate(45deg);
  margin-left: 0.5rem;
  transition: transform 0.28s var(--ease);
}
.navbar-main .dropdown-toggle.show::after {
  transform: rotate(225deg);
}
.navbar-main .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  padding: 0.65rem;
  margin-top: 0.75rem !important;
  font-family: var(--font-body);
}
.navbar-main .dropdown-menu.show {
  animation: dropIn 0.28s var(--ease);
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.navbar-main .dropdown-item {
  border-radius: 0.75rem;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.2s var(--ease);
}
.navbar-main .dropdown-item:hover {
  background: linear-gradient(120deg, #eaf5fd, #eafaf7);
  color: var(--brand-dark);
  transform: translateX(3px);
}
.navbar-main .dropdown-item .ic {
  color: var(--teal);
}
.navbar-main .dropdown-header {
  font-weight: 800;
  color: var(--brand);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.8rem 0.3rem;
}
.navbar-main .dropdown-divider {
  border-top: 1.5px dashed var(--line);
  margin: 0.55rem 0.5rem;
}
.dropdown-services {
  min-width: 540px;
}
@media (min-width: 576px) {
  .dropdown-services .col-sm-6 + .col-sm-6 {
    border-left: 1.5px dashed var(--line);
  }
}
.navbar-main .dropdown-cta {
  background: var(--grad);
  color: #fff;
  margin-top: 0.5rem;
  font-weight: 700;
}
.navbar-main .dropdown-cta .ic {
  color: #fff;
}
.navbar-main .dropdown-cta:hover {
  background: linear-gradient(120deg, #08619f, #0c857f);
  color: #fff;
}
.dd-rich strong {
  font-size: 0.93rem;
}
.dd-rich small {
  font-size: 0.78rem;
}
.svc-card {
  scroll-margin-top: 115px;
}
.svc-card:target {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11, 123, 196, 0.16);
}
@media (max-width: 991.98px) {
  .navbar-main .dropdown-menu {
    position: static !important;
    box-shadow: 0 12px 28px -16px rgba(15, 47, 75, 0.2);
    margin: 0.45rem 0 1rem 0.35rem !important;
    border-radius: 1.1rem;
    min-width: 0 !important;
  }
}

/* ---------- hero ---------- */
.hero {
  position: static;
  /* padding: 4.8rem 0 7rem; */
  background: linear-gradient(180deg, #eaf6fe 0%, #f7fcff 65%, #f4fffe 100%);
  /* overflow: hidden; */
}
.hero-deco-dots {
  position: absolute;
  top: 70px;
  left: 4%;
  width: 230px;
  height: 180px;
  background-image: radial-gradient(
    rgba(11, 123, 196, 0.16) 1.6px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-deco-plus {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 300px;
  height: 280px;
  opacity: 0.9;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><path d="M15 9v12M9 15h12" stroke="%230e9594" stroke-opacity=".13" stroke-width="2.6" stroke-linecap="round"/></svg>');
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-blob.b1 {
  width: 560px;
  height: 560px;
  top: -220px;
  right: -160px;
  background: radial-gradient(
    circle,
    rgba(14, 149, 148, 0.14),
    transparent 62%
  );
}
.hero-blob.b2 {
  width: 420px;
  height: 420px;
  bottom: -190px;
  left: -140px;
  background: radial-gradient(
    circle,
    rgba(11, 123, 196, 0.12),
    transparent 62%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid #d3e8f7;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pulse-dot {
  background: var(--teal-2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.scribble-wrap {
  position: relative;
  display: inline-block;
}
.scribble {
  position: absolute;
  left: -2%;
  bottom: -10px;
  width: 104%;
  height: 14px;
}
.hero-img {
  border-radius: 2.4rem 2.4rem 2.4rem 7rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  display: block;
}
.hero-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2.5px dashed rgba(11, 123, 196, 0.35);
  border-radius: 50%;
  top: -34px;
  right: -24px;
  animation: spin 26s linear infinite;
  pointer-events: none;
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dotted rgba(14, 149, 148, 0.3);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floaty 5.2s ease-in-out infinite;
}
.float-card small {
  display: block;
  font-size: 0.72rem;
  color: var(--body-c);
}
.float-card strong {
  font-size: 0.95rem;
  color: var(--ink);
}
.fc-1 {
  top: 7%;
  left: -46px;
}
.fc-2 {
  bottom: 9%;
  right: -28px;
  animation-delay: 2.4s;
}
@keyframes floaty {
  50% {
    transform: translateY(-11px);
  }
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 5px 16px rgba(15, 47, 75, 0.06);
  transition: transform 0.25s var(--ease);
}
.trust-chip:hover {
  transform: translateY(-3px);
}
.trust-chip .ic {
  color: var(--teal);
}
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 3;
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2.5px solid var(--brand);
  border-radius: 14px;
  position: relative;
  opacity: 0.75;
}
.mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--brand);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  50% {
    transform: translateY(9px);
    opacity: 0.2;
  }
}

/* ---------- ticker marquee ---------- */
.ticker {
  background: var(--navy);
  color: #d7e8f4;
  overflow: hidden;
  padding: 0.95rem 0;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}
.ticker-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: tickermove 30s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.ticker-item .ic {
  color: var(--teal-2);
}
@keyframes tickermove {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- info strip ---------- */
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.info-card:hover::before {
  transform: scaleX(1);
}
.info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}


/* ---------- section headings ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.section-tag::before {
  content: "";
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

/* ---------- about ---------- */
.about-img {
  border-radius: 2rem 2rem 2rem 5.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-frame {
  position: absolute;
  inset: auto -16px -16px auto;
  width: 62%;
  height: 62%;
  border: 2.5px dashed rgba(11, 123, 196, 0.3);
  border-radius: 2rem 2rem 2rem 5.5rem;
  z-index: 1;
  top: auto;
  bottom: -16px;
}
.about-img-wrap {
  position: relative;
  padding: 0 16px 16px 0;
}
.exp-badge {
  position: absolute;
  right: -6px;
  bottom: -22px;
  background: var(--grad);
  color: #fff;
  border-radius: 1.3rem;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 20px 44px -12px rgba(11, 123, 196, 0.6);
  text-align: center;
  z-index: 3;
}
.exp-badge .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  font-size: 0.96rem;
}
.check-list .ic {
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  width: 21px;
  height: 21px;
  padding: 4px;
  flex: 0 0 auto;
  margin-top: 1px;
  stroke-width: 3;
}
.quote-card {
  background: linear-gradient(135deg, #f0f8fe, #eafaf7);
  border: 1px solid #dceef8;
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem;
  position: relative;
}
.quote-card .q {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0;
  color: var(--brand);
  position: absolute;
  top: 1.6rem;
  left: 1.1rem;
  opacity: 0.35;
}

/* ---------- services ---------- */
.svc-card {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.7rem;
  height: 100%;
  background: #fff;
  transition: all 0.38s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover .icon-tile {
  transform: rotate(-8deg) scale(1.1);
  background: var(--grad);
  color: #fff;
}

.svc-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.05rem 0 0.5rem;
}
.svc-card p {
  font-size: 0.9rem;
  margin: 0;
}
.svc-num {
  position: absolute;
  top: 1.05rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #b3defd;
  line-height: 1;
  transition: color 0.35s;
}
.svc-card:hover .svc-num {
  color: var(--teal);
}
.dept-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0 1.1rem;
}
.dept-label .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.dept-label .pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.25);
}
.dept-label .rule {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.dept-label.teal .pill {
  background: var(--teal);
}
.dept-label .sub {
  font-size: 0.88rem;
  color: var(--body-c);
  font-weight: 600;
}

/* ---------- journey steps ---------- */
.steps {
  position: relative;
}
.steps-line {
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  border-top: 2.5px dashed #cbe4f3;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.6rem;
}
.step-num {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: #fff;
  border: 2.5px dashed var(--brand);
  display: grid;
  place-items: center;
  color: var(--brand);
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.step:hover .step-num {
  background: var(--grad);
  color: #fff;
  border-style: solid;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 34px -12px rgba(11, 123, 196, 0.5);
}
.step h5 {
  font-size: 1.02rem;
  font-weight: 800;
}
.step p {
  font-size: 0.88rem;
  margin: 0;
}
.step-arrow {
  position: absolute;
  top: 28px;
  right: -14px;
  color: #b9d8ec;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .steps-line {
    display: none;
  }
  .step {
    margin-bottom: 2.2rem;
  }
  .step-arrow {
    display: none;
  }
}

/* ---------- department panels ---------- */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2.4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  padding: 3rem;
}
.panel::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  background-image: radial-gradient(
    rgba(11, 123, 196, 0.1) 1.6px,
    transparent 1.6px
  );
  background-size: 20px 20px;
  pointer-events: none;
}
.panel.teal-accent::before {
  background-image: radial-gradient(
    rgba(14, 149, 148, 0.1) 1.6px,
    transparent 1.6px
  );
  background-size: 20px 20px;
}
.dept-img {
  border-radius: 1.9rem 1.9rem 1.9rem 4.5rem;
  width: 100%;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease);
}
.dept-media {
  overflow: hidden;
  border-radius: 1.9rem 1.9rem 1.9rem 4.5rem;
  position: relative;
}
.dept-media:hover .dept-img {
  transform: scale(1.05);
}
.dept-img-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 0.7rem 1.05rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.two-col-list {
  columns: 2;
  column-gap: 1.6rem;
}
@media (max-width: 575px) {
  .two-col-list {
    columns: 1;
  }
}
.timing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eefaf7;
  border: 1px solid #cdeee8;
  color: #0b6f6e;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.45rem 1rem;
}
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: #f0f7fc;
  border: 1px solid #dcebf6;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}
.mini-chip .ic {
  color: var(--teal);
  width: 14px;
  height: 14px;
}

/* ---------- stats panel ---------- */
.stats-inner {
  background: var(--grad-navy);
  border-radius: 2.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3.6rem 2rem;
  box-shadow: var(--shadow-lg);
}
.stats-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.035) 0 22px,
    transparent 22px 44px
  );
}
.stats-inner::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  top: -190px;
  right: -130px;
}
.stat-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #c9f2ec;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.stat-lbl {
  font-size: 0.9rem;
  color: #b7d6e9;
  position: relative;
  z-index: 1;
}

/* ---------- doctors ---------- */
.doc-card {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: all 0.38s var(--ease);
}
.doc-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.doc-media {
  position: relative;
  overflow: hidden;
}
.doc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.doc-card:hover .doc-img {
  transform: scale(1.07);
}
.doc-exp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.doc-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.3rem 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(11, 36, 64, 0.88) 65%);
  color: #fff;
  z-index: 1;
}
.doc-overlay h5 {
  color: #fff;
  margin: 0;
  font-size: 1.08rem;
}
.doc-overlay .role {
  color: #a9e6de;
  font-size: 0.82rem;
  font-weight: 700;
}
.doc-cred {
  font-size: 0.8rem;
  border-left: 3px solid var(--line);
  padding-left: 0.85rem;
}

/* ---------- emergency panel ---------- */
.emg-inner {
  background: linear-gradient(120deg, #a4122a, #e63946 130%);
  border-radius: 2.4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3.2rem;
  box-shadow: 0 34px 70px -24px rgba(193, 18, 31, 0.55);
}
.emg-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.07) 0 20px,
    transparent 20px 40px
  );
}
.emg-inner::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  bottom: -170px;
  right: -120px;
}
.emg-phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  letter-spacing: 0.01em;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ---------- appointment ---------- */
.appt-card {
  border-radius: 1.9rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #fff;
  position: relative;
}
.appt-head {
  background: var(--grad);
  color: #fff;
  padding: 1.15rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.form-control,
.form-select {
  border-radius: 0.85rem;
  padding: 0.72rem 0.95rem;
  border-color: #d7e5ef;
  font-size: 0.95rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.22rem rgba(11, 123, 196, 0.15);
}
.form-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.88rem;
}
.timing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1.5px dashed #dce9f2;
  font-size: 0.92rem;
}
.timing-row:last-child {
  border-bottom: 0;
}
.timing-row strong {
  color: var(--ink);
}
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 1.25rem 1.4rem;
  height: 100%;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}

/* ---------- testimonials ---------- */
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.9rem;
  padding: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.t-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10rem;
  right: 2rem;
  height: 2px;
  border-radius:  0px 6px 0 0;
  background: var(--grad);
}
.t-card .qmark {
  position: absolute;
  top: 0px;
  left: 1.8rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(120deg, var(--brand), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.02rem;
  flex: 0 0 auto;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px var(--teal-2);
}
.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  /* height: 10px; */
  /* border-radius: 50%; */
  background: var(--brand);
  opacity: 0.22;
  transition: all 0.3s;
}
.carousel-indicators .active {
  opacity: 1;
  width: 26px;
  /* border-radius: 99px; */
}

/* ---------- faq ---------- */
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 1.1rem !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 22px -12px rgba(15, 47, 75, 0.1);
  transition: box-shadow 0.3s;
}
.accordion-item:hover {
  box-shadow: 0 14px 30px -12px rgba(15, 47, 75, 0.16);
}
.accordion-button {
  font-weight: 800;
  color: var(--ink);
  padding: 1.15rem 1.35rem;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(120deg, #e9f4fd, #eafaf7);
  color: var(--brand-dark);
  box-shadow: inset 4px 0 0 var(--brand);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.22rem rgba(11, 123, 196, 0.14);
}
.accordion-body {
  font-size: 0.94rem;
}

/* ---------- contact / map ---------- */
.map-card {
  border-radius: 1.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8f2f8;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.map-card svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}
.map-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ---------- footer ---------- */
footer {
  background: var(--navy);
  color: #b9cede;
  padding: 4.2rem 0 0;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
}
footer h6 {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
}
footer a {
  color: #b9cede;
  font-size: 0.93rem;
  transition: all 0.22s;
}
footer a:hover {
  color: #fff;
  padding-left: 5px;
}
.f-link {
  display: block;
  padding: 0.26rem 0;
}
.f-link::before {
  content: "›";
  color: var(--teal-2);
  margin-right: 0.45rem;
  font-weight: 800;
  transition: margin 0.22s;
}
.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.28s var(--ease);
}
.soc:hover {
  background: var(--brand);
  transform: translateY(-4px);
  padding-left: 0;
}
.news-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  border-radius: 0.85rem !important;
}
.news-input::placeholder {
  color: #8fb0c5;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.8rem;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

/* ---------- floating buttons ---------- */
#toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1030;
  width: 47px;
  height: 47px;
  border-radius: 0.95rem;
  border: 0;
  background: var(--grad);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: 0 14px 28px -8px rgba(11, 123, 196, 0.6);
  transition: transform 0.25s var(--ease);
}
#toTop.show {
  display: grid;
}
#toTop:hover {
  color: #fff;
  transform: translateY(-4px);
}
.whats {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1030;
  height: 47px;
  width: 47px;
  border-radius: 999px;
  border: 0;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 14px 28px -8px rgba(37, 211, 102, 0.55);
  transition:
    width 0.35s var(--ease),
    padding 0.35s var(--ease);
}
.whats span {
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 800;
  transition: all 0.35s var(--ease);
}
.whats:hover {
  width: 172px;
  padding: 0 16px;
}
.whats:hover span {
  max-width: 110px;
  opacity: 1;
  margin-left: 9px;
}

/* ---------- reveal & stagger ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
.stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger > .reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger > .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .fc-1 {
    left: -8px;
  }
  .fc-2 {
    right: -8px;
  }
  section {
    padding: 3.8rem 0;
  }
  .panel {
    padding: 2rem 1.4rem;
  }
  .scroll-hint {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .exp-badge {
    right: 4px;
    bottom: -16px;
    padding: 0.85rem 1.05rem;
  }
  .t-card {
    padding: 2rem 1.35rem;
  }
  .emg-inner {
    padding: 2.2rem 1.5rem;
  }
  .stats-inner {
    padding: 2.8rem 1.2rem;
  }
}



/* ---------- video section ---------- */
#video{position:relative}
#video .dots-patch{position:absolute;width:210px;height:170px;background-image:radial-gradient(rgba(14,149,148,.18) 1.6px,transparent 1.6px);background-size:20px 20px;right:-18px;top:-24px;pointer-events:none}
.video-frame{position:relative}
.video-frame::before{content:"";position:absolute;inset:18px -18px -18px 18px;border:2.5px dashed rgba(11,123,196,.35);border-radius:2rem 2rem 2rem 4.5rem;z-index:0}
.video-card{position:relative;z-index:1;border-radius:2rem 2rem 2rem 3.6rem;overflow:hidden;box-shadow:var(--shadow-lg)}
.video-card img{width:100%;display:block;transition:transform .6s var(--ease)}
.video-card:hover img{transform:scale(1.04)}
.video-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,36,64,.12) 0%,transparent 35%,rgba(11,36,64,.66) 100%)}
.video-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:92px;height:92px;border-radius:50%;border:0;background:var(--grad);color:#fff;display:grid;place-items:center;box-shadow:0 26px 54px -12px rgba(11,123,196,.7);transition:transform .3s var(--ease)}
.video-play::after{content:"";position:absolute;inset:-12px;border-radius:50%;border:2.5px solid rgba(255,255,255,.6);animation:playPulse 2s infinite}
@keyframes playPulse{0%{transform:scale(.86);opacity:.95}70%{transform:scale(1.24);opacity:0}100%{opacity:0}}
.video-play:hover{transform:translate(-50%,-50%) scale(1.09)}
.video-chip{position:absolute;top:16px;left:16px;background:rgba(255,255,255,.93);backdrop-filter:blur(6px);color:var(--brand-dark);font-weight:800;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:.42rem .85rem;border-radius:999px;display:inline-flex;align-items:center;gap:.45rem;z-index:2}
.video-chip .pulse-dot{background:var(--red)}
.video-dur{position:absolute;right:16px;bottom:14px;background:rgba(11,36,64,.85);color:#fff;font-weight:700;font-size:.8rem;padding:.32rem .7rem;border-radius:.6rem;display:inline-flex;align-items:center;gap:.4rem;z-index:2}
.video-cap{position:absolute;left:18px;bottom:14px;color:#e8f3fb;font-size:.82rem;font-weight:600;max-width:68%;z-index:2}
#videoModal .modal-content{background:#0b2440;border:1px solid rgba(255,255,255,.08);border-radius:1.6rem;overflow:hidden}
#videoModal video{display:block;width:100%;max-height:78vh;background:#000}
@media (max-width:575.98px){.video-play{width:68px;height:68px}.video-frame::before{display:none}}
