/* ── CSS Variables ── */
:root {
  --navy:   #0B1F3A;
  --blue:   #1456A0;
  --gold:   #F0A500;
  --light:  #F4F8FD;
  --white:  #FFFFFF;
  --gray:   #6B7280;
  --text:   #1a2335;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(11,31,58,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #c9d9ee;
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar i { margin-right: .35rem; }

/* ── NAVBAR ── */
.navbar { background: var(--white); box-shadow: 0 2px 20px rgba(11,31,58,.10); padding: .6rem 0; position: sticky; top: 0; z-index: 1000; }
.navbar-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-logo-img {
  height: 88px;
  width: auto;
  max-width: min(420px, 70vw);
  display: block;
  object-fit: contain;
}
.nav-link { font-weight: 500; color: var(--navy) !important; padding: .5rem 1rem !important; transition: color .2s; position: relative; }
.nav-link::after { content:''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s; border-radius: 2px; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--blue) !important; }
.nav-link.active { color: var(--blue) !important; }
.btn-nav-cta { background: var(--gold); color: var(--navy) !important; border-radius: 50px; padding: .45rem 1.3rem !important; font-weight: 600; transition: background .2s, transform .2s; }
.btn-nav-cta:hover { background: #d48f00; transform: translateY(-1px); }
.btn-nav-cta::after { display: none; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,31,58,.88) 30%, rgba(11,31,58,.55) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  color: var(--white);
  padding: 4rem 0;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: #c9d9ee;
  max-width: 560px;
  line-height: 1.7;
}
.page-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── HERO SLIDER (home) ── */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.slide.active { opacity: 1; transform: scale(1); z-index: 2; }
.slide-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slide-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,31,58,.82) 40%, rgba(11,31,58,.35) 100%);
}
.slide-content { position: relative; z-index: 3; color: var(--white); max-width: 620px; padding: 0 1.5rem; }
.slide-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: .3rem .85rem; border-radius: 50px; margin-bottom: 1.2rem;
}
.slide-content h1 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.1rem; }
.slide-content p  { font-size: 1.05rem; color: #c9d9ee; margin-bottom: 2rem; line-height: 1.7; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold  { background: var(--gold); color: var(--navy); border: none; border-radius: 50px; padding: .75rem 2rem; font-weight: 700; font-size: .95rem; transition: background .2s, transform .2s; text-decoration: none; display: inline-block; }
.btn-gold:hover { background: #d48f00; transform: translateY(-2px); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); border-radius: 50px; padding: .75rem 2rem; font-weight: 600; font-size: .95rem; transition: .2s; text-decoration: none; display: inline-block; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); border: none; border-radius: 50px; padding: .75rem 2rem; font-weight: 700; font-size: .95rem; transition: background .2s, transform .2s; text-decoration: none; display: inline-block; }
.btn-blue:hover { background: #0f4680; transform: translateY(-2px); color: var(--white); }

.slider-controls { position: absolute; bottom: 2rem; right: 2rem; z-index: 10; display: flex; gap: .6rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.slider-dot.active { background: var(--gold); transform: scale(1.4); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); color: var(--white); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; font-size: 1.1rem; backdrop-filter: blur(6px); }
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(11,31,58,.88); backdrop-filter: blur(8px);
  padding: 1.2rem 0;
}
.stat-item { text-align: center; padding: 0 1rem; }
.stat-num { font-family: var(--font-heading); font-size: 1.7rem; color: var(--gold); font-weight: 800; line-height: 1; }
.stat-label { font-size: .78rem; color: #c9d9ee; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 50px; margin: auto; }

/* ── SECTION GLOBALS ── */
section { padding: 5rem 0; }
.section-tag { display: inline-block; color: var(--blue); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .6rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-title span { color: var(--blue); }
.section-lead { color: var(--gray); font-size: 1.05rem; line-height: 1.75; margin-top: .85rem; }
.divider-gold { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1rem 0; }

/* ── SERVICES ── */
.bg-light-section { background: var(--light); }
.service-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .3s, box-shadow .3s; height: 100%;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(11,31,58,.16); color: inherit; }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 1.8rem; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg,var(--blue),var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; margin-bottom: 1rem; }
.service-body h4 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--navy); margin-bottom: .6rem; }
.service-body p  { color: var(--gray); line-height: 1.7; font-size: .95rem; }
.service-list { list-style: none; margin-top: 1rem; }
.service-list li { display: flex; align-items: center; gap: .5rem; color: var(--gray); font-size: .9rem; margin-bottom: .4rem; }
.service-list li i { color: var(--gold); font-size: .8rem; }
.link-arrow { color: var(--blue); font-weight: 600; font-size: .9rem; margin-top: 1rem; display: inline-block; }

/* ── WHY / DIFFERENCE ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; border-radius: var(--radius); border: 1px solid #e5edf7; transition: border-color .2s, box-shadow .2s; }
.why-item:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(20,86,160,.08); }
.why-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 10px; background: #EEF4FF; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.1rem; }
.why-item h6 { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.why-item p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }
.why-visual { border-radius: var(--radius); overflow: hidden; position: relative; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); border-radius: 12px; padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(11,31,58,.15); display: flex; align-items: center; gap: .75rem;
}
.why-badge-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.2rem; }
.why-badge-text .big { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); font-weight: 800; }
.why-badge-text small { color: var(--gray); font-size: .8rem; display: block; }

/* ── PROCESS ── */
.bg-navy-section { background: var(--navy); }
.bg-navy-section .section-title { color: var(--white); }
.bg-navy-section .section-lead { color: #a0b4cc; }
.bg-navy-section .section-tag { color: var(--gold); }
.process-step { text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(240,165,0,.15); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--gold);
  margin: 0 auto 1.2rem;
}
.process-step h5 { color: var(--white); font-weight: 700; margin-bottom: .5rem; }
.process-step p  { color: #a0b4cc; font-size: .9rem; line-height: 1.7; }
.process-connector { position: absolute; top: 32px; left: calc(50% + 3rem); width: calc(100% - 6rem); height: 2px; background: rgba(240,165,0,.25); }

/* ── TESTIMONIALS ── */
.testi-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); height: 100%; transition: transform .3s; }
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.testi-text { color: var(--gray); font-size: .95rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .9rem; }
.testi-name { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testi-role { color: var(--gray); font-size: .78rem; }

/* ── ABOUT ── */
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; border-radius: var(--radius); }
.about-cert {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--white); border-radius: 10px; padding: .85rem 1.1rem; box-shadow: var(--shadow);
  text-align: center;
}
.about-cert i { color: var(--gold); font-size: 1.6rem; }
.about-cert span { display: block; font-size: .72rem; font-weight: 700; color: var(--navy); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }
.about-feature { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.about-feature i { color: var(--gold); font-size: 1rem; min-width: 20px; }
.about-feature span { color: var(--gray); font-size: .95rem; }

/* ── CONTACT ── */
.contact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.75rem; display: flex; gap: 1.1rem; align-items: flex-start; transition: background .2s; }
.contact-card:hover { background: rgba(255,255,255,.1); }
.contact-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 12px; background: rgba(240,165,0,.18); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; }
.contact-label { color: #a0b4cc; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.contact-val { color: var(--white); font-weight: 600; font-size: 1rem; }
.contact-val a { color: var(--white); text-decoration: none; }
.contact-val a:hover { color: var(--gold); }
.contact-card-light { background: var(--white); border: 1px solid #e5edf7; }
.contact-card-light .contact-label { color: var(--gray); }
.contact-card-light .contact-val { color: var(--navy); }
.contact-card-light .contact-val a { color: var(--navy); }
.contact-card-light .contact-icon { background: #EEF4FF; color: var(--blue); }
.form-ctrl {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); border-radius: 10px; padding: .85rem 1.1rem;
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form-ctrl-light {
  background: var(--white);
  border: 1px solid #d1dbe8;
  color: var(--text);
}
.form-ctrl:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.form-ctrl-light:focus { background: var(--white); border-color: var(--blue); }
.form-ctrl::placeholder { color: #6b84a0; }
.form-ctrl-light::placeholder { color: #9ca3af; }
.form-ctrl option { background: var(--navy); }
.btn-submit { background: var(--gold); color: var(--navy); border: none; border-radius: 50px; padding: .85rem 2.5rem; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .2s, transform .2s; width: 100%; font-family: var(--font-body); }
.btn-submit:hover { background: #d48f00; transform: translateY(-2px); }
.btn-submit:disabled { opacity: .75; cursor: not-allowed; transform: none; }
.contact-form-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 2.5rem;
}
.contact-form-panel h5 {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.contact-bus-visual {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  text-align: center;
}
.contact-bus-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
}
.contact-bus-caption {
  color: #a0b4cc;
  font-size: .88rem;
  margin-top: .75rem;
  margin-bottom: 0;
}
.form-alert {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.form-alert-success {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  color: #bbf7d0;
}
.form-alert-error {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: #fecaca;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── HOME CARDS ── */
.home-nav-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-nav-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,31,58,.14); color: inherit; }
.home-nav-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.home-nav-card h4 { font-family: var(--font-heading); color: var(--navy); margin-bottom: .5rem; }
.home-nav-card p { color: var(--gray); font-size: .95rem; line-height: 1.7; }
.home-nav-card .learn-more { color: var(--blue); font-weight: 600; font-size: .9rem; margin-top: 1rem; }

/* ── EMPLOYMENT ── */
.req-list { list-style: none; }
.req-list li {
  display: flex; gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid #e5edf7;
  color: var(--gray);
  line-height: 1.6;
}
.req-list li i { color: var(--gold); margin-top: .2rem; }
.info-box {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
}

/* ── FOOTER ── */
footer { background: #060f1e; color: #6b84a0; font-size: .88rem; padding: 3rem 0 1.5rem; }
.footer-brand .name { font-family: var(--font-heading); color: var(--white); font-size: 1.2rem; font-weight: 700; }
.footer-brand p { margin-top: .5rem; line-height: 1.7; }
.footer-heading { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #6b84a0; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: #6b84a0; transition: background .2s, color .2s; text-decoration: none; }
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner h2 { font-family: var(--font-heading); color: var(--white); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-banner p  { color: #c9d9ee; font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-banner .btn-gold { position: relative; }

/* ── SCROLL TO TOP ── */
#scrollTop { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 4px 16px rgba(20,86,160,.35); opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s; }
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold); color: var(--navy); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ── CONTENT BLOCKS ── */
.content-block p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.content-block h3 { font-family: var(--font-heading); color: var(--navy); font-size: 1.4rem; margin: 2rem 0 1rem; }
.feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature-img img { width: 100%; display: block; object-fit: cover; }

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
  .brand-logo-img { height: 64px; max-width: 85vw; }
}

@media (max-width: 992px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }
}
@media (max-width: 768px) {
  .hero-stats .col { flex: 0 0 50%; max-width: 50%; margin-bottom: .5rem; }
  .stat-divider { display: none; }
  .slider-arrow { width: 40px; height: 40px; font-size: .9rem; }
  .page-hero { min-height: 320px; }
}
@media (max-width: 576px) {
  .slide-content h1 { font-size: 1.8rem; }
  .hero-stats { position: relative; }
  .hero-slider { height: auto; min-height: 100vh; }
}
