
    /* =============================================
        HOMEPAGE
    ============================================= */
    :root {
      --gold:    #ffb600;
      --gold-dk: #e0a000;
      --navy:    #002e5b;
      --navy-lt: #0a3d6b;
      --dark:    #0d0d0d;
      --mid:     #1a1a2e;
      --gray-bg: #f5f6f8;
      --muted:   #777;
      --white:   #fff;
    }

    
    :root {
      --gold: #ffb600;
      --gold-dark: #e0a000;
      --navy: #002e5b;
      --dark: #0d0d0d;
      --mid: #1a1a2e;
      --light-gray: #f5f5f5;
      --text-muted: #777;
      --white: #fff;
    }


    /* ─── RESET / BASE ─────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: #fff; }

 
    /* ─── HEADER ───────────────────────────── */
    #header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 24px rgba(0,0,0,.1); }
    #header .bg-white { padding: 12px 0; }
    .site-navigation { background: var(--navy); }
    .navbar-dark .nav-link {
      color: rgba(255,255,255,.88) !important;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 20px 16px !important; transition: color .2s;
      position: relative;
    }
    .navbar-dark .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
      height: 3px; background: var(--gold);
      transform: scaleX(0); transition: transform .25s;
    }
    .navbar-dark .nav-link:hover::after,
    .navbar-dark .nav-item.active .nav-link::after { transform: scaleX(1); }
    .navbar-dark .nav-link:hover,
    .navbar-dark .nav-item.active .nav-link { color: var(--gold) !important; }
    .dropdown-menu { border: none; border-top: 3px solid var(--gold); border-radius: 0 0 4px 4px; box-shadow: 0 8px 30px rgba(0,0,0,.15); }
    .dropdown-item { font-size: 13px; font-weight: 600; padding: 10px 20px; }
    .dropdown-item:hover { background: var(--gold); color: #fff; }

    /* info boxes in header */
    .info-box-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin: 0; line-height: 1; }
    .info-box-subtitle { font-size: 15px; font-weight: 700; color: #212121; margin: 3px 0 0; line-height: 1; font-family: 'Montserrat', sans-serif; }
    .top-info-box { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: flex-end; gap: 32px; }
    .header-get-a-quote .btn-cta {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 12px;
      letter-spacing: 1.5px; text-transform: uppercase;
      border: none; border-radius: 3px;
      padding: 13px 24px; transition: background .2s, transform .15s;
      display: inline-block;
    }
    .header-get-a-quote .btn-cta:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

    /* ─── HERO SLIDER ──────────────────────── */
    .hero-slider { position: relative; margin: 0; }
    .hero-slider.slick-slider { margin: 0; }
    .hero-slide {
      position: relative;
      height: 70vh; min-height: 500px;
      display: flex !important; align-items: center;
      overflow: hidden;
    }
    .hero-slide .slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.06);
      transition: transform 8s ease;
    }
    .slick-active .slide-bg { transform: scale(1); }
    .hero-slide .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(100deg, rgba(0,20,46,.88) 0%, rgba(0,46,91,.6) 50%, rgba(0,0,0,.3) 100%);
    }
    .hero-slide .slide-content {
      position: relative; z-index: 2;
      width: 100%;
    }
    .slide-eyebrow {
      display: inline-block;
      background: var(--gold);
      color: #000;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 5px 14px; margin-bottom: 22px;
      opacity: 0; transform: translateY(20px);
      transition: opacity .6s .2s, transform .6s .2s;
    }
    .slick-active .slide-eyebrow { opacity: 1; transform: none; }
    .slide-headline {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(40px, 6vw, 76px);
      font-weight: 900; line-height: 1.02;
      letter-spacing: -2px; color: #fff;
      margin-bottom: 18px;
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s .35s, transform .7s .35s;
    }
    .slick-active .slide-headline { opacity: 1; transform: none; }
    .slide-headline em { color: var(--gold); font-style: normal; }
    .slide-sub {
      font-size: 17px; color: rgba(255,255,255,.75);
      max-width: 580px; line-height: 1.7; margin-bottom: 36px;
      opacity: 0; transform: translateY(20px);
      transition: opacity .7s .5s, transform .7s .5s;
    }
    .slick-active .slide-sub { opacity: 1; transform: none; }
    .slide-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      transition: opacity .7s .65s, transform .7s .65s;
    }
    .slick-active .slide-actions { opacity: 1; transform: none; }
    .btn-hero-primary {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 15px 30px; border: none; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 9px;
      transition: background .2s, transform .15s;
    }
    .btn-hero-primary:hover { background: #fff; color: #000; transform: translateY(-2px); text-decoration: none; }
    .btn-hero-outline {
      background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 14px 28px; border: 2px solid rgba(255,255,255,.5);
      border-radius: 3px; display: inline-flex; align-items: center; gap: 9px;
      transition: border-color .2s, color .2s, background .2s;
    }
    .btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

    /* Slider dots */
    .hero-slider .slick-dots { bottom: 28px; }
    .hero-slider .slick-dots li button:before { color: rgba(255,255,255,.5); font-size: 10px; }
    .hero-slider .slick-dots li.slick-active button:before { color: var(--gold); }

    /* Slide counter */
    .slide-counter {
      position: absolute; bottom: 30px; right: 40px;
      color: rgba(255,255,255,.5); font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 700; z-index: 10; letter-spacing: 2px;
    }
    .slide-counter span { color: var(--gold); }

    /* ─── MARQUEE STRIP ────────────────────── */
    .marquee-strip {
      background: var(--gold);
      margin: 0; padding: 0; overflow: hidden;
      border-bottom: 3px solid var(--gold-dk);
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      white-space: nowrap;
      padding: 14px 40px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: #000;
      display: flex; align-items: center; gap: 14px;
    }
    .marquee-item::after {
      content: '✦'; font-size: 8px; color: rgba(0,0,0,.35);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION HELPERS ──────────────────── */
    .section-label {
      font-size: 11px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .section-heading {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900; color: var(--dark);
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1.5px; line-height: 1.08;
      margin-bottom: 0;
    }
    .section-heading em { color: var(--gold); font-style: normal; }

    /* ─── CTA BANNER ───────────────────────── */
    .cta-banner {
      background: var(--navy);
      padding: 0;
      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'%3E%3Cg fill='%23ffb600' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner .container { position: relative; z-index: 1; }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; padding: 36px 0; flex-wrap: wrap; gap: 20px; }
    .cta-text h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin: 0; letter-spacing: -.5px; }
    .cta-text p { color: rgba(255,255,255,.6); margin: 4px 0 0; font-size: 14px; }
    .btn-cta-white {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 15px 32px; border: none; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background .2s, transform .15s; white-space: nowrap;
    }
    .btn-cta-white:hover { background: #fff; text-decoration: none; transform: translateY(-2px); }

    /* ─── ABOUT SECTION ────────────────────── */
    .about-section { padding: 90px 0; background: #fff; }
    .about-image-wrap { position: relative; }
    .about-image-wrap img { width: 100%; border-radius: 6px; display: block; }
    .about-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--gold);
      color: #000;
      font-family: 'Montserrat', sans-serif;
      text-align: center;
      width: 130px; height: 130px;
      border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 10px 30px rgba(255,182,0,.35);
    }
    .about-badge .num { font-size: 40px; font-weight: 900; line-height: 1; }
    .about-badge .lbl { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.3; }
    .about-body { padding-left: 50px; }
    @media(max-width:991px){ .about-body { padding-left: 0; padding-top: 40px; } }
    .about-body .section-heading { margin-bottom: 20px; }
    .about-body p { color: #666; line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
    .pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
    .pillar-card {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px; border: 1.5px solid #ebebeb; border-radius: 5px;
      transition: border-color .2s, box-shadow .2s;
    }
    .pillar-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(255,182,0,.12); }
    .pillar-icon { color: var(--gold); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
    .pillar-card h5 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--dark); margin: 0 0 2px; }
    .pillar-card p { font-size: 12px; color: var(--muted); margin: 0; line-height: 1.5; }

    /* ─── STATS COUNTER ────────────────────── */
    .stats-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
      padding: 80px 0;
      position: relative; overflow: hidden;
    }
    .stats-section::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-block { text-align: center; position: relative; }
    .stat-block + .stat-block::before {
      content: '';
      position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      width: 1px; height: 60%; background: rgba(255,182,0,.2);
    }
    .stat-num-large {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(48px, 7vw, 72px);
      font-weight: 900; color: var(--gold);
      line-height: 1; margin-bottom: 4px;
    }
    .stat-suffix { font-size: 0.6em; }
    .stat-title-large { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); }

    /* ─── SERVICES ─────────────────────────── */
    .services-section { padding: 90px 0; background: var(--gray-bg); }
    .service-card {
      background: #fff;
      border-radius: 6px;
      padding: 40px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      border: 1px solid #ebebeb;
    }
    .service-card::after {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 4px; background: var(--gold);
      transform: scaleY(0); transform-origin: top;
      transition: transform .3s;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
    .service-card:hover::after { transform: scaleY(1); }
    .service-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 52px; font-weight: 900;
      color: rgba(255,182,0,.12);
      line-height: 1; margin-bottom: 16px;
      letter-spacing: -2px;
    }
    .service-icon-wrap {
      width: 56px; height: 56px;
      background: #fff8e6; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 22px; margin-bottom: 20px;
      transition: background .2s, color .2s;
    }
    .service-card:hover .service-icon-wrap { background: var(--gold); color: #fff; }
    .service-card h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px; font-weight: 800;
      text-transform: uppercase; letter-spacing: .5px;
      color: var(--dark); margin-bottom: 12px;
    }
    .service-card p { color: #666; font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
    .service-link {
      color: var(--gold); font-size: 12px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 8px;
      transition: gap .2s, color .2s;
    }
    .service-link:hover { color: var(--navy); gap: 12px; text-decoration: none; }

    /* ─── VALUES PRAISE ────────────────────── */
    .values-section { padding: 90px 0; background: #fff; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
    @media(max-width:767px){ .values-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:480px){ .values-grid { grid-template-columns: 1fr; } }
    .value-card {
      padding: 32px 28px;
      border: 1.5px solid #ebebeb;
      border-radius: 6px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .value-card::before {
      content: attr(data-letter);
      position: absolute;
      top: -10px; right: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 90px; font-weight: 900;
      color: rgba(255,182,0,.08);
      line-height: 1;
      pointer-events: none;
    }
    .value-card:hover { border-color: var(--gold); box-shadow: 0 12px 36px rgba(255,182,0,.12); transform: translateY(-4px); }
    .value-letter {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 900;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }
    .value-card h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px; font-weight: 900;
      text-transform: uppercase; letter-spacing: .5px;
      color: var(--dark); margin-bottom: 10px;
    }
    .value-card p { font-size: 13px; color: #666; line-height: 1.7; margin: 0; }

    /* ─── PARTNERS ─────────────────────────── */
    .partners-section { padding: 70px 0; background: var(--gray-bg); }
    .partners-track-wrap { overflow: hidden; position: relative; margin-top: 40px; }
    .partners-track-wrap::before,
    .partners-track-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    }
    .partners-track-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-bg), transparent); }
    .partners-track-wrap::after { right: 0; background: linear-gradient(to left, var(--gray-bg), transparent); }
    .partners-track { display: flex; gap: 0; animation: marquee 28s linear infinite; width: max-content; }
    .partner-logo {
      width: 180px; height: 80px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 20px;
      filter: grayscale(1) opacity(.5);
      transition: filter .3s;
    }
    .partner-logo:hover { filter: grayscale(0) opacity(1); }
    .partner-logo img { max-width: 130px; max-height: 60px; object-fit: contain; }

    /* ─── FINAL CTA ────────────────────────── */
    .final-cta {
      background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('/images/image-bank/cta2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding:80px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
    .final-cta::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      top: -200px; left: -100px;
    }
    .final-cta::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(0,0,0,.05);
      bottom: -200px; right: -80px;
    }
    .final-cta .container { position: relative; z-index: 1; }
    .final-cta h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: #ffffff; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.05; }
    .final-cta p { color:white; font-size: 16px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .btn-final {
      background: #000; color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 17px 40px; border: none; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background .2s, transform .15s;
    }
    .btn-final:hover { background: var(--gold); color: #000; transform: translateY(-3px); text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
    .btn-final-outline {
      background: transparent; color: #ffb600;
      border: 2px solid #ffb600;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 15px 36px; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 10px;
      margin-left: 14px;
      transition: border-color .2s, transform .15s;
    }
    .btn-final-outline:hover { color: white; border-color: white; transform: translateY(-3px); text-decoration: none; }

    /* ─── FOOTER ───────────────────────────── */
    #footer { background: var(--dark); }
    .footer-main { padding: 64px 0 40px; }
    .widget-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: #fff; margin-bottom: 22px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--gold);
      display: inline-block;
    }
    .footer-about p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.8; margin-top: 14px; }
    .footer-social ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 10px; }
    .footer-social ul li a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.07);
      border-radius: 50%; display: flex;
      align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: 13px;
      transition: background .2s, color .2s;
    }
    .footer-social ul li a:hover { background: var(--gold); color: #000; }
    .working-hours { color: rgba(255,255,255,.55); font-size: 14px; line-height: 2.2; }
    .working-hours span { color: var(--gold); }
    .list-arrow { list-style: none; padding: 0; margin: 0; }
    .list-arrow li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .list-arrow li:last-child { border-bottom: none; }
    .list-arrow li::before { content: '→'; color: var(--gold); margin-right: 8px; font-size: 13px; }
    .list-arrow li a { color: rgba(255,255,255,.55); font-size: 14px; transition: color .2s; }
    .list-arrow li a:hover { color: var(--gold); text-decoration: none; }
    .copyright { padding: 18px 0; }
    .copyright-info { color: #fff; font-size: 13px; }
    .copyright-info a { color: var(--white); }
    #back-to-top { bottom: 28px; right: 28px; z-index: 999; }
    #back-to-top button {
      background: var(--gold); border: none;
      border-radius: 4px; width: 40px; height: 40px;
      color: #000; font-size: 15px; cursor: pointer;
      transition: background .2s;
    }
    #back-to-top button:hover { background: var(--navy); color: #fff; }

    /* ─── ANIMATIONS ───────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; }
    .reveal.visible { animation: fadeUp .7s ease forwards; }
    .reveal.delay-1 { animation-delay: .1s; }
    .reveal.delay-2 { animation-delay: .22s; }
    .reveal.delay-3 { animation-delay: .34s; }
    .reveal.delay-4 { animation-delay: .46s; }

    @media(max-width:767px){
      .stat-block + .stat-block::before { display: none; }
      .pillars-grid { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; text-align: center; }
    }

    /* =============================================
        CONTACT PAGE 
    ============================================= */
    /* ── Hero Banner ─────────────────────────── */
    .contact-hero {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 60%, #16213e 100%);
    }
    .contact-hero::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='%23ffb600' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .contact-hero::after {
      content: '';
      position: absolute;
      right: -80px; top: -80px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,182,0,0.12) 0%, transparent 70%);
    }
    .hero-content { position: relative; z-index: 2; padding: 80px 0; }
    .hero-eyebrow {
      display: inline-block;
      background: var(--gold);
      color: #000;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 14px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-size: clamp(42px, 6vw, 72px);
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 16px;
    }
    .hero-title span { color: var(--gold); }
    .hero-subtitle { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 500px; margin-bottom: 30px; }
    .breadcrumb { background: transparent; padding: 0; }
    .breadcrumb-item a, .breadcrumb-item { color: rgba(255,255,255,0.5); font-size: 13px; }
    .breadcrumb-item.active { color: var(--gold); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    /* ── Quick-stat strip ────────────────────── */
    .stat-strip {
      background: var(--navy);
      padding: 0;
    }
    .stat-strip .container { display: flex; }
    .stat-item {
      flex: 1;
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid rgba(0,0,0,0.1);
      transition: background .2s;
    }
    .stat-item:last-child { border-right: none; }
    
    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 32px;
      font-weight: 900;
      color: #000;
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(0,0,0,0.65); }

    /* ── Contact cards ───────────────────────── */
    .contact-cards-section { padding: 80px 0 60px; background: #fff; }
    .section-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .section-heading {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(28px, 4vw, 44px);
      color: var(--dark);
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 0;
    }
    .section-heading em { color: var(--gold); font-style: normal; }

    .contact-card {
      position: relative;
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: 6px;
      padding: 40px 30px;
      height: 100%;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .contact-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }
    .contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
    .contact-card:hover::before { transform: scaleX(1); }
    .card-icon {
      width: 64px; height: 64px;
      background: #fff8e6;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      font-size: 22px;
      color: var(--gold);
      transition: background .3s, color .3s;
    }
    .contact-card:hover .card-icon { background: var(--gold); color: #fff; }
    .card-label { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
    .card-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: -.3px; }
    .card-info { font-size: 15px; color: #555; line-height: 1.7; }
    .card-info a { color: var(--gold); font-weight: 600; }
    .card-info a:hover { color: var(--navy); }

    /* ── Split layout: Form + Info ───────────── */
    .contact-split { padding: 80px 0; background: var(--light-gray); }
    .form-panel {
      background: #fff;
      border-radius: 8px;
      padding: 50px 45px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }
    .form-panel h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px; font-weight: 900;
      color: var(--dark);
      letter-spacing: -1px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .form-panel p { color: var(--text-muted); margin-bottom: 32px; }

    .custom-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 8px;
      display: block;
    }
    .custom-input {
      width: 100%;
      border: 1.5px solid #e0e0e0;
      border-radius: 4px;
      padding: 14px 18px;
      font-size: 14px;
      color: #333;
      background: #fafafa;
      transition: border-color .2s, background .2s, box-shadow .2s;
      outline: none;
      font-family: 'Open Sans', sans-serif;
      margin-bottom: 22px;
    }
    .custom-input:focus {
      border-color: var(--gold);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255,182,0,0.1);
    }
    textarea.custom-input { resize: vertical; min-height: 140px; }

    .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
    @media (max-width: 576px) { .input-row { grid-template-columns: 1fr; } }

    .btn-send {
      background: var(--gold);
      color: #000;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      padding: 16px 36px;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-send:hover { background: #000; color: #fff; transform: translateY(-2px); }
    .btn-send i { font-size: 14px; }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-success .check { font-size: 56px; color: var(--gold); margin-bottom: 16px; }
    .form-success h4 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); }

    /* Info panel */
    .info-panel { padding: 0 0 0 40px; }
    @media (max-width: 991px) { .info-panel { padding: 50px 0 0; } }
    .info-panel-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px; font-weight: 900;
      color: var(--dark);
      letter-spacing: -1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .info-panel > p { color: var(--text-muted); margin-bottom: 36px; }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 24px 0;
      border-bottom: 1px solid #e8e8e8;
    }
    .info-item:first-of-type { border-top: 1px solid #e8e8e8; }
    .info-icon-wrap {
      flex-shrink: 0;
      width: 48px; height: 48px;
      background: var(--gold);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      color: #000;
    }
    .info-text-wrap h5 {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .info-text-wrap p { color: var(--dark); font-size: 15px; font-weight: 600; margin: 0; line-height: 1.5; }

    .hours-box {
      margin-top: 32px;
      background: var(--navy);
      border-radius: 6px;
      padding: 28px 28px 24px;
      position: relative;
      overflow: hidden;
    }
    .hours-box::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(255,182,0,0.15);
    }
    .hours-box h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px; font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hours-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
    .hours-row span { color: rgba(255,255,255,0.7); font-size: 14px; }
    .hours-row .time { color: #fff; font-weight: 600; }
    .closed { color: #ff6b6b !important; }

    /* ── Map section ─────────────────────────── */
    .map-section { position: relative; }
    .map-header {
      background: var(--navy);
      padding: 50px 0 80px;
      text-align: center;
    }
    .map-header .section-label { color: rgba(255,182,0,0.8); }
    .map-header .section-heading { color: #fff; }
    .map-header .section-heading em { color: var(--gold); }
    .map-wrapper {
      position: relative;
      margin-top: -40px;
      padding: 0 15px 80px;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 460px;
      border: none;
      border-radius: 8px;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    /* ── Animations ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-up { animation: fadeUp .7s ease forwards; }
    .delay-1 { animation-delay: .1s; opacity: 0; }
    .delay-2 { animation-delay: .22s; opacity: 0; }
    .delay-3 { animation-delay: .34s; opacity: 0; }
    .delay-4 { animation-delay: .46s; opacity: 0; }

    @media (max-width: 767px) {
      .stat-strip .container { flex-wrap: wrap; }
      .stat-item { flex: 0 0 50%; border-right: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
      .form-panel { padding: 35px 25px; }
    }

    
    /* =====================================================
       ABOUT PAGE — Bopang Consulting (Spiced Up)
    ===================================================== */

    /* Scroll reveal */
    .sr { opacity:0; transform:translateY(36px); transition:opacity .7s ease, transform .7s ease; }
    .sr.from-left  { transform:translateX(-40px); }
    .sr.from-right { transform:translateX(40px); }
    .sr.scale-in   { transform:scale(0.92); }
    .sr.visible    { opacity:1; transform:translate(0,0) scale(1); }

    /* ── BANNER ── */
    #banner-area {
      position:relative; overflow:hidden;
      background-image: linear-gradient(rgba(0, 20, 50, 0.415), rgba(0,0,0,0.52)),
                        url('/images/image-bank/humans.jpg') !important;
      background-size:cover !important;
      background-attachment:fixed !important;
      background-position:center center !important;
      height:550px !important;
    }
    #banner-area::after {
      content:''; position:absolute; bottom:-1px; left:0; right:0;
      height:60px; background:#fff;
      clip-path:polygon(0 100%, 100% 100%, 100% 0);
    }
    /* floating particles on banner */
    .banner-particles span {
      position:absolute; border-radius:50%;
      background:rgba(255,182,0,0.1);
      animation:floatUp linear infinite; pointer-events:none;
    }
    @keyframes floatUp {
      0%   { transform:translateY(0) scale(1); opacity:.5; }
      100% { transform:translateY(-120vh) scale(1.3); opacity:0; }
    }
    .banner-title {
      font-family:'Barlow Condensed','Montserrat',sans-serif !important;
      font-size:72px !important; font-weight:900 !important;
      letter-spacing:-2px; text-transform:uppercase;
      animation:fadeDown .7s ease both;
    }
    .banner-text .breadcrumb { animation:fadeDown .7s .2s ease both; }
    @keyframes fadeDown { from{opacity:0;transform:translateY(-16px);} to{opacity:1;transform:translateY(0);} }

    /* ── WHO WE ARE ── */
    .about-who { padding:80px 0 60px; }
    .about-who .pre-label {
      display:inline-block; background:#ffb600; color:#fff;
      font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700;
      letter-spacing:3px; text-transform:uppercase;
      padding:4px 14px; border-radius:2px; margin-bottom:14px;
    }
    .about-who h2 {
      font-family:'Barlow Condensed','Montserrat',sans-serif;
      font-size:46px; font-weight:900; color:#212121;
      text-transform:uppercase; letter-spacing:-1px;
      margin-bottom:18px; line-height:1;
    }
    .about-who h2 span { color:#ffb600; }
    .about-who p { font-size:15px; color:#555; line-height:28px; margin-bottom:16px; }

    /* Blockquote reimagined */
    .about-quote {
      position:relative; margin:28px 0;
      padding:24px 28px 24px 36px;
      background:linear-gradient(135deg,#002e5b,#003f7f);
      border-radius:4px; overflow:hidden;
    }
    .about-quote::before {
      content:'\201C';
      position:absolute; top:-10px; left:12px;
      font-size:100px; color:rgba(255,182,0,0.2);
      font-family:Georgia,serif; line-height:1;
    }
    .about-quote p {
      position:relative; z-index:1;
      font-size:15px !important; color:#fff !important;
      font-style:italic; line-height:26px !important;
      margin:0 !important;
    }

    /* Right column — image stack */
    .about-img-stack { position:relative; }
    .about-img-main {
      width:100%; height:420px; object-fit:cover;
      border-radius:4px;
      box-shadow:0 16px 48px rgba(0,0,0,0.15);
    }
    .about-img-badge {
      position:absolute; bottom:-20px; left:-20px;
      background:linear-gradient(135deg,#ffb600,#e09000);
      padding:22px 28px; border-radius:4px;
      box-shadow:0 8px 28px rgba(255,182,0,0.4);
    }
    .about-img-badge .num {
      font-family:'Barlow Condensed',sans-serif;
      font-size:42px; font-weight:900; color:#fff;
      line-height:1; display:block;
    }
    .about-img-badge .lbl {
      font-family:'Montserrat',sans-serif;
      font-size:10px; font-weight:700; color:rgba(255,255,255,0.85);
      text-transform:uppercase; letter-spacing:1.5px;
    }
    .about-accred {
      position:absolute; top:20px; right:-16px;
      background:#002e5b; color:#fff;
      font-family:'Montserrat',sans-serif;
      font-size:10px; font-weight:700;
      text-transform:uppercase; letter-spacing:1.5px;
      padding:10px 16px; border-radius:2px;
      border-left:3px solid #ffb600;
      box-shadow:0 4px 16px rgba(0,0,0,0.2);
    }
    @media(max-width:991px){
      .about-img-badge { left:0; bottom:-16px; }
      .about-accred { right:0; }
      .about-img-main { height:300px; }
    }

    /* ── MISSION / VISION ── */
    .mv-section { padding:80px 0; background:#f4f7fb; position:relative; overflow:hidden; }
    .mv-section::before {
      content:''; position:absolute; top:-80px; right:-80px;
      width:400px; height:400px; border-radius:50%;
      background:rgba(255,182,0,0.06); pointer-events:none;
    }
    .mv-section::after {
      content:''; position:absolute; bottom:-60px; left:-60px;
      width:300px; height:300px; border-radius:50%;
      background:rgba(0,46,91,0.05); pointer-events:none;
    }
    .section-eyebrow {
      display:inline-block; background:#ffb600; color:#fff;
      font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700;
      letter-spacing:3px; text-transform:uppercase;
      padding:4px 14px; border-radius:2px; margin-bottom:14px;
    }
    .section-heading {
      font-family:'Barlow Condensed','Montserrat',sans-serif;
      font-size:42px; font-weight:900; color:#212121;
      text-transform:uppercase; letter-spacing:-1px; line-height:1;
      margin-bottom:10px;
    }
    .section-heading span { color:#ffb600; }
    .section-sub { color:#666; font-size:15px; max-width:520px; line-height:26px; margin:0 auto; }

    .mv-card {
      background:#fff; border-radius:6px;
      padding:40px 36px; height:100%;
      box-shadow:0 4px 20px rgba(0,0,0,0.06);
      border-top:4px solid transparent;
      transition:border-color .3s, box-shadow .3s, transform .3s;
      position:relative; overflow:hidden;
    }
    .mv-card:hover {
      border-top-color:#ffb600;
      box-shadow:0 16px 44px rgba(0,0,0,0.12);
      transform:translateY(-6px);
    }
    .mv-card::after {
      content:'';
      position:absolute; bottom:0; left:0; right:0; height:3px;
      background:linear-gradient(to right,#ffb600,transparent);
      transform:scaleX(0); transform-origin:left;
      transition:transform .4s ease;
    }
    .mv-card:hover::after { transform:scaleX(1); }
    .mv-icon-wrap {
      width:60px; height:60px;
      background:linear-gradient(135deg,#ffb600,#ffb600);
      border-radius:50%; display:flex; align-items:center;
      justify-content:center; margin-bottom:20px;
    }
    .mv-icon-wrap i { color:white; font-size:22px; }
    .mv-card h3 {
      font-family:'Montserrat',sans-serif;
      font-size:16px; font-weight:800;
      text-transform:uppercase; letter-spacing:0.5px;
      color:#002e5b; margin-bottom:14px;
    }
    .mv-card p { font-size:14px; color:#666; line-height:26px; margin:0; }

    /* ── CORE VALUES ── */
    .values-section { padding:80px 0; background:#fff; }
    .val-card {
      position:relative; overflow:hidden;
      background:#fff;
      border:1px solid #e8e8e8;
      border-radius:4px;
      padding:36px 28px 28px;
      height:100%;
      transition:border-color .3s, box-shadow .3s, transform .3s;
    }
    .val-card:hover {
      border-color:#ffb600;
      box-shadow:0 12px 40px rgba(0,0,0,0.1);
      transform:translateY(-6px);
    }
    /* diagonal gold corner */
    .val-card::before {
      content:''; position:absolute; top:0; right:0;
      width:0; height:0;
      border-style:solid;
      border-width:0 0 0 0;
      border-color:transparent #ffb600 transparent transparent;
      transition:border-width .3s ease;
    }
    .val-card:hover::before { border-width:0 40px 40px 0; }
    .val-num {
      font-family:'Barlow Condensed',sans-serif;
      font-size:56px; font-weight:900;
      color:rgba(255,182,0,0.18); line-height:1;
      margin-bottom:8px; display:block;
      transition:color .3s;
    }
    .val-card:hover .val-num { color:rgba(255,182,0,0.35); }
    .val-card h4 {
      font-family:'Montserrat',sans-serif;
      font-size:13px; font-weight:800;
      text-transform:uppercase; letter-spacing:2px;
      color:#212121; margin-bottom:12px;
    }
    .val-divider {
      width:36px; height:3px; background:#ffb600; margin-bottom:14px;
      transition:width .3s ease;
    }
    .val-card:hover .val-divider { width:56px; }
    .val-desc { font-size:13px; color:#666; line-height:22px; margin:0; }

    /* ── STATS STRIP ── */
    .stats-strip {
      background:linear-gradient(135deg,#001e3c,#002e5b 55%,#003f7f);
      padding:60px 0; position:relative; overflow:hidden;
    }
    .stats-strip::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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-item { text-align:center; }
    .stat-num {
      font-family:'Barlow Condensed',sans-serif;
      font-size:54px; font-weight:900; color:#ffb600;
      line-height:1; display:block;
    }
    .stat-label {
      font-family:'Montserrat',sans-serif;
      font-size:11px; font-weight:600;
      text-transform:uppercase; letter-spacing:1.5px;
      color:rgba(255,255,255,0.6); margin-top:6px; display:block;
    }
    .stat-divider {
      width:1px; background:rgba(255,255,255,0.12); height:60px; margin:auto;
    }
    @media(max-width:767px){ .stat-divider{display:none;} }

    /* ── FAQ ── */
    .faq-section { padding:80px 0; background:#f4f7fb; }
    .faq-section .accordion-classic .card { border:1px solid #e8e8e8; margin-bottom:8px; border-radius:4px !important; overflow:hidden; }
    .faq-section .accordion-classic .card .btn { font-family:'Montserrat',sans-serif; font-weight:700; font-size:14px; color:#212121; padding:16px 20px; }
    .faq-section .accordion-classic .card .btn:hover { color:#ffb600; }
    .faq-section .accordion-classic .card-body { font-size:14px; color:#666; line-height:26px; padding:0 20px 20px; }

    /* CTA bottom */
    .about-cta {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0, 0, 0, 0.551)),
    url('/images/image-bank/cta1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding:80px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
    .about-cta::before {
      content:'PRAIZE'; position:absolute; left:50%; top:50%;
      transform:translate(-50%,-50%);
      font-family:'Barlow Condensed',sans-serif;
      font-size:240px; font-weight:900;
      color:rgba(255,255,255,0.02); white-space:nowrap;
      pointer-events:none; letter-spacing:-8px;
    }
    .about-cta .pre-label { background:rgba(255,182,0,0.15); color:#ffb600; border:1px solid rgba(255,182,0,0.35); }
    .about-cta h2 {
      font-family:'Barlow Condensed','Montserrat',sans-serif;
      font-size:50px; font-weight:900; color:#fff;
      text-transform:uppercase; letter-spacing:-1px;
      margin-bottom:14px; line-height:1.05;
    }
    .about-cta h2 span { color:#ffb600; }
    .about-cta p { color:rgba(255,255,255,0.62); font-size:15px; max-width:480px; margin:0 auto 34px; line-height:26px; }
    .btn-outline-gold {
      display:inline-block; padding:11px 28px;
      border:2px solid rgba(255,255,255,0.3); color:#fff;
      font-family:'Montserrat',sans-serif;
      font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px;
      text-decoration:none; border-radius:2px; margin-left:10px;
      transition:border-color .25s, color .25s, background .25s;
    }
    .btn-outline-gold:hover { border-color:#ffb600; color:#ffb600; background:rgba(255,182,0,0.08); }

    @media(max-width:576px){
      .banner-title { font-size:44px !important; }
      .about-who h2 { font-size:34px; }
      .section-heading { font-size:30px; }
      .about-cta h2 { font-size:34px; }
      .btn-outline-gold { margin-left:0; margin-top:10px; }
    }


    /* =====================================================
       Services Page — Spiced Up
    ===================================================== */

    /* Scroll reveal */
    .sr {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .sr.from-left  { transform: translateX(-40px); }
    .sr.from-right { transform: translateX(40px); }
    .sr.visible    { opacity: 1; transform: translate(0,0); }

    /* Banner */
    #banner-area { position: relative; overflow: hidden; }
    #banner-area::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
      background: #fff;
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
    }
    .banner-title {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif !important;
      font-size: 68px !important; font-weight: 900 !important;
      letter-spacing: -1px; text-transform: uppercase;
    }

    /* Capability strip */
    .cap-strip { background: #002e5b; position: relative; z-index: 2; }
    .cap-strip-inner { display: flex; align-items: stretch; }
    .cap-item {
      flex: 1; padding: 20px 18px;
      display: flex; align-items: center; gap: 12px;
      border-right: 1px solid rgba(255,255,255,0.1);
      transition: background .25s;
    }
    .cap-item:last-child { border-right: none; }
    .cap-item:hover { background: rgba(255,182,0,0.1); }
    .cap-icon {
      width: 40px; height: 40px; background: rgba(255,182,0,0.15);
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .cap-icon i { color: #ffb600; font-size: 15px; }
    .cap-text strong {
      display: block; font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700; color: #fff;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .cap-text span { font-size: 11px; color: rgba(255,255,255,0.5); }
    @media(max-width:767px){ .cap-strip-inner { flex-wrap: wrap; } .cap-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); } }
    @media(max-width:480px){ .cap-item { flex: 0 0 100%; } }

    /* Section intro */
    .services-intro { padding: 72px 0 16px; text-align: center; }
    .pre-label {
      display: inline-block; background: #ffb600; color: #fff;
      font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 4px 14px; border-radius: 2px; margin-bottom: 14px;
    }
    .services-intro h2 {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-size: 50px; font-weight: 900; color: #212121;
      text-transform: uppercase; letter-spacing: -1.5px;
      margin-bottom: 12px; line-height: 1;
    }
    .services-intro h2 span { color: #ffb600; }
    .services-intro p { color: #666; font-size: 15px; max-width: 540px; margin: 0 auto; line-height: 26px; }

    /* Service cards */
    .services-grid { padding: 50px 0 80px; }

    .svc-card {
      position: relative; background: #fff;
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: box-shadow .35s, transform .35s;
      height: 100%; display: flex; flex-direction: column;
    }
    .svc-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,0.16); transform: translateY(-10px); }

    .svc-img-wrap { position: relative; height: 230px; overflow: hidden; flex-shrink: 0; }
    .svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
    .svc-card:hover .svc-img-wrap img { transform: scale(1.07); }

    .svc-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 25%, rgba(0,20,50,0.88) 100%);
    }

    /* Large BG number */
    .svc-num {
      position: absolute; top: 10px; left: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 80px; font-weight: 900;
      color: rgba(255,255,255,0.09); line-height: 1;
      pointer-events: none;
      transition: color .35s;
      user-select: none;
    }
    .svc-card:hover .svc-num { color: rgba(255,182,0,0.2); }

    /* Gold bottom bar that slides in */
    .svc-accent {
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(to right, #ffb600, #e09000);
      transform: scaleX(0); transform-origin: left;
      transition: transform .45s ease;
    }
    .svc-card:hover .svc-accent { transform: scaleX(1); }

    /* Badge on image */
    .svc-badge {
      position: absolute; bottom: 16px; left: 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 2px;
      color: #fff; background: #ffb600;
      padding: 4px 12px; border-radius: 2px;
    }

    /* Card body */
    .svc-body { padding: 26px 24px 20px; flex: 1; display: flex; flex-direction: column; }
    .svc-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px; font-weight: 800;
      text-transform: uppercase; letter-spacing: -0.2px;
      margin-bottom: 10px;
    }
    .svc-body h3 a { color: #212121; text-decoration: none; transition: color .2s; }
    .svc-body h3 a:hover { color: #ffb600; }
    .svc-body p { font-size: 14px; color: #666; line-height: 24px; margin-bottom: 18px; flex: 1; }

    /* Sub-service chips */
    .svc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
    .svc-chip {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.4px;
      color: #002e5b; background: #eef3fa;
      padding: 4px 10px; border-radius: 3px;
      transition: background .25s, color .25s;
    }
    .svc-card:hover .svc-chip { background: #fff7e0; color: #996600; }

    /* Card footer */
    .svc-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px;
      background: #f9f9f9; border-top: 1px solid #eee;
      flex-shrink: 0;
    }
    .svc-count {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 600;
      color: #aaa; text-transform: uppercase; letter-spacing: 0.8px;
    }
    .svc-count strong { color: #ffb600; font-size: 15px; margin-right: 4px; }
    .svc-btn {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      color: #002e5b; text-decoration: none;
      border-bottom: 2px solid #ffb600; padding-bottom: 1px;
      transition: color .2s;
    }
    .svc-btn i { font-size: 10px; transition: transform .2s; }
    .svc-btn:hover { color: #ffb600; }
    .svc-btn:hover i { transform: translateX(4px); }

    /* Bottom CTA */
    .services-cta {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('/images/image-bank/cta1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

    .services-cta::before {
      content: 'BOPANG';
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 220px; font-weight: 900;
      color: rgba(255,255,255,0.025);
      white-space: nowrap; pointer-events: none; letter-spacing: -5px;
    }
    .services-cta .pre-label {
      background: rgba(255,182,0,0.15);
      color: #ffb600; border: 1px solid rgba(255,182,0,0.35);
    }
    .services-cta h2 {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-size: 50px; font-weight: 900; color: #fff;
      text-transform: uppercase; letter-spacing: -1px;
      margin-bottom: 12px; line-height: 1.05;
    }
    .services-cta h2 span { color: #ffb600; }
    .services-cta p { color: rgba(255,255,255,0.62); font-size: 15px; max-width: 480px; margin: 0 auto 34px; line-height: 26px; }
    .services-cta .btn-outline-white {
      display: inline-block; padding: 11px 28px;
      border: 2px solid rgba(255,255,255,0.3); color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      text-decoration: none; border-radius: 2px; margin-left: 10px;
      transition: border-color .25s, color .25s, background .25s;
    }
    .services-cta .btn-outline-white:hover { border-color: #ffb600; color: #ffb600; background: rgba(255,182,0,0.08); }

    @media(max-width:576px){
      .banner-title { font-size: 40px !important; }
      .services-intro h2 { font-size: 34px; }
      .services-cta h2 { font-size: 34px; }
      .services-cta .btn-outline-white { margin-left: 0; margin-top: 10px; }
    }

   .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.from-left  { transform: translateX(-40px); }
    .reveal.from-right { transform: translateX(40px); }
    .reveal.visible {
      opacity: 1;
      transform: translate(0, 0);
    }
    /* stagger siblings */
    .stagger .reveal:nth-child(1) { transition-delay: 0s; }
    .stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
    .stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
    .stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
    .stagger .reveal:nth-child(5) { transition-delay: 0.4s; }

    /* ---------- Page Banner ---------- */
    .page-banner {
      position: relative;
      height: 550px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.47), rgba(0, 0, 0, 0.47)),
                        url('/images/image-bank/collab.jpg');
     background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* Proper centering */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;
    }
    /* animated floating circles */
    .banner-particles span {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,182,0,0.12);
      animation: floatUp linear infinite;
      pointer-events: none;
    }
    @keyframes floatUp {
      0%   { transform: translateY(0) scale(1);   opacity: 0.6; }
      100% { transform: translateY(-120vh) scale(1.4); opacity: 0; }
    }
    .page-banner h1 {
      color: #fff; font-size: 40px; letter-spacing: -1px; margin-bottom: 10px;
      animation: fadeDown 0.7s ease both;
    }
    .page-banner p {
      color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 16px;
      animation: fadeDown 0.7s 0.15s ease both;
    }
    @keyframes fadeDown {
      from { opacity:0; transform:translateY(-18px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .page-banner .breadcrumb {
      justify-content: center; background: transparent; padding: 0; margin: 0;
      animation: fadeDown 0.7s 0.3s ease both;
    }
    .page-banner .breadcrumb-item,
    .page-banner .breadcrumb-item a { color: rgba(255,255,255,0.65); font-family:'Montserrat',sans-serif; font-size:13px; }
    .page-banner .breadcrumb-item.active { color: #ffb600; }
    .page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

    /* ---------- Section common ---------- */
    .collab-section { padding: 55px 0 45px; }
    .collab-section.alt-bg { background: #f9f9f9; }

    .section-label {
      display: inline-block; background: #ffb600; color: #fff;
      font-family: 'Montserrat',sans-serif; font-size: 10px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase; padding: 3px 12px;
      border-radius: 2px; margin-bottom: 10px;
    }
    .collab-section-header { margin-bottom: 36px; }
    .collab-section-header h2 {
      font-family: 'Montserrat',sans-serif; font-size: 26px; font-weight: 800;
      color: #212121; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 8px;
    }
    .collab-section-header p { color: #666; font-size: 14px; max-width: 560px; line-height: 24px; margin: 0; }
    .title-divider { width: 44px; height: 3px; background: #ffb600; margin: 10px 0 14px; }
    .text-center .title-divider { margin: 10px auto 14px; }

    .band-divider { height: 3px; background: linear-gradient(to right,#ffb600,#002e5b); }
    .band-divider.rev { background: linear-gradient(to right,#002e5b,#ffb600); }

    /* ---------- Partners / Stakeholders tabs ---------- */
    .collab-nav-tabs {
      display: flex; justify-content: center; gap: 6px;
      border-bottom: 2px solid #eee; margin-bottom: 32px;
    }
    .collab-nav-btn {
      background: none; border: none; outline: none;
      font-family: 'Montserrat',sans-serif; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px; color: #aaa;
      padding: 10px 22px; cursor: pointer;
      border-bottom: 3px solid transparent; margin-bottom: -2px;
      transition: color .25s, border-color .25s;
    }
    .collab-nav-btn.active { color: #ffb600; border-bottom-color: #ffb600; }

    .collab-tab-pane { display: none; }
    .collab-tab-pane.active { display: block; }

    /* ---------- Logo grid ---------- */
    .logo-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .logo-card {
      background: #fff; border: 1px solid #e8e8e8; border-radius: 4px;
      width: 200px; height: 200px; display: flex; align-items: center;
      justify-content: center; padding: 18px;
      transition: border-color .25s, box-shadow .25s, transform .3s;
      cursor: default;
    }
    .logo-card:hover {
      border-color: #ffb600;
      box-shadow: 0 6px 22px rgba(0,0,0,0.09);
      transform: translateY(-5px);
    }
    .logo-card img {
      max-width: 100%; max-height: 100px; object-fit: contain;
      filter: grayscale(70%); opacity: .95;
      transition: filter .3s, opacity .3s;
    }
    .logo-card:hover img { filter: grayscale(0%); opacity: 1; }

    /* ---------- Stats strip ---------- */
    .stats-strip {
      background: linear-gradient(135deg, #002e5b 0%, #001a38 100%);
      padding: 36px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-strip::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Montserrat',sans-serif; font-size: 36px; font-weight: 800;
      color: #ffb600; line-height: 1; display: block;
    }
    .stat-label {
      font-family: 'Montserrat',sans-serif; font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.65);
      margin-top: 6px; display: block;
    }
    .stat-divider {
      width: 1px; background: rgba(255,255,255,0.12); height: 50px;
      margin: auto;
    }

    /* ---------- Affiliated cards ---------- */
    .affil-card {
      background: #fff; border-radius: 6px; border: 1px solid #e8e8e8;
      overflow: hidden; height: 100%;
      transition: box-shadow .3s, transform .3s;
    }
    .affil-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.13); transform: translateY(-6px); }

    .affil-header {
      background: linear-gradient(135deg,#002e5b 0%,#003f7f 100%);
      padding: 28px 20px 20px; text-align: center; position: relative;
    }
    .affil-header.parent { background: linear-gradient(135deg,#1a1a1a 0%,#2c2c2c 100%); }

    /* pulse ring on logo */
    .affil-logo-wrap {
      position: relative; width: 80px; height: 80px; margin: 0 auto 14px;
    }
    .affil-logo-wrap::before {
      content: '';
      position: absolute; inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(255,182,0,0.3);
      animation: pulse-ring 2.5s ease-out infinite;
    }
    @keyframes pulse-ring {
      0%   { transform: scale(0.9); opacity: 0.7; }
      70%  { transform: scale(1.15); opacity: 0; }
      100% { transform: scale(0.9); opacity: 0; }
    }
    .affil-logo {
      width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 50%;
      border: 2px solid rgba(255,182,0,0.5); display: flex; align-items: center;
      justify-content: center; position: relative; z-index: 1;
    }
    .affil-logo img { max-width: 62px; max-height: 62px; object-fit: contain; border-radius: 50%; }
    .affil-logo .initials { font-family:'Montserrat',sans-serif; font-size:20px; font-weight:800; color:#ffb600; }

    .affil-badge {
      position: absolute; top: 12px; right: 12px; background: #ffb600; color: #fff;
      font-family:'Montserrat',sans-serif; font-size: 9px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; border-radius: 2px;
    }
    .affil-header h4 { color:#fff; font-size:15px; margin-bottom:3px; text-transform:uppercase; }
    .affil-header .sub { color:rgba(255,255,255,0.6); font-size:11px; font-family:'Montserrat',sans-serif; }

    /* Tabs inside card */
    .affil-tabs { display:flex; border-bottom:2px solid #f0f0f0; }
    .affil-tab-btn {
      flex:1; background:none; border:none; outline:none;
      font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700;
      text-transform:uppercase; letter-spacing:0.8px; color:#aaa;
      padding:12px 4px; cursor:pointer;
      border-bottom:3px solid transparent; margin-bottom:-2px;
      transition:color .2s, border-color .2s;
    }
    .affil-tab-btn.active { color:#ffb600; border-bottom-color:#ffb600; }

    .affil-tab-content { display:none; padding:18px 20px 20px; }
    .affil-tab-content.active { display:block; animation: tabFadeIn .3s ease; }
    @keyframes tabFadeIn { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }

    .affil-tab-content p { font-size:13px; color:#666; line-height:22px; margin-bottom:10px; }
    .affil-tab-content ul { list-style:none; padding:0; margin:0; }
    .affil-tab-content ul li {
      font-size:13px; color:#555; padding:4px 0 4px 16px; position:relative; line-height:20px;
    }
    .affil-tab-content ul li::before {
      content:''; position:absolute; left:0; top:10px;
      width:6px; height:6px; background:#ffb600; border-radius:50%;
    }
    .outcome-col h6 {
      font-family:'Montserrat',sans-serif; font-size:10px; font-weight:700;
      text-transform:uppercase; letter-spacing:1px; color:#002e5b;
      border-left:3px solid #ffb600; padding-left:7px; margin-bottom:8px;
    }

    .affil-tag {
      display:inline-block; font-size:10px; font-family:'Montserrat',sans-serif;
      font-weight:600; padding:2px 9px; border-radius:20px; margin:2px 2px 0 0;
    }
    .affil-tag.child  { background:#e8f0fb; color:#2a6099; }
    .affil-tag.parent { background:#2d2d2d; color:#ffb600; }

    /* ---------- Structure note ---------- */
    .structure-note {
      background:#f9f9f9; border-left:4px solid #ffb600;
      padding:14px 20px; border-radius:2px;
      font-size:13px; color:#555; margin-top:32px;
    }
    .structure-note strong { color:#212121; font-family:'Montserrat',sans-serif; }

    @media(max-width:576px){
      .logo-card { width:140px; height:95px; }
      .page-banner h1 { font-size:28px; }
      .stat-divider { display:none; }
    }



    /* =============================================
      PROGRAMMES PAGE
    ============================================= */
    :root {
      --gold:     #ffb600;
      --gold-dk:  #e0a000;
      --navy:     #002e5b;
      --navy-lt:  #0a3d6b;
      --dark:     #0d0d0d;
      --mid:      #1a1a2e;
      --gray-bg:  #f5f6f8;
      --muted:    #777;
      --white:    #fff;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { background: #fff; color: #555; font-family: 'Open Sans', sans-serif; }

    /* ── HERO BANNER ─────────────────────────── */
    .page-hero {
      position: relative;
      min-height: 300px;
      display: flex; align-items: center;
      background: linear-gradient(120deg, var(--navy) 0%, #0a2a4a 55%, #16213e 100%);
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffb600' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    /* Decorative glowing orbs */
    .hero-orb {
      position: absolute; border-radius: 50%;
      pointer-events: none;
    }
    .hero-orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,182,0,.1) 0%, transparent 70%);
      top: -150px; right: -100px;
    }
    .hero-orb-2 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,182,0,.06) 0%, transparent 70%);
      bottom: -80px; left: 10%;
    }
    /* Animated floating shapes */
    .hero-shape {
      position: absolute; border: 1px solid rgba(255,182,0,.12);
      border-radius: 50%; pointer-events: none;
      animation: floatShape 8s ease-in-out infinite;
    }
    .hero-shape-1 { width: 80px; height: 80px; top: 15%; right: 18%; animation-delay: 0s; }
    .hero-shape-2 { width: 40px; height: 40px; top: 60%; right: 30%; animation-delay: 2s; }
    .hero-shape-3 { width: 120px; height: 120px; bottom: 10%; right: 8%; animation-delay: 4s; }
    @keyframes floatShape {
      0%, 100% { transform: translateY(0) rotate(0deg); opacity: .4; }
      50%       { transform: translateY(-18px) rotate(12deg); opacity: .9; }
    }
    .hero-content-wrap { position: relative; z-index: 2; padding: 90px 0 80px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,182,0,.15);
      border: 1px solid rgba(255,182,0,.3);
      color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 7px 16px; border-radius: 2px;
      margin-bottom: 22px;
    }
    .hero-eyebrow i { font-size: 11px; }
    .hero-title {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 900; line-height: .95;
      letter-spacing: -2px; color: #fff;
      text-transform: uppercase; margin-bottom: 22px;
    }
    .hero-title em { color: var(--gold); font-style: normal; display: block; }
    .hero-desc { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-gold {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 15px 30px; border: none; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 9px;
      transition: background .2s, transform .15s;
    }
    .btn-gold:hover { background: #fff; color: #000; transform: translateY(-2px); text-decoration: none; }
    .btn-ghost {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.35);
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 13px 28px; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 9px;
      transition: border-color .2s, color .2s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
    /* Hero stats pills */
    .hero-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
    .hero-pill {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 4px; padding: 12px 18px;
    }
    .hero-pill i { color: var(--gold); font-size: 16px; }
    .hero-pill span { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .5px; }
    /* Breadcrumb */
    .hero-breadcrumb { margin-top: 30px; }
    .hero-breadcrumb ol { background: transparent; padding: 0; margin: 0; }
    .hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.45); font-size: 12px; }
    .hero-breadcrumb .breadcrumb-item.active { color: var(--gold); font-size: 12px; }
    .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

    /* ── FILTER BAR ──────────────────────────── */
    .filter-bar {
      background: var(--navy);
      padding: 0;
      position: sticky; top: 72px; z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }
    .filter-inner {
      display: flex; align-items: center;
      overflow-x: auto; gap: 0;
      scrollbar-width: none;
    }
    .filter-inner::-webkit-scrollbar { display: none; }
    .filter-btn {
      flex-shrink: 0;
      padding: 18px 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,.55);
      background: transparent; border: none;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: color .2s, border-color .2s, background .2s;
      display: flex; align-items: center; gap: 8px;
      white-space: nowrap;
    }
    .filter-btn:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.04); }
    .filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(255,182,0,.06); }
    .filter-btn .count-badge {
      background: rgba(255,255,255,.1);
      color: rgba(255,255,255,.6);
      font-size: 10px; font-weight: 700;
      padding: 2px 7px; border-radius: 10px;
    }
    .filter-btn.active .count-badge { background: rgba(255,182,0,.2); color: var(--gold); }
    .filter-search {
      margin-left: auto; flex-shrink: 0;
      padding: 0 16px;
      display: flex; align-items: center; gap: 10px;
      border-left: 1px solid rgba(255,255,255,.08);
    }
    .filter-search input {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 3px; color: #fff;
      font-size: 13px; padding: 8px 14px;
      outline: none; width: 200px;
      font-family: 'Open Sans', sans-serif;
      transition: border-color .2s, background .2s;
    }
    .filter-search input::placeholder { color: rgba(255,255,255,.3); }
    .filter-search input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
    .filter-search i { color: rgba(255,255,255,.3); font-size: 13px; }

    /* ── PROGRAMMES GRID ─────────────────────── */
    .programmes-section { padding: 70px 0 90px; background: var(--gray-bg); }
    .section-intro { margin-bottom: 48px; }
    .section-label {
      font-size: 11px; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .section-heading {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-weight: 900; color: var(--dark);
      font-size: clamp(32px, 5vw, 52px);
      letter-spacing: -1px; line-height: 1;
      text-transform: uppercase; margin-bottom: 0;
    }
    .section-heading em { color: var(--gold); font-style: normal; }
    .results-count { font-size: 13px; color: var(--muted); margin-top: 6px; }
    .results-count strong { color: var(--navy); }

    /* Programme card */
    .prog-card {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid #e8e8e8;
      height: 100%;
      display: flex; flex-direction: column;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      position: relative;
    }
    .prog-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,.12); border-color: transparent; }

    /* Top accent line */
    .prog-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .35s ease; z-index: 1;
    }
    .prog-card:hover::before { transform: scaleX(1); }

    /* Coloured top band per category */
    .prog-card-band {
      height: 180px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .prog-card-band .band-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.05); transition: transform .5s;
    }
    .prog-card:hover .band-bg { transform: scale(1); }
    .prog-card-band .band-overlay {
      position: absolute; inset: 0;
    }
    .prog-card-band .band-icon-wrap {
      position: relative; z-index: 2;
      width: 72px; height: 72px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(4px);
      border: 2px solid rgba(255,255,255,.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; color: #fff;
      transition: background .3s, transform .3s;
    }
    .prog-card:hover .band-icon-wrap { background: var(--gold); border-color: var(--gold); color: #000; transform: scale(1.1); }

    /* Category tag on band */
    .prog-cat-tag {
      position: absolute; bottom: 14px; left: 16px; z-index: 2;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: #fff; background: rgba(0,0,0,.35);
      backdrop-filter: blur(4px);
      padding: 4px 12px; border-radius: 2px;
    }
    .prog-card-num {
      position: absolute; top: 12px; right: 16px; z-index: 2;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 42px; font-weight: 900;
      color: rgba(255,255,255,.18); line-height: 1;
    }

    /* Card body */
    .prog-body { padding: 26px 24px 20px; flex: 1; display: flex; flex-direction: column; }
    .prog-type {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .prog-type .type-dot {
      width: 6px; height: 6px; border-radius: 50%;
      flex-shrink: 0;
    }
    .prog-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px; font-weight: 800;
      color: var(--dark); line-height: 1.3;
      margin-bottom: 12px; text-transform: uppercase;
      letter-spacing: -.2px;
    }
    .prog-desc { font-size: 13px; color: #777; line-height: 1.7; flex: 1; margin-bottom: 18px; }

    /* Tags / chips */
    .prog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
    .prog-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px; font-weight: 700;
      letter-spacing: .5px; text-transform: uppercase;
      color: var(--navy); background: #eef3fa;
      padding: 4px 10px; border-radius: 2px;
      transition: background .2s, color .2s;
    }
    .prog-card:hover .prog-tag { background: #fff7e0; color: #996600; }

    /* Card footer */
    .prog-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px;
      background: #fafafa; border-top: 1px solid #eee; flex-shrink: 0;
    }
    .prog-duration {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: var(--muted);
      font-family: 'Montserrat', sans-serif; font-weight: 600;
    }
    .prog-duration i { color: var(--gold); font-size: 13px; }
    .btn-prog {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--navy); transition: color .2s, gap .2s;
      background: none; border: none; cursor: pointer; padding: 0;
    }
    .btn-prog i { color: var(--gold); transition: transform .2s; }
    .btn-prog:hover { color: var(--gold); gap: 11px; }
    .btn-prog:hover i { transform: translateX(3px); }

    /* No results */
    .no-results {
      text-align: center; padding: 80px 20px;
      display: none;
    }
    .no-results i { font-size: 48px; color: #ddd; margin-bottom: 16px; }
    .no-results h4 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: #bbb; }

    /* ── CATEGORY COLOUR THEMES ──────────────── */
    /* National Certificate */
    .theme-nc .band-overlay { background: linear-gradient(135deg, rgba(0,46,91,.85) 0%, rgba(0,80,140,.7) 100%); }
    /* Occupational */
    .theme-oc .band-overlay { background: linear-gradient(135deg, rgba(40,10,80,.85) 0%, rgba(80,30,120,.7) 100%); }
    /* Internship */
    .theme-in .band-overlay { background: linear-gradient(135deg, rgba(10,70,50,.85) 0%, rgba(20,110,80,.7) 100%); }
    /* Education & Training */
    .theme-et .band-overlay { background: linear-gradient(135deg, rgba(120,50,0,.85) 0%, rgba(180,80,0,.7) 100%); }

    .type-nc { color: var(--navy); }
    .type-nc .type-dot { background: var(--navy); }
    .type-oc { color: #5a1a8f; }
    .type-oc .type-dot { background: #5a1a8f; }
    .type-in { color: #0a6640; }
    .type-in .type-dot { background: #0a6640; }
    .type-et { color: #a04000; }
    .type-et .type-dot { background: #a04000; }

    /* ── MARQUEE DIVIDER ─────────────────────── */
    .marquee-divider { background: var(--gold); overflow: hidden; padding: 0; }
    .marquee-track {
      display: flex; width: max-content;
      animation: marquee 30s linear infinite;
    }
    .marquee-item {
      white-space: nowrap; padding: 13px 36px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase; color: #000;
      display: flex; align-items: center; gap: 12px;
    }
    .marquee-item::after { content: '✦'; font-size: 8px; color: rgba(0,0,0,.35); }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── ENROLMENT CTA ───────────────────────── */
    .enrol-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
      padding: 90px 0; position: relative; overflow: hidden;
    }
    .enrol-cta::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'%3E%3Cg fill='%23ffb600' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .enrol-cta .container { position: relative; z-index: 1; }
    .enrol-box {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px; padding: 60px 50px;
      display: flex; align-items: center; gap: 50px; flex-wrap: wrap;
    }
    .enrol-box-icon {
      width: 100px; height: 100px; flex-shrink: 0;
      background: rgba(255,182,0,.1);
      border: 2px solid rgba(255,182,0,.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 40px; color: var(--gold);
    }
    .enrol-box-text h2 {
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-size: clamp(30px, 4vw, 48px); font-weight: 900;
      text-transform: uppercase; letter-spacing: -1px;
      color: #fff; margin-bottom: 10px; line-height: 1;
    }
    .enrol-box-text h2 span { color: var(--gold); }
    .enrol-box-text p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; max-width: 480px; margin-bottom: 28px; }
    .enrol-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-enrol {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 16px 36px; border: none; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background .2s, transform .15s; cursor: pointer;
    }
    .btn-enrol:hover { background: #fff; color: #000; transform: translateY(-2px); text-decoration: none; }
    .btn-enrol-ghost {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.25);
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 14px 32px; border-radius: 3px;
      display: inline-flex; align-items: center; gap: 10px;
      transition: border-color .2s, color .2s;
    }
    .btn-enrol-ghost:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

    /* ── WHY SECTION ─────────────────────────── */
    .why-section { padding: 90px 0; background: #fff; }
    .why-card {
      text-align: center; padding: 40px 24px;
      border: 1.5px solid #ebebeb; border-radius: 6px;
      transition: border-color .25s, box-shadow .25s, transform .25s;
      height: 100%;
    }
    .why-card:hover { border-color: var(--gold); box-shadow: 0 12px 36px rgba(255,182,0,.1); transform: translateY(-5px); }
    .why-icon {
      width: 70px; height: 70px; margin: 0 auto 20px;
      background: #fff8e6; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--gold);
      transition: background .25s, color .25s;
    }
    .why-card:hover .why-icon { background: var(--gold); color: #fff; }
    .why-card h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px; font-weight: 800;
      text-transform: uppercase; letter-spacing: .5px;
      color: var(--dark); margin-bottom: 10px;
    }
    .why-card p { font-size: 13px; color: #777; line-height: 1.7; margin: 0; }

    /* ── MODAL ───────────────────────────────── */
    .prog-modal .modal-header {
      background: var(--navy); border: none;
      padding: 24px 28px;
    }
    .prog-modal .modal-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px; font-weight: 800;
      text-transform: uppercase; letter-spacing: -.3px; color: #fff;
    }
    .prog-modal .modal-header .close { color: rgba(255,255,255,.6); opacity: 1; }
    .prog-modal .modal-header .close:hover { color: var(--gold); }
    .prog-modal .modal-body { padding: 32px 28px; }
    .modal-type-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: #fff; border-radius: 2px; padding: 5px 12px;
      margin-bottom: 16px;
    }
    .modal-section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px; margin-top: 20px;
    }
    .modal-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 8px; }
    .modal-detail-item {
      background: var(--gray-bg); border-radius: 4px;
      padding: 14px 16px; display: flex; align-items: center; gap: 12px;
    }
    .modal-detail-item i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
    .modal-detail-item .detail-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #aaa; margin-bottom: 2px; }
    .modal-detail-item .detail-val { font-size: 14px; font-weight: 700; color: var(--dark); font-family: 'Montserrat', sans-serif; }
    .modal-outcomes li { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 4px; }
    .modal-outcomes li::marker { color: var(--gold); }
    .prog-modal .modal-footer {
      border-top: 1px solid #eee; padding: 18px 28px;
      display: flex; gap: 12px;
    }
    .btn-modal-enrol {
      background: var(--gold); color: #000;
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      border: none; border-radius: 3px; padding: 12px 28px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s; cursor: pointer;
    }
    .btn-modal-enrol:hover { background: var(--navy); color: #fff; }
    .btn-modal-close {
      background: transparent; border: 1.5px solid #ddd;
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
      border-radius: 3px; padding: 12px 24px; color: #777;
      cursor: pointer; transition: border-color .2s, color .2s;
    }
    .btn-modal-close:hover { border-color: var(--navy); color: var(--navy); }

    /* ── FOOTER ──────────────────────────────── */
    #footer { background: var(--dark); }
    .footer-main { padding: 64px 0 40px; }
    .widget-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 800;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: #fff; margin-bottom: 22px; padding-bottom: 12px;
      border-bottom: 2px solid var(--gold); display: inline-block;
    }
    .footer-about p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.8; margin-top: 14px; }
    .footer-social ul { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 10px; }
    .footer-social ul li a {
      width: 36px; height: 36px; background: rgba(255,255,255,.07);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: 13px; transition: background .2s, color .2s;
    }
    .footer-social ul li a:hover { background: var(--gold); color: #000; }
    .working-hours { color: rgba(255,255,255,.55); font-size: 14px; line-height: 2.2; }
    .working-hours span { color: var(--gold); }
    .list-arrow { list-style: none; padding: 0; margin: 0; }
    .list-arrow li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .list-arrow li:last-child { border-bottom: none; }
    .list-arrow li::before { content: '→'; color: var(--gold); margin-right: 8px; }
    .list-arrow li a { color: rgba(255,255,255,.55); font-size: 14px; transition: color .2s; }
    .list-arrow li a:hover { color: var(--gold); text-decoration: none; }
    .copyright { background: rgba(0,0,0,.35); padding: 18px 0; }
    .copyright-info { color: rgba(255,255,255,.35); font-size: 13px; text-align: center; }
    .copyright-info a { color: var(--gold); }
    #back-to-top { bottom: 28px; right: 28px; z-index: 999; }
    #back-to-top button {
      background: var(--gold); border: none; border-radius: 4px;
      width: 40px; height: 40px; color: #000; font-size: 15px;
      cursor: pointer; transition: background .2s;
    }
    #back-to-top button:hover { background: var(--navy); color: #fff; }

    /* ── ANIMATIONS ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; }
    .reveal.visible { animation: fadeUp .65s ease forwards; }
    .reveal.d1 { animation-delay: .08s; }
    .reveal.d2 { animation-delay: .16s; }
    .reveal.d3 { animation-delay: .24s; }
    .reveal.d4 { animation-delay: .32s; }
    .reveal.d5 { animation-delay: .40s; }

    .prog-card-wrap { transition: opacity .3s, transform .3s; }
    .prog-card-wrap.hidden { opacity: 0; pointer-events: none; transform: scale(.97); display: none !important; }

    @media(max-width:767px){
      .enrol-box { padding: 36px 24px; flex-direction: column; gap: 24px; }
      .modal-detail-grid { grid-template-columns: 1fr; }
      .filter-search input { width: 140px; }
    }
    @media(max-width:480px){
      .hero-pills { flex-direction: column; gap: 8px; }
    }

    /* ── SERVICES BANNER ── */
#services-banner-area {
  position:relative;
  overflow:hidden;
  
  background-size:cover !important;
  background-attachment:scroll!important;
  background-position:center !important;
  height:550px !important;
}

#services-banner-area::after {
  content:'';
  position:absolute;
  bottom:-1px;
  left:0;
  right:0;
  height:60px;
  background:#fff;
  clip-path:polygon(0 100%, 100% 100%, 100% 0);
}

/* floating particles on banner */
.banner-particles span {
  position:absolute;
  border-radius:50%;
  background:rgba(255,182,0,0.1);
  animation:floatUp linear infinite;
  pointer-events:none;
}

@keyframes floatUp {
  0%   { transform:translateY(0) scale(1); opacity:.5; }
  100% { transform:translateY(-120vh) scale(1.3); opacity:0; }
}

.banner-title {
  font-family:'Barlow Condensed','Montserrat',sans-serif !important;
  font-size:72px !important;
  font-weight:900 !important;
  letter-spacing:-2px;
  text-transform:uppercase;
  animation:fadeDown .7s ease both;
}

.banner-text .breadcrumb {
  animation:fadeDown .7s .2s ease both;
}

@keyframes fadeDown {
  from { opacity:0; transform:translateY(-16px); }
  to   { opacity:1; transform:translateY(0); }
}


    .service-menu li { border-bottom: 1px solid #f0f0f0; }
    .service-menu li:last-child { border-bottom: none; }
    .service-menu li a {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 14px; color: #555; font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 600; text-decoration: none;
      transition: color .2s, background .2s, padding-left .2s;
      border-left: 3px solid transparent;
    }
    .service-menu li a i { width: 18px; text-align: center; color: #ffb600; font-size: 13px; }
    .service-menu li a:hover,
    .service-menu li.active a { color: #ffb600; background: #fffbf0; padding-left: 20px; border-left-color: #ffb600; }
    .service-cta-box {
      background: linear-gradient(135deg, #002e5b 0%, #003f7f 100%);
      border-radius: 4px; padding: 28px 24px; text-align: center; margin-top: 24px;
    }
    .service-cta-box h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
    .service-cta-box p { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 18px; }
    .service-content { animation: fadeSlide .35s ease; }
    @keyframes fadeSlide { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
    .subservice-icon {
      width: 54px; height: 54px; background: #fff7e0; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .subservice-icon i { color: #ffb600; font-size: 22px; }
    .highlight-box {
      background: #f9f9f9; border-left: 4px solid #ffb600;
      padding: 16px 20px; border-radius: 2px; margin: 24px 0;
    }
    .highlight-box p { margin: 0; font-size: 14px; color: #555; line-height: 24px; }
    .lifecycle-timeline { margin: 20px 0; }
    .lifecycle-phase {
      display: flex; gap: 0; margin-bottom: 0;
    }
    .phase-block {
      flex: 1; text-align: center; padding: 12px 8px;
      font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px; color: #fff;
      position: relative;
    }
    .phase-block:nth-child(1) { background: #002e5b; border-radius: 4px 0 0 4px; }
    .phase-block:nth-child(2) { background: #003f7f; }
    .phase-block:nth-child(3) { background: #0056a8; }
    .phase-block:nth-child(4) { background: #ffb600; color: #212121; }
    .phase-block:nth-child(5) { background: #e0a000; color: #212121; border-radius: 0 4px 4px 0; }
    .phase-sub { font-size: 9px; font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.8; display: block; margin-top: 2px; }
    .process-step {
      display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
    }
    .step-num {
      min-width: 34px; height: 34px; background: #ffb600; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; color: #fff;
    }
    .step-body h5 { font-size: 14px; margin-bottom: 4px; color: #212121; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
    .step-body p { font-size: 13px; color: #666; margin: 0; line-height: 22px; }
    @media(max-width:480px){ .phase-block { font-size:9px; padding: 10px 4px; } }
 
       