/* =========================================================
   Xplora — Static site redesign
   Light, professional theme
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — Acuver-inspired navy & blue */
  --navy: #00408d;
  --navy-700: #003070;
  --blue: #2f85ff;
  --blue-600: #1a6ff0;
  --blue-link: #007aff;
  --blue-50: #deecff;
  --blue-25: #eef5ff;
  --teal: #4da3ff;
  --violet: #2f85ff;

  /* Ink / neutrals */
  --ink: #0b1f33;
  --ink-2: #393939;
  --muted: #69727d;
  --line: #e6e6e6;
  --line-2: #eef1f4;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-tint: #eef5ff;
  --white: #ffffff;

  /* Effects */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 36, 94, .06), 0 2px 8px rgba(16, 36, 94, .05);
  --shadow: 0 8px 24px rgba(16, 36, 94, .08);
  --shadow-lg: 0 24px 60px rgba(16, 36, 94, .14);
  --ring: 0 0 0 4px rgba(47, 133, 255, .18);

  --container: 1160px;
  --gradient: linear-gradient(120deg, var(--navy), var(--blue));

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .72rem;
  --pad-x: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  --pad-y: .95rem;
  --pad-x: 1.7rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 64, 141, .28);
}

.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 64, 141, .34);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--ink-2);
  padding-inline: .9rem;
}

.btn-ghost:hover {
  color: var(--blue);
}

.btn-soft {
  background: var(--blue-50);
  color: var(--blue);
}

.btn-soft:hover {
  background: #e1eaff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.brand-name {
  color: #2a2566;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .8rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  transition: color .18s, background .18s;
  cursor: pointer;
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-link.active {
  color: var(--navy);
  background: var(--blue-25);
}

.caret {
  transition: transform .2s;
  opacity: .7;
}

.nav-item:hover .caret {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  display: grid;
  gap: .1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 50;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: .6rem .8rem;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--blue-25);
  color: var(--navy);
}

/* Scrollable dropdown options */
.dropdown.scrollable {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.3rem;
  /* Leave room for scrollbar */
}

/* Custom scrollbar for dropdowns */
.dropdown.scrollable::-webkit-scrollbar,
.m-sub.scrollable::-webkit-scrollbar {
  width: 6px;
}

.dropdown.scrollable::-webkit-scrollbar-track,
.m-sub.scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown.scrollable::-webkit-scrollbar-thumb,
.m-sub.scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 64, 141, 0.15);
  /* Light navy tinted thumb */
  border-radius: 10px;
}

.dropdown.scrollable::-webkit-scrollbar-thumb:hover,
.m-sub.scrollable::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 64, 141, 0.3);
}

.m-sub.scrollable {
  max-height: 220px;
  overflow-y: auto;
  border-left: 2px solid var(--blue-25);
  margin-left: 0.8rem;
  padding-left: 0.4rem;
}

/* Mega dropdown */
.dropdown.mega {
  grid-template-columns: 1fr 1fr;
  gap: .4rem 1.2rem;
  min-width: 460px;
  padding: 1rem;
}

.mega-col {
  display: grid;
  gap: .1rem;
  align-content: start;
}

.mega-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  padding: .3rem .8rem .4rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: transform .18s ease, color .18s ease;
  white-space: nowrap;
}

.wa-btn svg {
  width: 28px;
  height: 28px;
}

.wa-btn:hover {
  transform: translateY(-2px);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu>a {
  padding: .85rem .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}

.mobile-menu a.btn {
  border: none;
  margin-top: .9rem;
  color: #fff;
  padding: .9rem;
  justify-content: center;
}

.mobile-menu .wa-btn {
  margin-top: .9rem;
  padding: .8rem .95rem;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.m-group {
  border-bottom: 1px solid var(--line-2);
}

.m-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.m-caret {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  transition: transform .2s;
}

.m-toggle[aria-expanded="true"] .m-caret {
  transform: rotate(45deg);
}

.m-sub {
  display: flex;
  flex-direction: column;
  padding: 0 .5rem .7rem;
}

.m-sub a {
  padding: .55rem .8rem;
  color: var(--muted);
  font-size: .92rem;
  border-radius: 8px;
}

.m-sub a:hover {
  color: var(--navy);
  background: var(--blue-25);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem) 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #cfe0ff, transparent 70%);
  top: -160px;
  right: -120px;
}

.blob-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #dbe9ff, transparent 70%);
  bottom: -180px;
  left: -120px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: .6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 981px) {
  .hero-inner {
    align-items: start;
    padding-top: 1.5rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 181, 163, .18);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin: 1.1rem 0 1rem;
}

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 38ch;
}

.hero-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--navy);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.8rem 0 1.6rem;
}

.hero-cta .btn-lg {
  --pad-y: 0.72rem;
  --pad-x: 1.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-trust li {
  position: relative;
  padding-left: 0;
}

.hero-trust strong {
  color: var(--ink);
  font-family: var(--font-display);
}

.hero-trust li+li::before {
  content: "";
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin: .45rem 0 .7rem;
}

.vc-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: .5;
  animation: ping 1.8s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(.6);
    opacity: .6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.vc-progress small {
  color: var(--muted);
  font-size: .78rem;
}

.vc-progress-bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .5rem;
}

.vc-progress-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--gradient);
  border-radius: 999px;
  animation: grow 1.2s ease forwards;
}

@keyframes grow {
  from {
    width: 0;
  }
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  box-shadow: var(--shadow);
  z-index: 3;
}

.mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--ink);
}

.mini-card small {
  color: var(--muted);
  font-size: .72rem;
}

.mini-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 12%, #fff);
  flex-shrink: 0;
}

.mini-1 {
  top: -3%;
  left: -7%;
  animation: floatY 5s ease-in-out infinite;
}

.mini-2 {
  top: 34%;
  right: -8%;
  animation: floatY 6s ease-in-out infinite .5s;
}

.card-float {
  animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Logo strip */
.logo-strip {
  margin-top: 3.5rem;
  text-align: center;
}

.logo-strip>span {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.logo-row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #aab4c5;
  transition: color .2s;
}

.logo-row span:hover {
  color: var(--ink);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .8rem;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.section-head .section-sub {
  margin-top: .9rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Stats ---------- */
.stats {
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(47, 133, 255, .45), transparent 55%), radial-gradient(circle at 90% 100%, rgba(0, 122, 255, .32), transparent 55%);
}

.stat {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat+.stat {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.stat-num,
.stat-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1;
}

.stat-plus {
  color: var(--teal);
}

.stat p {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  margin-top: .5rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 5 / 4.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.af-stat {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.af-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}

.af-stat span {
  font-size: .8rem;
  color: var(--muted);
}

.af-tag {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: .6rem 0 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.check-list {
  display: grid;
  gap: .8rem;
  margin-bottom: 1.8rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4L19 7' stroke='%2300408d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 12%, #fff);
  margin-bottom: 1.1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: .55rem;
}

.card p {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 1rem;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  transition: gap .2s;
}

.card-link:hover {
  color: var(--blue-600);
}

/* ---------- Courses ---------- */
.course-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
}

.course-top {
  height: 168px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.course-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.course-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(140deg, color-mix(in srgb, var(--c) 78%, transparent), color-mix(in srgb, var(--c2) 55%, transparent) 60%, rgba(0, 0, 0, .25));
}

.course-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, .28);
  padding: .3rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.course-level {
  font-size: .74rem;
  background: rgba(255, 255, 255, .28);
  padding: .3rem .65rem;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.course-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-body h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.course-body>p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
  margin-top: auto;
}

.courses-foot {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Domains ---------- */
.domains {
  background: var(--bg-soft);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.domain-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .7rem;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}

.domain-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gradient);
  flex-shrink: 0;
}

.domain-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  color: var(--blue);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 100px;
}

.why-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: .5rem 0 1rem;
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
}

.why-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1.12rem;
  margin-bottom: .3rem;
}

.why-item p {
  color: var(--muted);
  font-size: .94rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg-soft);
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .2s, box-shadow .2s;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.quote-card blockquote {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.avatar {
  --a: var(--blue);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--a);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quote-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: .95rem;
}

.quote-card figcaption small {
  color: var(--muted);
  font-size: .82rem;
}

/* ---------- Resources ---------- */
.resource-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .22s, box-shadow .22s;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rc-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-link);
  background: var(--blue-25);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.18rem;
  margin-bottom: .5rem;
}

.resource-card p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 1rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-inner {
  background: var(--ink) url("images/cta.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 40, 90, .94), rgba(11, 31, 51, .82)), radial-gradient(circle at 100% 100%, rgba(0, 122, 255, .45), transparent 55%);
  background-size: 200% 200%;
  animation: ctaShimmer 12s ease-in-out infinite alternate;
}

@keyframes ctaShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 30ch;
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-copy p {
  color: rgba(255, 255, 255, .78);
  margin-top: .6rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

/* ---------- Contact ---------- */
.contact-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #f8fbff;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(47, 133, 255, 0.12) 0px, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(77, 163, 255, 0.12) 0px, transparent 60%);
  background-size: 200% 200%;
  animation: bgPulse 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes bgPulse {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 64, 141, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--navy-700), #00285a);
  background-size: 200% 200%;
  animation: infoPan 8s ease-in-out infinite alternate;
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.contact-info-panel>* {
  position: relative;
  z-index: 1;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.02) 15px, rgba(255, 255, 255, 0.02) 30px);
  pointer-events: none;
  z-index: 0;
  transform: rotate(-15deg);
}

@keyframes infoPan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.contact-info-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: .5rem 0 1rem;
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ci-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-list-dark .ci-ico {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

.contact-list-dark small {
  color: rgba(255, 255, 255, 0.7);
}

.contact-list a,
.contact-list div>span {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}

.contact-list-dark a,
.contact-list-dark div>span {
  color: #fff;
}

.contact-list-dark a:hover {
  color: var(--blue-50);
}

.contact-form-panel {
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.field {
  margin-bottom: 1.1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.phone-group {
  display: flex;
  gap: 0;
}

.phone-group input[type="tel"] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  flex: 1;
}

.custom-select {
  position: relative;
  flex-shrink: 0;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: .65rem .8rem;
  border-radius: var(--radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  height: 100%;
}

.select-trigger:focus {
  outline: 2px solid var(--navy);
  outline-offset: -1px;
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.select-search-box {
  padding: .5rem;
  border-bottom: 1px solid var(--line);
}

.select-search-box input {
  width: 100%;
  padding: .4rem .6rem;
  font-size: .85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.select-options {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}

.select-options li {
  padding: .5rem .8rem;
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
}

.select-options li:hover {
  background: var(--bg-soft);
}

.select-options li.hidden {
  display: none;
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink);
  margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .18s, box-shadow .18s, background .18s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: var(--ring);
}

.field textarea {
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-display);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.brand-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  margin: .9rem 0 .3rem;
  background: linear-gradient(120deg, #E7579F, #B14FCB 50%, #7B3FF2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p:not(.brand-tagline) {
  color: var(--muted);
  font-size: .92rem;
  margin: .4rem 0 1.2rem;
  max-width: 34ch;
}

.socials {
  display: flex;
  gap: .6rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: grid;
  place-items: center;
  transition: color .2s, transform .2s, border-color .2s;
}

.socials a:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: .92rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  padding: .3rem 0;
  transition: color .18s;
}

.footer-col a:hover {
  color: var(--blue);
}

.foot-sub {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .9rem;
}

.newsletter {
  display: flex;
  gap: .5rem;
}

.newsletter input {
  flex: 1;
  padding: .7rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--ring);
}

.newsletter .btn {
  padding: .7rem 1rem;
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  margin-top: 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--muted);
  font-size: .88rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: .88rem;
}

.footer-legal a:hover {
  color: var(--blue);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 8px 20px rgba(0, 64, 141, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--navy-700);
  transform: translateY(-3px);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), var(--blue));
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.6rem, 5vw, 4rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .18), transparent 45%), radial-gradient(circle at 100% 100%, rgba(0, 122, 255, .5), transparent 55%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
}

.page-hero p {
  color: rgba(255, 255, 255, .88);
  max-width: 62ch;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ---------- Grid utilities ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

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

@media (max-width: 780px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Mission / vision cards */
.mv-card {
  position: relative;
}

.mv-card .card-ico {
  margin-bottom: 1.1rem;
}

/* Leadership */
.leader {
  text-align: center;
}

.leader .avatar {
  width: 66px;
  height: 66px;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.leader h3 {
  font-size: 1.12rem;
  margin-bottom: .25rem;
}

.leader .role {
  color: var(--blue-link);
  font-weight: 600;
  font-size: .9rem;
  font-family: var(--font-display);
}

/* ---------- Course catalog ---------- */
.catalog {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.catalog-search {
  position: relative;
  margin-bottom: 1.4rem;
}

.catalog-search input {
  width: 100%;
  padding: .7rem .9rem .7rem 2.4rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
}

.catalog-search input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: var(--ring);
}

.catalog-search svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .7rem;
}

.cat-list {
  display: grid;
  gap: .15rem;
}

.cat-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  text-align: left;
  padding: .55rem .7rem;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}

.cat-list button:hover {
  background: var(--blue-25);
  color: var(--navy);
}

.cat-list button.active {
  background: var(--navy);
  color: #fff;
}

.cat-list .count {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  padding: .1rem .5rem;
  border-radius: 999px;
}

.cat-list button.active .count {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.level-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.level-chips button {
  padding: .4rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .15s;
}

.level-chips button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.level-chips button.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.results-count {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

.results-count strong {
  color: var(--ink);
  font-family: var(--font-display);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--muted);
}

.sort-wrap select {
  padding: .55rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-weight: 600;
  color: var(--ink);
}

.sort-wrap select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--ring);
}

.quick-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-bottom: 1rem;
  margin-bottom: .4rem;
}

.qf-chip {
  padding: .5rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all .15s;
}

.qf-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.qf-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.cl-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .8rem;
}

.cl-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  background: var(--blue-25);
  padding: .3rem .6rem;
  border-radius: 999px;
}

.cl-level {
  font-size: .76rem;
  font-weight: 600;
  color: var(--muted);
}

.cl-card h3 {
  font-size: 1.12rem;
  margin-bottom: .4rem;
}

.cl-card>p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.cl-meta .stars {
  color: #f5a623;
  letter-spacing: 0;
  margin: 0;
}

.cl-meta b {
  color: var(--ink);
  font-weight: 700;
}

.cl-actions {
  display: flex;
  gap: .6rem;
  margin-top: auto;
}

.cl-actions .btn {
  flex: 1;
  padding-inline: .6rem;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.no-results strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: .4rem;
}

@media (max-width: 980px) {
  .catalog {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

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

@media (max-width: 620px) {
  .course-list {
    grid-template-columns: 1fr;
  }

  .cat-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Tech table ---------- */
.tech-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 560px;
}

.tech-table th,
.tech-table td {
  text-align: left;
  padding: .95rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  vertical-align: top;
}

.tech-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tech-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

.tech-table tbody tr:last-child td {
  border-bottom: none;
}

.tech-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  width: 32%;
}

.tech-table td:last-child {
  color: var(--ink-2);
}

.check-list.cols-2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .check-list.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ accordion ---------- */
.faq {
  display: grid;
  gap: .8rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  transition: all .25s ease;
  overflow: hidden;
}

.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-50);
  background: var(--bg-soft);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.2s;
}

.faq summary:hover {
  color: var(--blue);
}

.faq details[open] summary {
  color: var(--navy);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  background-image:
    linear-gradient(var(--blue), var(--blue)),
    linear-gradient(var(--blue), var(--blue));
  background-position: center;
  background-size: 12px 2px, 2px 12px;
  background-repeat: no-repeat;
  transition: transform .3s ease, background-color .3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq details[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--navy);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
}

.faq details p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: .98rem;
  line-height: 1.7;
  animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq details a {
  color: var(--blue-link);
  font-weight: 600;
}

.faq details a:hover {
  color: var(--navy);
}

.office p {
  line-height: 1.7;
}

/* ---------- Course detail modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: modalIn .28s cubic-bezier(.16, 1, .3, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background .15s;
}

.modal-close:hover {
  background: var(--line);
}

.modal-head {
  padding: 1.8rem 1.8rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.modal-head .cl-cat {
  position: static;
}

.modal-head h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: .8rem 0 1rem;
  padding-right: 2.5rem;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  font-size: .85rem;
  color: var(--muted);
}

.modal-meta b {
  color: var(--ink);
  font-weight: 700;
}

.modal-meta .stars {
  color: #f5a623;
}

.modal-body {
  padding: 1.6rem 1.8rem;
}

.modal-section {
  margin-bottom: 1.5rem;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section h4 {
  font-size: .95rem;
  margin-bottom: .55rem;
  color: var(--ink);
}

.modal-section p {
  color: var(--ink-2);
  font-size: .95rem;
}

.modal-learn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.4rem;
}

.modal-learn li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-2);
  font-size: .92rem;
}

.modal-learn li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--blue-25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l4 4L19 7' stroke='%2300408d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.modal-foot {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.8rem;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.modal-price span {
  display: block;
  font-size: .76rem;
  color: var(--muted);
}

.modal-price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
}

.modal-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

@media (max-width: 560px) {

  .modal-learn,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Reveal animation (only when JS is active) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 1rem;
    max-width: 420px;
  }

  .visual-card {
    margin: 0 auto;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    position: static;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
    padding: 1.8rem 1rem;
  }

  .stat:nth-child(3) {
    border-left: none;
  }

  .stat:nth-child(odd) {
    border-left: none;
  }

  .cards-grid,
  .courses-grid,
  .quotes-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

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

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .hero-cta .btn {
    flex: 1;
  }

  .mini-1 {
    left: 0;
  }
}

@media (max-width: 380px) {
  .domain-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Floating Social Sidebar ---------- */
.floating-social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  background: var(--navy);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0.45rem;
  gap: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 64, 141, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  color: var(--navy);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-social-sidebar a:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--blue-50);
}

.floating-social-sidebar a svg {
  width: 14px;
  height: 14px;
  transition: color 0.2s ease;
}

.floating-social-sidebar .divider {
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.1rem 0;
}

/* Hide on mobile screens to maintain readable content area */
@media (max-width: 768px) {
  .floating-social-sidebar {
    display: none;
  }
}

/* =========================================================
   Courses Dynamic Mega Dropdown Styling
   ========================================================= */
.dropdown.mega-dropdown {
  left: 50%;
  right: auto;
  width: 960px;
  min-width: 960px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translate(-65%, 8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 1000;
  overflow: hidden;
}

.nav-item:hover .dropdown.mega-dropdown,
.nav-item:focus-within .dropdown.mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-65%, 0);
}

.mega-inner {
  display: flex;
  min-height: 480px;
}

.mega-sidebar {
  width: 250px;
  background: #f8fafc;
  border-right: 1px solid var(--line-2);
  padding: 1.2rem 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 520px;
  flex-shrink: 0;
}

.mega-cat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all 0.15s ease;
}

.mega-cat-btn:hover,
.mega-cat-btn.active {
  background: var(--blue-25);
  color: var(--navy);
  border-left-color: var(--navy);
}

.mega-cat-btn .cat-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.15s ease;
  color: var(--navy);
}

.mega-cat-btn:hover .cat-arrow,
.mega-cat-btn.active .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-content {
  flex: 1;
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 1.4rem;
  align-content: start;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Custom scrollbar for mega-grid */
.mega-grid::-webkit-scrollbar {
  width: 6px;
}

.mega-grid::-webkit-scrollbar-track {
  background: transparent;
}

.mega-grid::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 4px;
}

.mega-grid::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.mega-course-link {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.9rem;
}

.mega-course-link:hover {
  color: var(--blue-link);
}

.mega-empty-msg {
  grid-column: span 3;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 3rem 0;
}

.mega-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-2);
}

.dropdown .mega-show-all-btn {
  display: inline-block;
  padding: 0.6rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px rgba(0, 64, 141, 0.25);
  border: none;
  cursor: pointer;
}

.dropdown .mega-show-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 64, 141, 0.35);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #ffffff !important;
}

/* =========================================================
   Hero Left Visual Section Styles
   ========================================================= */
.hero-left-visual {
  position: relative;
  margin-top: 2.5rem;
  max-width: 680px;
}

.hero-left-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-left-photo img {
  width: 100%;
  min-height: 325px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-left-visual .mini-card {
  position: absolute;
  z-index: 3;
}

.left-mini-1 {
  top: -4%;
  left: -10%;
  animation: floatY 5s ease-in-out infinite;
}

.left-mini-2 {
  top: 15%;
  right: -8%;
  animation: floatY 6s ease-in-out infinite .5s;
}

.left-mini-3 {
  bottom: 12%;
  left: -14%;
  animation: floatY 5.5s ease-in-out infinite .25s;
}

.left-mini-4 {
  bottom: -8%;
  right: -9%;
  animation: floatY 6.5s ease-in-out infinite .75s;
}

@media (max-width: 768px) {
  .left-mini-1 {
    left: -2%;
    top: -5%;
  }

  .left-mini-2 {
    right: -2%;
    top: 10%;
  }

  .left-mini-3 {
    left: -2%;
    bottom: 8%;
  }

  .left-mini-4 {
    right: -2%;
    bottom: -5%;
  }
}

@media (max-width: 480px) {
  .hero-left-visual {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-left-visual .mini-card {
    position: static;
    animation: none !important;
  }
}

#modalPrereq,
#modalAudience {
  white-space: pre-line;
}

/* =========================================================
   Floating WhatsApp Icon
   ========================================================= */
.floating-wa {
  position: fixed;
  bottom: 5.5rem;
  /* Above the to-top button */
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-bounce 2.5s infinite;
}

.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes wa-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* =========================================================
   Contact Split Card
   ========================================================= */
.contact-split-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .contact-split-card {
    grid-template-columns: 380px 1fr;
  }
}

.contact-info-panel {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.contact-info-panel h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.info-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-list .ci-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-list .ci-ico svg {
  stroke: #fff;
}

.info-list small {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.info-list a {
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
}

.info-list a:hover {
  text-decoration: underline;
}

.panel-blob {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, rgba(0, 64, 141, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.contact-form-panel {
  padding: 3rem 2.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-panel .contact-form {
  width: 100%;
  max-width: 480px;
}

/* ---------- Decorative Elements ---------- */
.hero-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.dec-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatDec 8s ease-in-out infinite;
}

.dec-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.4), transparent 70%);
  top: -100px;
  left: -100px;
}

.dec-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.3), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -4s;
}

@keyframes floatDec {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

/* ---------- Office Cards Enhancements ---------- */
.office {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.office::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--c) 5%, transparent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.office:hover::before {
  opacity: 1;
}

.office .card-ico {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.office:hover .card-ico {
  transform: scale(1.1) rotate(-5deg);
}