/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #333; line-height: 1.7; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLORS ===== */
:root {
  --blue: #0096ea;
  --blue-dark: #0066b2;
  --teal: #00c9a7;
  --navy: #0a1628;
  --navy2: #0f2137;
  --gray: #6b7c93;
  --gray-light: #94a3b8;
  --light-bg: #f4f8fc;
  --light-bg2: #f0faf8;
  --white: #ffffff;
  --gold: #f9c74f;
  --shadow: 0 4px 24px rgba(10,22,40,.06);
  --shadow-md: 0 8px 32px rgba(10,22,40,.08);
  --shadow-lg: 0 16px 48px rgba(10,22,40,.12);
  --radius: 20px;
  --radius-sm: 14px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-item {
  color: rgba(255,255,255,.75);
  transition: color .3s;
}
a.top-bar-item:hover { color: var(--teal); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.04);
  z-index: 1000; transition: all .3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  position: relative; padding: 4px 0; letter-spacing: .2px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width .35s cubic-bezier(.25,.8,.25,1);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff !important; padding: 10px 26px; border-radius: 50px;
  font-weight: 600; font-size: .82rem;
  transition: transform .2s, box-shadow .3s;
  box-shadow: 0 4px 14px rgba(0,150,234,.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,150,234,.4); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 1001;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--navy); border-radius: 3px; transition: .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
  padding: 12px 24px; transition: color .3s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .nav-cta { margin-top: 12px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(165deg, #f8fbff 0%, #eef6ff 30%, #e8f8f5 60%, #fefefe 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,150,234,.06), transparent 70%);
}
.page-hero .hero-badge { margin-bottom: 16px; }
.page-hero h1 {
  font-size: 2.8rem; font-weight: 900; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -.02em;
}
.page-hero p {
  font-size: 1.1rem; color: var(--gray); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 94vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #f8fbff 0%, #eef6ff 30%, #e8f8f5 60%, #fefefe 100%);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,150,234,.06), transparent 70%);
  animation: float 20s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -40%; left: -20%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,.05), transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,150,234,.08); color: var(--blue);
  font-size: .75rem; font-weight: 700; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 24px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(0,150,234,.12);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
.hero h1 {
  font-size: 3.4rem; font-weight: 900; color: var(--navy);
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1.1rem; color: var(--gray); line-height: 1.8; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px; font-weight: 700;
  font-size: .95rem; cursor: pointer; transition: all .3s ease; border: none;
  letter-spacing: .2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(0,150,234,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,150,234,.4); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid rgba(10,22,40,.15);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,150,234,.04); }

.hero-image {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 8s ease;
}
.hero-image:hover img { transform: scale(1.05); }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.15));
  pointer-events: none;
}
/* Floating stat cards on hero image */
.hero-float {
  position: absolute; z-index: 3; background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); border-radius: var(--radius-sm);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float.f1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hero-float.f2 { top: 30px; right: -20px; animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float .num { font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.hero-float .lbl { font-size: .72rem; color: var(--gray); font-weight: 500; }

.trust-bar {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--gray); font-weight: 500;
}
.trust-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00e6b8);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .65rem; flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  background: rgba(0,150,234,.06); padding: 6px 16px;
  border-radius: 50px;
}
.section-header h2 {
  font-size: 2.6rem; font-weight: 900; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -.02em;
}
.section-header p {
  font-size: 1.05rem; color: var(--gray); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 120ms); }

/* ===== SERVICES OVERVIEW (homepage) ===== */
.services-overview { background: var(--light-bg); }
.overview-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.overview-card {
  background: white; border-radius: var(--radius); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  border: 1px solid rgba(0,0,0,.03);
  display: block;
}
.overview-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.overview-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.overview-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.overview-card p {
  font-size: .86rem; color: var(--gray); line-height: 1.65;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  pointer-events: none;
}
.about-image::before {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  opacity: .12; z-index: -1;
}
.about-content h3 {
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; letter-spacing: -.01em;
}
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; font-size: .95rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.stat-box {
  background: var(--light-bg); padding: 22px; border-radius: var(--radius-sm);
  text-align: center; border: 1px solid rgba(0,150,234,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-box .num {
  font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .label { font-size: .78rem; color: var(--gray); font-weight: 500; margin-top: 4px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(0,150,234,.08);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat-item { position: relative; z-index: 2; }
.stat-num {
  font-size: 2.5rem; font-weight: 900; color: white;
  background: linear-gradient(135deg, var(--gold), #ffd97d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px;
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services { background: var(--light-bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .4s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .card-img { transform: scale(1.05); }
.service-card .card-img-wrap { overflow: hidden; position: relative; }
.service-card .card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,.9));
  pointer-events: none;
}
.service-card .card-body { padding: 28px 24px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .86rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.service-card ul { margin: 0; }
.service-card ul li {
  font-size: .82rem; color: var(--gray); padding: 5px 0 5px 22px;
  position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}

/* ===== SERVICE AREAS ===== */
.areas { background: var(--white); position: relative; }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
}
.area-tag {
  background: white; padding: 16px 20px; border-radius: var(--radius-sm);
  text-align: center; font-weight: 600; font-size: .88rem; color: var(--navy);
  border: 1px solid rgba(0,150,234,.08);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  cursor: default;
}
.area-tag:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white; transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,150,234,.2);
  border-color: transparent;
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--light-bg); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  display: flex; gap: 20px; background: white; padding: 28px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  border: 1px solid rgba(0,0,0,.03);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card .icon-wrap {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px;
  overflow: hidden;
}
.why-card .icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* ===== TEAM ===== */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  text-align: center; background: white; border-radius: var(--radius);
  padding: 40px 24px; box-shadow: var(--shadow);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  border: 1px solid rgba(0,0,0,.03);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem; color: white; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,150,234,.2);
  transition: transform .4s ease;
}
.team-card:hover .team-avatar { transform: scale(1.08); }
.team-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.team-card .role {
  font-size: .82rem; color: var(--blue); font-weight: 700;
  margin: 6px 0 12px; letter-spacing: .3px;
}
.team-card p { font-size: .84rem; color: var(--gray); line-height: 1.65; }

/* ===== CERTIFICATIONS ===== */
.certs {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: white; position: relative; overflow: hidden;
}
.certs::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(0,150,234,.08);
}
.certs .section-tag { background: rgba(249,199,79,.15); color: var(--gold); }
.certs .section-header h2 { color: white; }
.certs .section-header p { color: rgba(255,255,255,.6); }
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cert-badge {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 22px 32px; border-radius: var(--radius-sm);
  text-align: center; transition: all .35s ease; min-width: 130px;
}
.cert-badge:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.cert-badge .abbr {
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffd97d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cert-badge .full {
  font-size: .68rem; color: rgba(255,255,255,.55);
  margin-top: 6px; display: block; line-height: 1.4;
}

/* ===== TRAINING ===== */
.training { background: var(--light-bg2); }

/* Instructor Card */
.training-instructor {
  display: flex; gap: 36px; align-items: center;
  background: white; border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); margin-bottom: 48px;
  border: 1px solid rgba(0,201,167,.1);
  position: relative; overflow: hidden;
}
.training-instructor::before {
  content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}
.instructor-img {
  flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; border: 4px solid rgba(0,150,234,.12);
  box-shadow: 0 8px 24px rgba(0,150,234,.15);
}
.instructor-img img { width: 100%; height: 100%; object-fit: cover; }
.instructor-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
  background: rgba(0,150,234,.06); padding: 5px 14px;
  border-radius: 50px; margin-bottom: 8px;
}
.instructor-info h3 {
  font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 4px;
}
.instructor-title {
  font-size: .95rem; color: var(--teal); font-weight: 700; margin-bottom: 2px;
}
.instructor-creds {
  font-size: .85rem; color: var(--gray); font-weight: 600; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.06);
}
.instructor-desc { font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* Training Sections */
.training-sections { display: flex; flex-direction: column; gap: 36px; }

.training-block {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.03);
}
.training-block-accent {
  border-left: 4px solid var(--blue);
}
.training-block-accent2 {
  border-left: 4px solid var(--teal);
}
.training-block-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 8px;
}
.training-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,150,234,.08), rgba(0,201,167,.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.training-icon.accent { background: linear-gradient(135deg, rgba(0,150,234,.1), rgba(0,102,178,.08)); color: var(--blue-dark); }
.training-icon.accent2 { background: linear-gradient(135deg, rgba(0,201,167,.1), rgba(39,174,96,.08)); color: var(--teal); }
.training-block-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.training-hours {
  display: inline-block; font-size: .72rem; font-weight: 700;
  background: rgba(0,150,234,.08); color: var(--blue);
  padding: 3px 12px; border-radius: 50px; margin-top: 2px;
}
.training-block-sub {
  font-size: .85rem; color: var(--gray); margin-bottom: 24px; margin-left: 68px;
}

/* Topic Grid (In-House Training) */
.topic-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.topic-card {
  background: var(--light-bg); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid rgba(0,150,234,.06);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.topic-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  background: white;
}
.topic-img { overflow: hidden; height: 140px; }
.topic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.topic-card:hover .topic-img img { transform: scale(1.08); }
.topic-body { padding: 18px; }
.topic-body h4 { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.topic-body p { font-size: .8rem; color: var(--gray); line-height: 1.6; }

/* Training Detail Cards (RBT & CPI) */
.training-detail-card {
  display: flex; gap: 28px; align-items: stretch;
  background: var(--light-bg); border-radius: var(--radius-sm);
  overflow: hidden; margin-top: 20px;
  border: 1px solid rgba(0,150,234,.04);
}
.training-detail-img {
  flex-shrink: 0; width: 280px; overflow: hidden;
}
.training-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.training-detail-card:hover .training-detail-img img { transform: scale(1.05); }
.training-detail-body { padding: 28px 28px 28px 0; display: flex; flex-direction: column; justify-content: center; }
.training-detail-body h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.training-detail-body p { font-size: .88rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.training-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.meta-tag {
  font-size: .75rem; color: var(--gray); background: white;
  padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(0,0,0,.05);
}
.meta-tag strong { color: var(--navy); }

/* ===== INSURANCE ===== */
.insurance { background: var(--white); }
.insurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insurance-card {
  background: var(--light-bg); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  border: 1px solid rgba(0,150,234,.06);
}
.insurance-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: white; }
.insurance-card .card-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px;
  overflow: hidden;
}
.insurance-card .card-icon img { width: 100%; height: 100%; object-fit: cover; }
.insurance-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.insurance-card p { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* ===== FACILITIES ===== */
.facilities { background: var(--light-bg); }
.facility-groups { display: flex; flex-direction: column; gap: 40px; }
.facility-group h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,150,234,.1);
  display: flex; align-items: center; gap: 10px;
}
.facility-group h3 img {
  width: 28px; height: 28px; border-radius: 6px; object-fit: cover;
}
.facility-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.facility-tag {
  background: white; padding: 10px 20px; border-radius: 10px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  border: 1px solid rgba(0,150,234,.08);
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.facility-tag:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,150,234,.2);
}

/* ===== JOB CARDS (careers page) ===== */
.job-listings {
  display: flex; flex-direction: column; gap: 28px;
}
.job-card {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.03);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 14px;
}
.job-header h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--navy);
}
.job-type {
  display: inline-block; font-size: .75rem; font-weight: 700;
  background: rgba(0,150,234,.08); color: var(--blue);
  padding: 5px 16px; border-radius: 50px;
}
.job-card > p {
  font-size: .9rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px;
}
.job-details {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
}
.job-tag {
  font-size: .78rem; color: var(--gray); background: var(--light-bg);
  padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(0,0,0,.04);
}
.job-card h4 {
  font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.job-card ul { margin-bottom: 0; }
.job-card ul li {
  font-size: .84rem; color: var(--gray); padding: 4px 0 4px 22px;
  position: relative;
}
.job-card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.03);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars {
  color: var(--gold); font-size: 1.1rem; margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: .92rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-author h4 {
  font-size: .9rem; font-weight: 800; color: var(--navy);
}
.testimonial-author span {
  font-size: .78rem; color: var(--gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -150px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(0,201,167,.1);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: 2.2rem; font-weight: 900; color: white;
  margin-bottom: 14px; letter-spacing: -.01em;
}
.cta-banner p {
  font-size: 1.05rem; color: rgba(255,255,255,.85);
  margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.btn-white {
  background: white; color: var(--blue-dark); padding: 15px 38px;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex; gap: 16px; background: var(--light-bg); padding: 22px;
  border-radius: var(--radius-sm);
  transition: all .3s ease; border: 1px solid rgba(0,150,234,.04);
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: white; }
.contact-item .icon-wrap {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  overflow: hidden;
}
.contact-item .icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.contact-item h4 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .85rem; color: var(--gray); line-height: 1.6; }
.contact-item a:hover { color: var(--blue); }
.contact-form {
  background: var(--light-bg); padding: 40px; border-radius: var(--radius);
  border: 1px solid rgba(0,150,234,.06);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; letter-spacing: .2px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 18px; border: 2px solid #e4ecf4;
  border-radius: 12px; font-size: .9rem; font-family: inherit;
  transition: all .3s; background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,150,234,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 15px; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,150,234,.25);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,150,234,.4); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; filter: brightness(1.6); }
.footer-brand p { font-size: .88rem; line-height: 1.75; }
.footer h4 {
  color: white; font-size: .88rem; font-weight: 700;
  margin-bottom: 18px; letter-spacing: .5px; text-transform: uppercase;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .86rem; transition: color .3s; }
.footer ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; text-align: center; font-size: .8rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s cubic-bezier(.25,.8,.25,1);
  z-index: 999; box-shadow: 0 4px 20px rgba(0,150,234,.3);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,150,234,.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .trust-bar { justify-content: center; }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .hero-float.f1 { left: 10px; }
  .hero-float.f2 { right: 10px; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-right { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 50px 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-image img { height: 320px; }
  .hero-float { display: none; }
  section { padding: 64px 0; }
  .page-hero { padding: 80px 0 48px; }
  .page-hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.9rem; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image img { height: 300px; }
  .overview-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; text-align: center; align-items: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .insurance-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: 0 auto 14px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }
  .training-instructor {
    flex-direction: column; text-align: center; padding: 30px 24px;
  }
  .training-instructor::before { width: 100%; height: 4px; top: 0; left: 0; }
  .instructor-img { width: 120px; height: 120px; }
  .training-block { padding: 24px; }
  .training-block-sub { margin-left: 0; }
  .topic-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .training-detail-card { flex-direction: column; }
  .training-detail-img { width: 100%; height: 200px; }
  .training-detail-body { padding: 20px; }
  .training-meta { flex-direction: column; }
  .job-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.6rem; }
  .about-stats { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .logo img { height: 38px; }
  .cert-grid { gap: 10px; }
  .cert-badge { min-width: 100px; padding: 16px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .training-block-header { flex-direction: column; text-align: center; align-items: center; }
  .instructor-img { width: 100px; height: 100px; }
}
