/* ================================================================
   NIOS VIJAY NISHA ACADEMY — Master Stylesheet
   Version: 1.0
   Colors: Navy (#0C2D5A), Gold (#C5981B), Green (#0D8B6A)
   Fonts: Poppins (body), Playfair Display (headings)
   ================================================================ */

/* ── Variables ── */
:root {
  --navy: #0C2D5A;
  --navy-dark: #071E3D;
  --navy-mid: #103E7A;
  --gold: #C5981B;
  --gold-light: #E8B84D;
  --gold-bright: #F5C84C;
  --gold-soft: #FFF8E7;
  --green: #0D8B6A;
  --green-light: #E6F5F0;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-50: #F8F9FB;
  --gray-100: #EDF0F5;
  --gray-200: #D8DDE6;
  --gray-400: #9CA3B0;
  --gray-600: #5A6274;
  --gray-800: #2D3142;
  --gray-900: #1A1D2B;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(12, 45, 90, .07);
  --shadow-md: 0 6px 24px rgba(12, 45, 90, .09);
  --shadow-lg: 0 12px 48px rgba(12, 45, 90, .11);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-600);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { color: var(--gray-800); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }


/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 139, 106, .4); }
  70%      { box-shadow: 0 0 0 12px rgba(13, 139, 106, 0); }
}
.anim { opacity: 0; }
.anim.vis { animation: fadeUp .6s ease forwards; }
.ad1 { animation-delay: .1s; }
.ad2 { animation-delay: .2s; }
.ad3 { animation-delay: .3s; }
.ad4 { animation-delay: .4s; }


/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: var(--gold-light);
  font-weight: 600;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar a:hover { color: #fff; }
.topbar svg { width: 13px; height: 13px; fill: var(--gold); }
.tb-l, .tb-r { display: flex; align-items: center; gap: 16px; }


/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  transition: box-shadow .3s;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* Nav */
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 8px;
  transition: .2s;
}
nav a:hover, nav a.active {
  color: var(--navy);
  background: var(--gray-50);
}
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 12px rgba(197, 152, 27, .25);
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 210;
}
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Nav */
.mn {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 76px 24px 24px;
  gap: 2px;
  overflow-y: auto;
}
.mn.open { display: flex; }
.mn-c {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mn-c svg { width: 26px; height: 26px; fill: var(--gray-800); }
.mn a {
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 8px;
  transition: .2s;
}
.mn a:hover { background: var(--gray-50); }


/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(197, 152, 27, .3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: #0A7559;
  transform: translateY(-2px);
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7,30,61,.96) 0%, rgba(12,45,90,.88) 42%, rgba(16,62,122,.55) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 152, 27, .15);
  border: 1px solid rgba(197, 152, 27, .3);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: 38px;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 6px;
  font-weight: 800;
}
.hero h1 span {
  color: var(--gold-bright);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 14px;
  opacity: .85;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 8px;
  max-width: 500px;
}
.hero-sub2 {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 24px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-classes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-classes em {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-right: 4px;
  font-style: normal;
}
.cpill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

/* Hero poster */
.hero-poster {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
  border: 3px solid rgba(255, 255, 255, .1);
  animation: scaleIn .8s ease .2s forwards;
  opacity: 0;
  max-width: 420px;
}
.hero-poster img { width: 100%; height: auto; }


/* ================================================================
   TRUST BAR
   ================================================================ */
.trust {
  background: var(--gold-soft);
  padding: 16px 0;
  border-bottom: 2px solid rgba(197, 152, 27, .12);
}
.trust .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-i {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.trust-i svg { width: 18px; height: 18px; fill: var(--gold); }


/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 68px 0; }
.section-alt { background: var(--off-white); }
.section-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}

/* Section header */
.sh {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.sh .ey {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green);
  margin-bottom: 8px;
}
.sh h2 { font-size: 30px; margin-bottom: 10px; }
.sh p { font-size: 14.5px; color: var(--gray-400); }
.sh.light .ey { color: var(--gold-light); }
.sh.light h2 { color: #fff; }
.sh.light p { color: rgba(255, 255, 255, .55); }


/* ================================================================
   ABOUT
   ================================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 4s ease;
}
.about-img:hover img { transform: scale(1.05); }
.about-img.tall { grid-row: span 2; }
.about-img.tall img { height: 100%; min-height: 454px; }
.about-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  white-space: nowrap;
}
.about-badge strong { font-size: 22px; display: block; line-height: 1; }
.about-badge span {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: .85;
}
.ac .ey {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green);
  margin-bottom: 8px;
}
.ac h2 { font-size: 28px; margin-bottom: 12px; }
.ac p { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; }
.ac-feats { display: grid; gap: 9px; margin-top: 18px; }
.ac-f {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800);
}
.ac-f svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}


/* ================================================================
   IMAGE BANNER
   ================================================================ */
.img-banner { padding: 0; overflow: hidden; }
.img-banner-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.img-banner-inner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
}
.img-banner-inner img:hover { transform: scale(1.03); }


/* ================================================================
   COURSE CARDS
   ================================================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cc {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.cc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.cc:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--navy);
}
.cc:hover::after { transform: scaleX(1); }
.cc-img { height: 160px; overflow: hidden; }
.cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cc:hover .cc-img img { transform: scale(1.08); }
.cc-body { padding: 22px 20px; }
.cc-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.cc-ic.c1 { background: var(--green-light); }
.cc-ic.c2 { background: var(--gold-soft); }
.cc-ic.c3 { background: #E8EDF7; }
.cc h3 { font-size: 16px; margin-bottom: 6px; }
.cc p { font-size: 12.5px; color: var(--gray-400); line-height: 1.7; }
.cc-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.cc-tag.pop { background: var(--green-light); color: var(--green); }
.cc-tag.std { background: var(--gray-100); color: var(--gray-600); }
.cc-tag.pro { background: var(--gold-soft); color: var(--gold); }


/* ================================================================
   BOARD CARDS
   ================================================================ */
.boards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
}
.bc:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.bc-top { height: 120px; overflow: hidden; position: relative; }
.bc-top img { width: 100%; height: 100%; object-fit: cover; }
.bc-top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,45,90,.7), rgba(12,45,90,.92));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.bc-body { padding: 22px 20px; }
.bc-body > p { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; }
.bc-body > p strong { color: var(--gray-800); }
.bc-body ul { display: grid; gap: 7px; }
.bc-body ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-800);
}
.bc-body ul li svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; }


/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 20px;
  align-items: start;
}
.why-col { display: grid; gap: 14px; }
.wc {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all .3s;
}
.wc:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wc-i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--off-white);
}
.wc:nth-child(odd) .wc-i { background: var(--green-light); }
.wc:nth-child(even) .wc-i { background: var(--gold-soft); }
.wc h4 { font-size: 13.5px; margin-bottom: 4px; }
.wc p { font-size: 11.5px; color: var(--gray-400); }
.why-center-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 420px;
}
.why-center-img img { width: 100%; height: 100%; object-fit: cover; }


/* ================================================================
   MISSION
   ================================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mc .ey {
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}
.mc h2 { color: #fff; font-size: 30px; margin-bottom: 14px; }
.mc h2 em {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.mc p { color: rgba(255, 255, 255, .7); font-size: 14px; margin-bottom: 12px; }
.m-hls { display: grid; gap: 10px; margin-top: 18px; }
.m-hl {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 13px 16px;
  border-radius: 10px;
}
.m-hl svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.m-hl p {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}
.mission-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  border: 3px solid rgba(255, 255, 255, .08);
}
.mission-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}


/* ================================================================
   FAQ
   ================================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.faq-list { display: grid; gap: 10px; }
.fq {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.fq:hover { border-color: var(--navy); }
.fq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  gap: 10px;
  transition: color .2s;
}
.fq-q:hover { color: var(--navy); }
.fq-q svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-400);
  transition: transform .3s;
  flex-shrink: 0;
}
.fq.open .fq-q svg { transform: rotate(180deg); fill: var(--navy); }
.fq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 18px;
}
.fq.open .fq-a { max-height: 300px; padding: 0 18px 14px; }
.fq-a p { font-size: 13px; color: var(--gray-600); line-height: 1.8; }
.faq-side {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}
.faq-side img { width: 100%; height: auto; }


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-bar {
  background: linear-gradient(135deg, var(--gold), #D4920A);
  padding: 40px 0;
  text-align: center;
}
.cta-bar h2 { color: var(--navy-dark); font-size: 26px; margin-bottom: 8px; }
.cta-bar p {
  color: rgba(7, 30, 61, .55);
  font-size: 14.5px;
  margin-bottom: 20px;
}


/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.c-cards { display: grid; gap: 14px; align-content: start; }
.c-cd {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: all .3s;
}
.c-cd:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.c-cd-i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-cd-i svg { width: 18px; height: 18px; fill: var(--gold); }
.c-cd h4 { font-size: 13.5px; margin-bottom: 2px; }
.c-cd p, .c-cd a { font-size: 13px; color: var(--gray-400); display: block; }
.c-cd a:hover { color: var(--gold); }
.c-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  min-height: 380px;
}
.c-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, .45);
  padding: 48px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; font-weight: 700; }
.footer p { font-size: 13px; line-height: 1.8; }
.footer a {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  display: block;
  padding: 3px 0;
  transition: .2s;
}
.footer a:hover { color: var(--gold-light); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img { height: 44px; width: auto; border-radius: 6px; }
.fb {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  flex-wrap: wrap;
  gap: 8px;
}


/* ================================================================
   FLOATING CONTACT WIDGET
   ================================================================ */
.fw {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.fw-tip {
  background: var(--white);
  color: var(--gray-800);
  padding: 8px 16px;
  border-radius: 10px 10px 0 10px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
  pointer-events: none;
  white-space: nowrap;
}
.fw:hover .fw-tip { opacity: 1; transform: translateY(0); }
.fw-btns { display: flex; gap: 9px; }
.fw-b {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.fw-b svg { width: 23px; height: 23px; fill: #fff; }
.fw-b.wa { background: #25D366; }
.fw-b.wa:hover { background: #1EBE5A; transform: scale(1.08); }
.fw-b.call { background: var(--navy); }
.fw-b.call:hover { background: var(--navy-mid); transform: scale(1.08); }
.fw-b.msg { background: var(--gold); }
.fw-b.msg:hover { background: var(--gold-light); transform: scale(1.08); }


/* ================================================================
   PAGE-SPECIFIC: Inner page hero
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 34px; margin-bottom: 8px; }
.page-hero p { color: rgba(255, 255, 255, .6); font-size: 15px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-top: 12px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255, 255, 255, .3); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-sub2 { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-classes { justify-content: center; }
  .hero-poster { margin: 0 auto; }
  .about-wrap, .mission-grid, .contact-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .why-wrap { grid-template-columns: 1fr 1fr; }
  .why-center-img { display: none; }
  .boards-row { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 26px; }
  .hero .container { padding-top: 36px; padding-bottom: 36px; }
  .section { padding: 48px 0; }
  .sh h2 { font-size: 24px; }
  .courses-grid, .boards-row { grid-template-columns: 1fr; }
  .why-wrap { grid-template-columns: 1fr; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-img.tall { grid-row: auto; }
  .about-img.tall img { min-height: 220px; height: 220px; }
  .img-banner-inner { grid-template-columns: 1fr; }
  .img-banner-inner img { height: 200px; }
  .tb-r { display: none; }
  .about-badge { bottom: -10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-bar h2 { font-size: 22px; }
  .logo img { height: 44px; }
  .page-hero h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .fw-btns { gap: 7px; }
  .fw-b { width: 46px; height: 46px; }
  .fw-b svg { width: 20px; height: 20px; }
}
