:root {
  --green: #059669;
  --green-light: #10b981;
  --blue: #0284c7;
  --blue-light: #0ea5e9;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --radius-card: 20px;
  --radius-btn: 12px;
  --shadow-card: 0 10px 30px rgba(2, 132, 199, 0.08), 0 6px 22px rgba(5, 150, 105, 0.07);
  --shadow-card-hover: 0 18px 50px rgba(2, 132, 199, 0.12), 0 12px 36px rgba(5, 150, 105, 0.1);
  --shadow-btn: 0 10px 24px rgba(5, 150, 105, 0.24), 0 8px 18px rgba(2, 132, 199, 0.18);
  --shadow-btn-hover: 0 16px 34px rgba(5, 150, 105, 0.3), 0 12px 26px rgba(2, 132, 199, 0.22);
  --shadow-icon: 0 12px 28px rgba(2, 132, 199, 0.1), 0 10px 22px rgba(5, 150, 105, 0.08);
  --scrollbar-track: #e8f7f2;
  --scrollbar-thumb: linear-gradient(180deg, var(--green-light), var(--blue-light));
  --scrollbar-thumb-fallback: var(--green);
  --scrollbar-thumb-hover: linear-gradient(180deg, var(--green), var(--blue));
}

* {
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--scrollbar-thumb-fallback) var(--scrollbar-track);
}

body {
  background: var(--slate-50);
  color: var(--slate-900);
  overflow-x: hidden;
}

.container-width {
  width: 100%;
  max-width: 1200px;
}

/* ── Glass ── */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  opacity: 0.93;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--slate-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.06), 0 6px 18px rgba(5, 150, 105, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(2, 132, 199, 0.1), 0 12px 26px rgba(5, 150, 105, 0.08);
}

.brochure-dropdown {
  position: relative;
  display: inline-block;
}

.brochure-dropdown-layer {
  position: relative;
  z-index: 50;
}

.brochure-dropdown summary {
  list-style: none;
}

.brochure-dropdown summary::-webkit-details-marker {
  display: none;
}

.brochure-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  width: 190px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brochure-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.brochure-dropdown-menu a:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 46px rgba(2, 132, 199, 0.18), 0 14px 38px rgba(5, 150, 105, 0.18);
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(2, 132, 199, 0.22), 0 20px 46px rgba(5, 150, 105, 0.22);
}

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body .btn-primary {
  margin-top: auto;
}

.service-card-body .badge {
  align-self: flex-start;
}

/* ── Icon box ── */
.icon-box,
.icon-box-lg,
.icon-box-sm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.1), 0 7px 16px rgba(2, 132, 199, 0.06), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.icon-box-lg {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.icon-box-sm {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.icon-box::before,
.icon-box-lg::before,
.icon-box-sm::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.icon-box .lucide,
.icon-box-lg .lucide,
.icon-box-sm .lucide {
  position: relative;
  z-index: 1;
  color: var(--green) !important;
  stroke-width: 2.2;
  filter: drop-shadow(0 4px 7px rgba(5, 150, 105, 0.12));
}

.card:hover .icon-box,
.card:hover .icon-box-lg,
.card:hover .icon-box-sm {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 13px 26px rgba(5, 150, 105, 0.13), 0 9px 18px rgba(2, 132, 199, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.lucide {
  stroke-width: 2.15;
  vector-effect: non-scaling-stroke;
}

.btn-primary .lucide,
.btn-outline .lucide,
.btn-white .lucide,
a .lucide {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.btn-primary:hover .lucide-arrow-right,
.btn-outline:hover .lucide-arrow-right,
.btn-white:hover .lucide-arrow-right,
a:hover .lucide-arrow-right {
  transform: translateX(3px);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
}

.badge-green {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.92), rgba(240, 249, 255, 0.72));
  color: #047857;
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.badge-green::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.badge-green::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* ── Section labels ── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── Divider line ── */
.section-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 2px;
}

/* ── Navbar ── */
#navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scroll {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), 0 4px 24px rgba(15, 23, 42, 0.05) !important;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--slate-700);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-button:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--green);
}

.mobile-menu-button .menu-close-icon {
  display: none;
}

.mobile-menu-button.is-open .menu-open-icon {
  display: none;
}

.mobile-menu-button.is-open .menu-close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--green);
}

.theme-toggle.mobile-theme-toggle {
  width: 100%;
  height: auto;
  justify-content: space-between;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
}

.theme-toggle.mobile-theme-toggle:hover {
  transform: none;
  background: rgba(5, 150, 105, 0.08);
}

.theme-toggle.mobile-theme-toggle>span:first-child {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Hero ── */
.hero-bg {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(14, 165, 233, 0.13) 0%, transparent 50%),
    #f8fafc;
}

/* ── Floating anim ── */
.floating {
  animation: floating 7s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── Fade up ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Steps connector ── */
.step-num {
  /* position: relative; */
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.92), rgba(224, 242, 254, 0.68));
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 20px; */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.1), 0 7px 16px rgba(2, 132, 199, 0.06), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-num::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.step-num .lucide {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  color: var(--green) !important;
  stroke-width: 2.15;
  filter: drop-shadow(0 4px 7px rgba(5, 150, 105, 0.12));
}

.card:hover .step-num {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 13px 26px rgba(5, 150, 105, 0.13), 0 9px 18px rgba(2, 132, 199, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* ── Accordion ── */
.accordion-item {
  cursor: pointer;
}

.accordion-body {
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-item.open .acc-icon {
  transform: rotate(45deg);
  color: var(--green);
}

.acc-icon {
  transition: transform 0.25s ease, color 0.25s ease;
}

/* ── CTA section ── */
.cta-gradient {
  background: linear-gradient(135deg, #064e3b 0%, #0c4a6e 100%);
}

/* ── Footer ── */
footer a {
  color: var(--slate-500);
  font-size: 0.875rem;
  transition: color 0.2s;
  text-decoration: none;
}

footer a:hover {
  color: var(--green);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/* ── Utility ── */
.text-balance {
  text-wrap: balance;
}

img {
  display: block;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.certificate-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.certificate-button:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.42);
  outline-offset: 3px;
  border-radius: 16px;
}

.certificate-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  /* padding: 10px; */
  border-radius: 16px;
  /* background: rgba(255, 255, 255, 0.86); */
  /* border: 1px solid rgba(15, 23, 42, 0.08); */
  /* box-shadow: 0 10px 24px rgba(2, 132, 199, 0.06), 0 6px 18px rgba(5, 150, 105, 0.05); */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.certificate-image:hover {
  transform: translateY(-3px);
  /* border-color: rgba(5, 150, 105, 0.22); */
  /* box-shadow: 0 16px 34px rgba(2, 132, 199, 0.1), 0 12px 26px rgba(5, 150, 105, 0.08); */
}

@media (min-width: 768px) {
  .certificate-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

html.dark .certificate-image {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  line-height: 0;
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.42);
  outline-offset: 3px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.86);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html.dark .gallery-card {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}

.carousel-indicators {
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.24);
  /* border: 1px solid rgba(255, 255, 255, 0.28); */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.72); */
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  opacity: 0.88;
  transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.carousel-indicator:hover {
  opacity: 1;
  transform: scale(1.08);
}

.carousel-indicator.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.28);
  opacity: 1;
}

html.dark .carousel-indicators {
  background: rgba(15, 23, 42, 0.48);
  border-color: rgba(255, 255, 255, 0.18);
}

#default-carousel,
#default-carousel .carousel-viewport,
.cta-gradient {
  contain: paint;
}

#default-carousel [data-carousel-item] {
  max-width: 100%;
  overflow: hidden;
}

#default-carousel {
  border-radius: 28px;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 14px 34px rgba(5, 150, 105, 0.12);
}

#default-carousel .carousel-viewport {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #0f172a;
}

#default-carousel [data-carousel-item]>img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

#default-carousel [data-carousel-item]>.absolute.inset-0 {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.204) 100%),
    radial-gradient(circle at center, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.137) 100%) !important;
}

.carousel-content {
  width: min(760px, calc(100% - 160px));
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  padding: 0 !important;
}

.carousel-content h1 {
  margin-bottom: 18px !important;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.carousel-content p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.carousel-content .btn-primary {
  margin-top: 28px !important;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.34), 0 12px 30px rgba(2, 132, 199, 0.22);
}

#default-carousel [data-carousel-prev],
#default-carousel [data-carousel-next] {
  width: 68px;
  padding: 0 !important;
}

#default-carousel [data-carousel-prev] span,
#default-carousel [data-carousel-next] span {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}

#default-carousel [data-carousel-prev]:hover span,
#default-carousel [data-carousel-next]:hover span {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.24) !important;
}

#default-carousel .carousel-indicators {
  left: 50% !important;
  right: auto;
  bottom: 28px;
  transform: translateX(-50%) !important;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ── Subtle tinted backgrounds for section variety ── */
.bg-emerald-subtle {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.04) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.bg-sky-subtle {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.04) 0%, rgba(2, 132, 199, 0.02) 100%);
}

.bg-emerald-glass {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.6) 0%, rgba(240, 253, 250, 0.4) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.icon-box.bg-emerald-glass,
.icon-box-lg.bg-emerald-glass,
.icon-box-sm.bg-emerald-glass {
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.86), rgba(224, 242, 254, 0.58));
}

#home+section .bg-emerald-glass:has(> .lucide) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.88), rgba(224, 242, 254, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(5, 150, 105, 0.1), 0 7px 16px rgba(2, 132, 199, 0.06), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#home+section .bg-emerald-glass:has(> .lucide)::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  pointer-events: none;
}

#home+section .bg-emerald-glass:has(> .lucide) .lucide {
  position: relative;
  z-index: 1;
  width: 28px !important;
  height: 28px !important;
  color: var(--green) !important;
  stroke-width: 2.15;
  filter: drop-shadow(0 4px 7px rgba(5, 150, 105, 0.12));
}

.bg-sky-glass {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.6) 0%, rgba(224, 242, 254, 0.4) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bg-blue-glass {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.62) 0%, rgba(219, 234, 254, 0.42) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bg-purple-glass {
  background: linear-gradient(135deg, rgba(250, 245, 255, 0.62) 0%, rgba(243, 232, 255, 0.42) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bg-orange-glass {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.62) 0%, rgba(255, 237, 213, 0.42) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bg-amber-glass {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.62) 0%, rgba(254, 243, 199, 0.42) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

html.dark .bg-emerald-subtle {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.03) 100%);
}

html.dark .bg-sky-subtle {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06) 0%, rgba(14, 165, 233, 0.03) 100%);
}

html.dark .bg-emerald-glass {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.3) 0%, rgba(15, 23, 42, 0.2) 100%);
}

html.dark .icon-box.bg-emerald-glass,
html.dark .icon-box-lg.bg-emerald-glass,
html.dark .icon-box-sm.bg-emerald-glass,
html.dark #home+section .bg-emerald-glass:has(> .lucide) {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.74));
  border-color: rgba(52, 211, 153, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), 0 8px 18px rgba(16, 185, 129, 0.05), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

html.dark .icon-box::before,
html.dark .icon-box-lg::before,
html.dark .icon-box-sm::before,
html.dark #home+section .bg-emerald-glass:has(> .lucide)::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(16, 185, 129, 0.04));
}

html.dark .icon-box .lucide,
html.dark .icon-box-lg .lucide,
html.dark .icon-box-sm .lucide,
html.dark #home+section .bg-emerald-glass:has(> .lucide) .lucide {
  color: #6ee7b7 !important;
  filter: drop-shadow(0 4px 7px rgba(52, 211, 153, 0.1));
}

.stats-section {
  padding: 1.25rem 0 1.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07), 0 8px 20px rgba(5, 150, 105, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 150, 105, 0.14);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09), 0 10px 24px rgba(5, 150, 105, 0.08);
}

#home+section.stats-section .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 18px;
}

.stat-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  color: var(--slate-900);
  font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

html.dark .stat-card {
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(148, 163, 184, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), 0 8px 20px rgba(16, 185, 129, 0.04);
}

html.dark .stat-card:hover {
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26), 0 10px 24px rgba(16, 185, 129, 0.07);
}

html.dark .stat-value {
  color: #f8fafc;
}

html.dark .stat-label {
  color: #94a3b8;
}

@media (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 1rem 0 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    min-height: 82px;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
  }

  #home+section.stats-section .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  #home+section.stats-section .stat-icon .lucide {
    width: 26px !important;
    height: 26px !important;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }
}

html.dark .bg-sky-glass {
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.3) 0%, rgba(15, 23, 42, 0.2) 100%);
}

html.dark .bg-blue-glass {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.32) 0%, rgba(15, 23, 42, 0.2) 100%);
}

html.dark .bg-purple-glass {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.32) 0%, rgba(15, 23, 42, 0.2) 100%);
}

html.dark .bg-orange-glass {
  background: linear-gradient(135deg, rgba(124, 45, 18, 0.32) 0%, rgba(15, 23, 42, 0.2) 100%);
}

html.dark .bg-amber-glass {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.32) 0%, rgba(15, 23, 42, 0.2) 100%);
}

/* ── Dark Footer Glassmorphism ── */
.footer-dark {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-dark .footer-heading {
  color: #f8fafc;
}

.footer-dark .footer-text {
  color: #94a3b8;
}

.footer-dark .footer-link {
  color: #94a3b8;
}

.footer-dark .footer-link:hover {
  color: #34d399;
}

.footer-dark .footer-divider {
  border-color: rgba(255, 255, 255, 0.06);
}

.footer-dark .footer-logo-text {
  color: #f8fafc;
}

.footer-dark .footer-logo-sub {
  color: #64748b;
}

.footer-dark .footer-copyright {
  color: #64748b;
}

.footer-dark .footer-social {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-dark .footer-social:hover {
  color: #34d399;
}

.footer-dark .footer-icon {
  color: #64748b;
}

.footer-dark .lucide {
  color: currentColor;
  opacity: 1;
  stroke-width: 2.1;
}

.footer-dark .footer-social .lucide {
  width: 14px;
  height: 14px;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  display: block;
}

/* ── Dark Mode Variables ── */
html.dark {
  --slate-900: #f8fafc;
  --slate-700: #cbd5e1;
  --slate-500: #94a3b8;
  --slate-300: #475569;
  --slate-100: #1e293b;
  --slate-50: #0f172a;
  --scrollbar-track: #102235;
  --scrollbar-thumb: linear-gradient(180deg, #10b981, #0ea5e9);
  --scrollbar-thumb-fallback: #10b981;
  --scrollbar-thumb-hover: linear-gradient(180deg, #34d399, #38bdf8);
}

html.dark body {
  background: #0f172a;
  color: #f8fafc;
}

html.dark .hero-bg {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    #0f172a;
}

html.dark .card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

html.dark .card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

html.dark .card-glass {
  background: rgba(30, 41, 59, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}

html.dark .glass {
  background: rgba(30, 41, 59, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}

html.dark .btn-outline {
  background: rgba(30, 41, 59, 0.75);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.12);
}

html.dark .btn-outline:hover {
  background: #1e293b;
}

html.dark .brochure-dropdown-menu {
  background: rgba(30, 41, 59, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

html.dark .brochure-dropdown-menu a {
  color: #cbd5e1;
}

html.dark .brochure-dropdown-menu a:hover {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

html.dark .btn-white {
  background: #1e293b;
  color: #f8fafc;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

html.dark .btn-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

html.dark footer {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.06);
}

html.dark footer .border-t {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

html.dark .navbar-scroll {
  background: rgba(15, 23, 42, 0.88) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

html.dark .text-slate-900 {
  color: #f8fafc !important;
}

html.dark .text-slate-700 {
  color: #cbd5e1 !important;
}

html.dark .text-slate-500 {
  color: #94a3b8 !important;
}

html.dark .text-slate-400 {
  color: #64748b !important;
}

html.dark .bg-white {
  background-color: #0f172a !important;
}

html.dark .bg-slate-50 {
  background-color: #0f172a !important;
}

html.dark .border-slate-100 {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

html.dark .border-slate-200 {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

html.dark .icon-box {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 10px 26px rgba(0, 0, 0, 0.24);
}

html.dark .icon-box-lg {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 10px 26px rgba(0, 0, 0, 0.24);
}

html.dark .icon-box-sm {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 10px 26px rgba(0, 0, 0, 0.24);
}

html.dark .accordion-body {
  color: #94a3b8;
}

html.dark .nav-link {
  color: #cbd5e1;
}

html.dark .nav-link:hover {
  color: var(--green);
}

html.dark .mobile-menu-button {
  color: #cbd5e1;
}

html.dark .mobile-menu-button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--green-light);
}

html.dark .mobile-menu {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

html.dark .mobile-menu-link {
  color: #cbd5e1;
}

html.dark .mobile-menu-link:hover {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green-light);
}

html.dark .theme-toggle.mobile-theme-toggle {
  color: #cbd5e1;
}

html.dark .theme-toggle.mobile-theme-toggle:hover {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green-light);
}

html.dark .badge-green {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.36), rgba(14, 116, 144, 0.22));
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.dark .badge-green::before {
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

html.dark .badge-green::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

/* ── Dark Mode Toggle ── */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  color: var(--slate-700);
}

.theme-toggle:hover {
  background: rgba(15, 23, 42, 0.05);
  transform: scale(1.05);
}

html.dark .theme-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

html.dark .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle svg {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.theme-toggle .sun-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html.dark .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html.dark .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

@media (max-width: 767px) {
  .container-width.mx-auto.px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  section.py-24 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .mb-14 {
    margin-bottom: 2rem !important;
  }

  h1,
  section h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 6.6vw, 2rem) !important;
    line-height: 1.15 !important;
  }

  h3 {
    line-height: 1.25;
  }

  p,
  a,
  span {
    overflow-wrap: break-word;
  }

  #contact a,
  footer li {
    overflow-wrap: anywhere;
  }

  .btn-primary,
  .btn-outline,
  .btn-white {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .card.p-6,
  .card.p-7,
  .card.p-8,
  form.card.p-8 {
    padding: 1.25rem !important;
  }

  .grid.gap-14,
  .grid.gap-12,
  .grid.gap-10 {
    gap: 2rem !important;
  }

  header .container-width.mx-auto.px-6 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  header a.flex {
    min-width: 0;
  }

  header a.flex>div {
    min-width: 0;
  }

  header .footer-logo-text,
  header .text-\[11px\] {
    max-width: calc(100vw - 126px);
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  header .footer-logo-text {
    font-size: 0.82rem !important;
  }

  header .text-\[11px\] {
    font-size: 0.66rem !important;
  }

  #home {
    padding-top: 5rem !important;
  }

  #default-carousel {
    border-radius: 22px;
  }

  #default-carousel .carousel-viewport {
    height: clamp(350px, 62svh, 430px) !important;
    border-radius: 20px !important;
  }

  #default-carousel [data-carousel-item]>img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .carousel-content {
    width: calc(100% - 3.5rem) !important;
    max-width: 320px !important;
    left: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
  }

  .carousel-content h1 {
    margin-bottom: 0.75rem !important;
    font-size: clamp(1.55rem, 6.2vw, 2rem) !important;
    line-height: 1.1 !important;
  }

  .carousel-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .carousel-content .btn-primary {
    margin-top: 1rem !important;
    padding: 0.68rem 0.95rem;
    font-size: 0.84rem;
  }

  #default-carousel [data-carousel-prev],
  #default-carousel [data-carousel-next] {
    display: none !important;
  }

  #default-carousel .carousel-indicators {
    left: 50% !important;
    right: auto !important;
    bottom: 0.75rem !important;
    transform: translateX(-50%) !important;
  }

  #home+section .grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  #home+section .card {
    align-items: center;
    padding: 0.75rem !important;
  }

  #home+section .card>div:first-child {
    margin-left: 0 !important;
    margin-right: 0.75rem !important;
  }

  #home+section svg {
    width: 30px !important;
    height: 30px !important;
  }

  #about .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  #about .grid.grid-cols-2>.flex {
    flex-direction: column !important;
  }

  #about img[style*="height"] {
    height: 180px !important;
  }

  .card img[style*="height:220px"],
  .card img[style*="height:200px"],
  .card img[style*="height:380px"] {
    height: 220px !important;
  }

  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .accordion-item .flex.items-center.justify-between {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .accordion-item .icon-box {
    width: 42px;
    height: 42px;
  }

  .accordion-body {
    padding-left: 1.25rem !important;
  }

  #contact .card .flex.items-start {
    gap: 0.875rem !important;
  }

  #cta .relative.z-10 {
    padding: 3rem 1rem !important;
  }

  #cta h2 br {
    display: none;
  }

  .btn-primary.fixed {
    width: 52px !important;
    height: 52px !important;
    bottom: 1rem !important;
    right: 1rem !important;
  }
}

@media (max-width: 420px) {

  header .footer-logo-text,
  header .text-\[11px\] {
    max-width: calc(100vw - 118px);
  }

  .carousel-content {
    width: calc(100% - 3rem) !important;
    max-width: 310px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}