
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f3f3f3;
  color: #333;
}

h2,h1 { font-family: 'Abril Fatface'; }

a {
  text-decoration: none;
  cursor: pointer;
}

/* ── BUTTON BOUNCE ANIMATION ── */
@keyframes bounce {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-12px) scale(1.05); }
  50%  { transform: translateY(0) scale(0.98); }
  70%  { transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}
button:active { animation: bounce 0.4s; }
.bounce       { animation: bounce 0.5s ease; }

/* ── SCROLL REVEAL (content appears as you scroll, matching TVET/about) ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .65s ease, transform .65s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}


/*HERO*/
.hero {
  position: relative;
  isolation: isolate;
  min-height: 90vh;
  background-color: #06202B; /* hero photo now shown via the rotating carousel */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 80px 60px;       /* top pad clears the floating navbar */
  overflow: hidden;
  text-align: center;
}

/* dark overlay so text stays readable on any image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 43, 0.45);
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

/* ── HERO TEXT (centered) ── */
.hero-content {
  max-width: 640px;
  margin: 0 auto;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 700;
}

.hero span { color: #ff8c38; }

/* subtitle added in new HTML */
.hero-content p {
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.9;
  margin-top: 10px;
  max-width: 480px;
}

/* ── HERO CTA BUTTONS ── */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-apply {
  display: inline-block;
  background: #FB963E;
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(251,150,62,.45);
}
.btn-apply:hover { background: #e07e2a; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(251,150,62,.6); }

.btn-learn-hero {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-learn-hero:hover { background: #fff; color: #1a2a4a; }

/* ── ACCREDITATION BADGE ── */
.accreditation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,192,238,0.15);
  border: 1px solid #2FC0EE;
  color: #2FC0EE;
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 18px;
}


/* ══════════════════════════════════════════════════
   NAVBAR — fixed, shrinks on scroll (consistent site-wide)
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 80px;
  height: 90px;
  background: white;
  color: #2FC0EE;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: top .3s, height .3s, box-shadow .3s;
}
.navbar.scrolled { top: 10px; height: 70px; box-shadow: 0 6px 24px rgba(0,0,0,.13); }

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo img { height: 60px; transition: height .3s; }
.navbar.scrolled .logo img { height: 42px !important; }

/* Bootstrap nav items inherit color */
nav ul       { display: flex; gap: 40px; list-style: none; font-weight: 500; }
nav li       { color: #38a8c8; cursor: pointer; }
nav li:hover { color: #2f545f; transform: translateY(-3px); transition: 0.2s; }
.active      { color: #ff8c38 !important; }

nav { position: relative; z-index: 1000; }

/* nav links colour */
.navbar .nav-link         { color: #38a8c8 !important; font-weight: 500; }
.navbar .nav-link:hover   { color: #2f545f !important; }
.navbar .nav-link.active  { color: #ff8c38 !important; }
.nav-item.active .nav-link { color: #ff8c38 !important; }

/* Apply Now button in nav */
.btn-apply-nav {
  display: inline-block;
  background: #FB963E;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 6px 18px rgba(251,150,62,.45);
}
.btn-apply-nav:hover { background: #e07e2a; color: #fff !important; box-shadow: 0 8px 22px rgba(251,150,62,.6); transform: translateY(-1px); }

/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropdown-menu {
  display: block;
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  padding: 15px 0;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li        { padding: 10px 20px; }
.dropdown-menu li a      { color: #062C33; font-size: 15px; display: block; }
.dropdown-menu li:hover  { background: #f5f5f5; }
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

/* Mobile nav toggle (hamburger + slide-down panel) */
.hamburger{
  display:none;background:none;border:none;cursor:pointer;padding:6px;
}
.hamburger span{
  display:block;width:24px;height:2px;background:#38a8c8;margin:5px 0;
  border-radius:2px;transition:.3s;
}
.mobile-nav{
  display:none;position:absolute;top:100%;left:20px;right:20px;
  background:#fff;border-radius:16px;padding:10px 20px;margin-top:10px;
  box-shadow:0 12px 32px rgba(0,0,0,.14);flex-direction:column;gap:2px;
  z-index:999;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  color:#38a8c8;font-weight:500;padding:12px 4px;border-bottom:1px solid #f0f0f0;
}
.mobile-nav a:last-child{border:none;}
.mobile-nav a.btn-apply,
.mobile-nav a.btn-apply-nav{
  color:#fff !important;text-align:center;border:none;margin-top:8px;box-shadow:none;
}
.mobile-nav a.active{color:#ff8c38 !important;}
@media(prefers-reduced-motion:reduce){
  .hamburger span,.mobile-nav,.dropdown-menu{transition:none !important;}
}


/* ══════════════════════════════════════════════════
   TRUST BAR  (new section)
══════════════════════════════════════════════════ */
.trust-bar {
  background: #1a2a4a;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item { text-align: center; color: #fff; }
.trust-item strong { display: block; font-size: 1.6rem; color: #FB963E; font-weight: 700; }
.trust-item span   { font-size: 0.82rem; opacity: 0.8; }


/* ══════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════ */
.about {
  margin: 140px 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.about h4 { color: #FB963E; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.about h2 { font-size: 32px; color: #49a6d8; margin: 10px 0 20px; }
.about-text p { font-size: 16px; text-align: justify; line-height: 1.7; }

.btn-blue {
  display: inline-block;
  background: #4aa6d9;
  color: white;
  font-size: 16px;
  padding: 12px 28px;
  margin-top: 20px;
  border-radius: 10px;
  border: 2px solid #4aa6d9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-blue:hover { background: white; color: #4aa6d9; transform: translateY(-3px); }


/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services { margin-top: 100px; text-align: center; }
.services h2 { color: #49a6d8; font-size: clamp(22px, 3vw, 32px); }

.services-grid {
  margin: 40px 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); }

.card_image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card_text {
  font-size: 15px;
  text-align: left;
  margin-top: 14px;
  line-height: 1.6;
  color: #555;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  color: #ff8c38;
  border: 1px solid #ff8c38;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
}
.service-link:hover { background: #ff8c38; color: white; }


/* ══════════════════════════════════════════════════
   SCHOLARSHIP
══════════════════════════════════════════════════ */
.scholarship {
  margin-top: 100px;
  background: #e8b187;
  padding: 80px 0;
}

.scholarship-grid {
  margin: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grace_shoolarship {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: 12px;
}

.schoolar_heading {
  font-family: 'Abril Fatface';
  font-size: clamp(36px, 5vw, 72px);
  color: #06202B;
  margin: 0 0 20px;
  text-align: left;
}

.scholar-text p {
  font-size: 16px;
  text-align: justify;
  line-height: 1.7;
  max-width: 480px;
}

.btn-orange {
  display: inline-block;
  background: #f28c3c;
  color: white;
  font-size: 16px;
  padding: 12px 28px;
  margin-top: 24px;
  border: 2px solid #f28c3c;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}
.btn-orange:hover { background: white; color: #f28c3c; transform: translateY(-3px); }

/* ══════════════════════════════════════════
   GRACE SCHOLARSHIP POPUP
══════════════════════════════════════════ */
.scholarship-popup-overlay{
  position:fixed;inset:0;z-index:1200;
  background:rgba(0,0,0,.55);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;
}
.scholarship-popup-overlay.active{opacity:1;visibility:visible;}
.scholarship-popup{
  position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.92);
  background:#fff;border-radius:20px;padding:40px 36px 34px;
  max-width:420px;width:92%;text-align:center;z-index:1300;
  box-shadow:0 30px 70px rgba(0,0,0,.3);
  opacity:0;visibility:hidden;
  transition:opacity .3s,transform .3s,visibility .3s;
}
.scholarship-popup.active{opacity:1;visibility:visible;transform:translate(-50%,-50%) scale(1);}
.scholarship-popup-close{
  position:absolute;top:16px;right:16px;background:#f4f4f4;border:none;
  width:34px;height:34px;border-radius:50%;cursor:pointer;color:#888;
  display:flex;align-items:center;justify-content:center;transition:background .2s,color .2s;
}
.scholarship-popup-close:hover{background:#fdeee0;color:#f28c3c;}
.scholarship-popup-icon{
  width:64px;height:64px;border-radius:50%;margin:0 auto 18px;
  background:#f28c3c;color:#fff;font-size:26px;
  display:flex;align-items:center;justify-content:center;
}
.scholarship-popup h3{
  font-family:'Abril Fatface',cursive;font-size:24px;color:#06202B;margin-bottom:14px;
}
.scholarship-popup p{
  font-family:Georgia,'Times New Roman',serif;font-size:15.5px;line-height:1.7;color:#3a3a3a;margin-bottom:26px;
}
.scholarship-popup-btn{
  display:inline-block;background:#06202B;color:#fff;border:none;
  padding:11px 30px;border-radius:8px;font-weight:600;font-size:14px;font-family:'Poppins',sans-serif;
  cursor:pointer;transition:all .3s;
}
.scholarship-popup-btn:hover{background:#f28c3c;transform:translateY(-2px);}
@media(max-width:575px){
  .scholarship-popup{padding:32px 24px 28px;}
}


/* ══════════════════════════════════════════════════
   SPONSORS
══════════════════════════════════════════════════ */
.sponsors { padding: 70px 0; text-align: center; }
.sponsors h2 { color: #49a6d8; font-size: clamp(22px, 3vw, 32px); }

.sponsor-logos {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.sponsor_image {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.sponsor_image:hover { filter: grayscale(0%); }


/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials { margin-top: 80px; text-align: center; }

.testimonial-grid {
  margin: 40px 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #e7b287;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: background 0.3s, transform 0.3s;
}
.testimonial-card:hover { background: #06202B; color: white; transform: translateY(-5px); }
.testimonial-card:hover .author-info strong { color: #2FC0EE; }
.testimonial-card:hover .author-info span   { color: #aaa; }

.test_text { font-size: 15px; line-height: 1.7; text-align: left; }

/* ── TESTIMONIAL AUTHOR (new) ── */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2FC0EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.9rem; color: #1a2a4a; }
.author-info span   { font-size: 0.78rem; color: #666; }


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  margin-top: 80px;
  background: #06202B;
  color: white;
  padding: 70px 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

footer h3 { margin-bottom: 16px; font-size: 18px; }

/* social icons */
.social-icons { margin-top: 20px; display: flex; gap: 14px; flex-wrap: wrap; }

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #247a9f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}
.social-icons a:hover { background: #f28c3c; transform: translateY(-3px); }

/* footer links */
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a,
.footlink { color: white; text-decoration: none; display: block; transition: color 0.2s; }
.footer-links ul a:hover,
.footlink:hover { color: #f28c3c; }

/* footer contact */
.footer-contact p { margin-bottom: 8px; font-size: 14px; line-height: 1.6; }

/* ── NEWSLETTER (updated for flex form) ── */
.newsletter { margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.newsletter h3 { margin-bottom: 16px; font-size: 16px; font-weight: 500; }

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  flex: 1;
  min-width: 180px;
  outline: none;
  transition: box-shadow 0.2s;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(251,150,62,0.4); }

.newsletter-form button {
  padding: 12px 28px;
  background: #FB963E;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #e07e2a; }

/* ── TABLET  (≤ 991px) ── */
@media (max-width: 991px) {

  /* hero */
  .hero {
    padding: 140px 30px 60px;
    min-height: 80vh;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .hero::before {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .hero-content { max-width: 100%; }

  /* navbar */
  .navbar { margin: 0 20px; height: auto; min-height: 70px; padding: 10px 0; top: 15px; border-radius: 20px; }
  .nav-inner { padding: 0 20px; }
  .logo img  { width: 130px !important; height: auto !important; }
  .navbar-nav { display: none; }
  .hamburger { display: block; }

  /* trust bar */
  .trust-bar { gap: 30px; padding: 16px 20px; }
  .trust-item strong { font-size: 1.3rem; }

  /* about */
  .about { grid-template-columns: 1fr; margin: 80px 30px 0; gap: 30px; }
  .about img { max-width: 360px; }
  .about-text { text-align: center; }
  .about h2  { font-size: 26px; }
  .about-text p { font-size: 15px; text-align: center; }
  .btn-blue  { display: block; margin: 20px auto 0; width: fit-content; }

  /* services */
  .services-grid { grid-template-columns: 1fr; margin: 30px 30px 0; }

  /* scholarship */
  .scholarship-grid { grid-template-columns: 1fr; margin: 0 30px; gap: 30px; text-align: center; }
  .grace_shoolarship { margin: 0 auto; max-width: 280px; }
  .schoolar_heading { font-size: 48px; text-align: center; }
  .scholar-text p { font-size: 15px; text-align: center; margin: 0 auto; }
  .btn-orange { margin: 20px auto 0; display: block; width: fit-content; }

  /* sponsors */
  .sponsor-logos { gap: 40px; }

  /* testimonials */
  .testimonial-grid { grid-template-columns: 1fr; margin: 30px 30px 0; }
  .testimonial-card { padding: 24px; }
  .test_text { font-size: 15px; }

  /* footer */
  footer { padding: 50px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-about { text-align: center; }
  .footer-links { text-align: center; }
  .footer-contact { text-align: center; }
  .social-icons { justify-content: center; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; min-width: unset; }
}

/* ── MOBILE  (≤ 575px) ── */
@media (max-width: 575px) {

  /* hero */
  .hero {
    padding: 120px 20px 50px;
    min-height: 70vh;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .hero::before {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .hero h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .btn-apply, .btn-learn-hero { text-align: center; width: 100%; }
  .accreditation-badge { font-size: 0.7rem; padding: 4px 12px; }

  /* navbar */
  .navbar { margin: 0 12px; border-radius: 16px; }
  .nav-inner { padding: 0 14px; }
  .logo img { width: 110px !important; }

  /* trust bar */
  .trust-bar { gap: 20px; padding: 14px 16px; }
  .trust-item strong { font-size: 1.1rem; }
  .trust-item span   { font-size: 0.75rem; }

  /* about */
  .about { margin: 60px 16px 0; gap: 20px; }
  .about img { max-width: 260px; }
  .about h2  { font-size: 22px; }
  .about-text p { font-size: 14px; }

  /* services */
  .services-grid { margin: 20px 16px 0; gap: 16px; }
  .service-card  { padding: 16px; }
  .card_text     { font-size: 14px; }
  .card_image    { height: 160px; }

  /* scholarship */
  .scholarship       { padding: 50px 0; }
  .scholarship-grid  { margin: 0 16px; gap: 20px; }
  .grace_shoolarship { max-width: 220px; }
  .schoolar_heading  { font-size: 32px; }
  .scholar-text p    { font-size: 14px; }

  /* sponsors */
  .sponsor-logos  { gap: 24px; }
  .sponsor_image  { width: 130px; }

  /* testimonials */
  .testimonial-grid { margin: 20px 16px 0; gap: 16px; }
  .testimonial-card { padding: 20px; }
  .test_text        { font-size: 14px; }
  .author-avatar    { width: 38px; height: 38px; font-size: 0.95rem; }
  .author-info strong { font-size: 0.82rem; }

  /* footer */
  footer { padding: 40px 16px; }
  .footer-grid { gap: 30px; }

  /* newsletter form */
  .newsletter { padding-top: 30px; }
}

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top{
  position:fixed;bottom:26px;right:26px;z-index:500;
  width:44px;height:44px;border-radius:50%;
  background:#f28c3c;color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:19px;line-height:1;cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .25s ease,transform .25s ease,visibility .25s ease,background .2s;
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:#e07e2a;}
@media(prefers-reduced-motion:reduce){.back-to-top{transition:none;}}
@media(max-width:575px){.back-to-top{width:40px;height:40px;bottom:18px;right:18px;font-size:16px;}}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ICON SYSTEM (self-hosted inline SVG, no icon fonts)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.icon{
  width:1em;height:1em;display:inline-block;
  fill:currentColor;vertical-align:-0.125em;
  flex-shrink:0;
}
.icon.fa-spin{animation:icon-spin 1s linear infinite;}
@keyframes icon-spin{100%{transform:rotate(360deg);}}

/* ══════════════════════════════════════════
   HERO IMAGE CAROUSEL (auto-rotating, no user controls)
══════════════════════════════════════════ */
.hero-carousel{position:absolute;inset:0;overflow:hidden;z-index:-1;}
.hero .hero-carousel{z-index:-1;}
.hero-carousel-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.8s ease-in-out;}
.hero-carousel-slide.active{opacity:1;}
@media (prefers-reduced-motion:reduce){.hero-carousel-slide{transition:none;}}
