
    /* =============================================
       CSS VARIABLES & RESET  (mirror of style.css)
    ============================================= */
    :root {
      --blue-dark:   #0a1628;
      --blue-mid:    #0d2244;
      --blue:        #1a3a6b;
      --blue-light:  #2563b0;
      --yellow:      #f5c518;
      --yellow-light:#ffd84d;
      --white:       #ffffff;
      --off-white:   #f4f6fa;
      --gray:        #8a9bb5;
      --gray-light:  #e8edf5;
      --text-dark:   #0d1c30;
      --text-body:   #3a4a5c;
      --radius:      6px;
      --shadow:      0 8px 32px rgba(10,22,40,0.18);
      --transition:  0.35s cubic-bezier(.4,0,.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    .container { width: 92%; max-width: 1200px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1.1;
    }
    .section-title span { color: var(--blue-light); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: var(--radius);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }
    .btn-primary { background: var(--yellow); color: var(--blue-dark); }
    .btn-primary:hover { background: var(--yellow-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }
    .btn-outline { background: transparent; color: var(--blue-dark); border: 2px solid var(--blue-dark); }
    .btn-outline:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }


    /* =============================================
       PAGE HERO
    ============================================= */
    #page-hero {
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue) 100%);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    #page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(245,197,24,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(37,99,176,0.15) 0%, transparent 40%);
    }
    .hero-ring {
      position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
      width: 420px; height: 420px;
      border: 2px solid rgba(245,197,24,0.08); border-radius: 50%;
    }
    .hero-ring::after {
      content: '';
      position: absolute; inset: 40px;
      border: 1px solid rgba(245,197,24,0.05); border-radius: 50%;
    }
    .hero-watermark {
      position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
      font-size: 8rem; color: rgba(255,255,255,0.03); line-height: 1;
    }
    .page-hero-inner { position: relative; z-index: 1; }
    #page-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 16px;
    }
    #page-hero h1 em { font-style: normal; color: var(--yellow); }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .breadcrumb a { color: rgba(255,255,255,0.55); transition: color .2s; }
    .breadcrumb a:hover { color: var(--yellow); }
    .breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
    .breadcrumb span { color: var(--yellow); }

    /* =============================================
       SERVICE CONTENT MAIN
    ============================================= */
    #service-main {
      padding: 80px 0 100px;
      background: var(--white);
    }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* 🔥 WHEN NO SIDEBAR → FULL WIDTH */
.service-layout.full-width {
  grid-template-columns: 1fr;
}

    /* ── LEFT: main content ── */
    .service-content {}

    /* IMAGE SLOT */
    .service-image-slot {
      width: 100%;
      height: 420px;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 44px;
      position: relative;
      background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* .service-image-slot.full-width{
      width: 50%;
      height: 100%;
    } */
    .service-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.service-image-slot {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body,
.service-highlight {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
    /* ─── REPLACE: swap the placeholder block below with your <img> tag ─── */
    .service-image-slot .img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: rgba(255,255,255,0.18);
      pointer-events: none;
      user-select: none;
      width: 100%;
      height: 100%;
    }
    .service-image-slot .img-placeholder i { font-size: 3.5rem; }
    .service-image-slot .img-placeholder span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
    }
    /* When you insert your real image, use this class on the <img> tag */
    .service-image-slot img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    /* Yellow accent line on image bottom */
    .service-image-slot::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px;
      background: var(--yellow);
    }
    @media (max-width: 768px) {
  .service-top {
    grid-template-columns: 1fr;
  }
}



    /* intro tag + title */
    .service-intro-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 10px;
    }
    .service-intro-tag::before {
      content: '';
      display: block; width: 32px; height: 2px;
      background: var(--yellow);
    }
    .service-content-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--blue-dark);
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .service-content-title span { color: var(--blue-light); }

    /* divider accent */
    .content-divider {
      width: 50px; height: 4px;
      background: var(--yellow);
      border-radius: 2px;
      margin-bottom: 28px;
    }

    /* body paragraphs */
    .service-body p {
      color: var(--text-body);
      font-size: 0.97rem;
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .service-body p:last-child { margin-bottom: 0; }

    /* highlight block */
    .service-highlight {
      background: var(--off-white);
      border-left: 4px solid var(--yellow);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 22px 26px;
      margin: 32px 0;
      position: relative;
    }
    .service-highlight::before {
      content: '\f10d'; /* fa-quote-left */
      font-family: 'Font Awesome 6 Free'; font-weight: 900;
      position: absolute; top: 14px; right: 18px;
      font-size: 1.6rem;
      color: rgba(245,197,24,0.18);
    }
    .service-highlight p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--blue-dark);
      line-height: 1.6;
      margin: 0;
    }

    /* process steps */
    .service-steps {
      margin: 36px 0;
    }
    .service-steps-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--blue-dark);
      margin-bottom: 18px;
    }
    .steps-list {
      display: flex; flex-direction: column; gap: 0;
      border-left: 2px solid var(--gray-light);
      margin-left: 12px;
      padding-left: 0;
    }
    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 0 0 28px 28px;
      position: relative;
    }
    .step-item:last-child { padding-bottom: 0; }
    .step-num {
      position: absolute; left: -13px; top: 0;
      width: 26px; height: 26px;
      background: var(--yellow);
      color: var(--blue-dark);
      border-radius: 50%;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .step-body {}
    .step-body strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px;
      color: var(--blue-dark);
      margin-bottom: 4px;
    }
    .step-body p {
      font-size: 0.88rem;
      color: var(--text-body);
      line-height: 1.7;
      margin: 0 !important;
    }

    /* CTA row */
    .service-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 36px;
      border-top: 1px solid var(--gray-light);
    }

    /* ── RIGHT: sidebar ── */
    .service-sidebar {}

    .sidebar-card {
      background: var(--blue-dark);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 28px;
    }
    .sidebar-card-head {
      background: var(--yellow);
      padding: 16px 22px;
    }
    .sidebar-card-head h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--blue-dark);
    }
    .sidebar-card-body { padding: 20px 22px; }

    /* All services list */
    .sidebar-services-list { list-style: none; padding: 0; }
    .sidebar-services-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .sidebar-services-list li:last-child { border-bottom: none; }
    .sidebar-services-list a {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 0;
      color: rgba(255,255,255,0.65);
      font-family: 'Lato', sans-serif; font-size: 0.88rem;
      transition: var(--transition);
    }
    .sidebar-services-list a i { color: var(--yellow); font-size: 0.75rem; flex-shrink: 0; }
    .sidebar-services-list a:hover { color: var(--yellow); padding-left: 6px; }
    .sidebar-services-list li.active a { color: var(--yellow); font-weight: 700; }

    /* Contact card */
    .sidebar-contact-card {
      background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
      border-radius: 10px;
      padding: 28px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .sidebar-contact-card::before {
      content: '';
      position: absolute; top: -30px; right: -30px;
      width: 120px; height: 120px;
      border: 2px solid rgba(245,197,24,0.1);
      border-radius: 50%;
    }
    .sidebar-contact-card .contact-icon {
      width: 56px; height: 56px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--blue-dark);
      margin: 0 auto 16px;
    }
    .sidebar-contact-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.5px;
      color: var(--white);
      margin-bottom: 10px;
    }
    .sidebar-contact-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .sidebar-contact-card .btn {
      width: 100%;
      justify-content: center;
    }

    /* key facts card */
    .key-facts { display: flex; flex-direction: column; gap: 14px; }
    .key-fact { display: flex; align-items: flex-start; gap: 12px; }
    .key-fact-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(245,197,24,0.12);
      border: 1px solid rgba(245,197,24,0.22);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow); font-size: 0.9rem;
    }
    .key-fact strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px;
      color: var(--white); margin-bottom: 2px;
    }
    .key-fact p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }

    /* =============================================
       RELATED SERVICES STRIP
    ============================================= */
    #related-services {
      padding: 70px 0;
      background: var(--off-white);
      border-top: 1px solid var(--gray-light);
    }
    .related-header {
      display: flex; align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .related-card {
      background: var(--white);
      border-radius: 8px;
      padding: 26px 22px;
      border-bottom: 3px solid transparent;
      box-shadow: 0 2px 12px rgba(10,22,40,0.06);
      transition: var(--transition);
      display: flex; flex-direction: column; gap: 14px;
    }
    .related-card:hover { transform: translateY(-5px); border-bottom-color: var(--yellow); box-shadow: 0 12px 32px rgba(10,22,40,0.10); }
    .related-card-icon {
      width: 50px; height: 50px;
      background: linear-gradient(135deg, var(--blue-mid), var(--blue));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--yellow);
      transition: var(--transition);
    }
    .related-card:hover .related-card-icon { background: var(--yellow); color: var(--blue-dark); }
    .related-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.5px;
      color: var(--blue-dark);
    }
    .related-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.65; flex: 1; }
    .related-card a {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--blue-light); transition: var(--transition);
    }
    .related-card:hover a { color: var(--yellow); gap: 10px; }

    /* =============================================
       FOOTER (mirror of style.css)
    ============================================= */
    #footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); padding: 70px 0 0; font-size: 0.9rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-logo-wrap { display: flex; align-items: center; margin-bottom: 16px; }
    .footer-logo-img { height: 50px; width: auto; max-width: 180px; object-fit: contain; display: block; }
    .footer-logo-placeholder { height: 50px; width: 160px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; gap: 6px; }
    .footer-logo-placeholder img { width: 160px; height: 160px; filter: brightness(0) invert(1); }
    .footer-brand p { line-height: 1.8; margin: 0 0 16px; color: rgba(255,255,255,0.5); font-size: 0.87rem; }
    .footer-socials { display: flex; gap: 10px; margin-top: 10%; }
    .social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
    .social-icon:hover { background: var(--yellow); color: var(--blue-dark); }
    .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
    .footer-links a i { color: var(--yellow); font-size: 0.65rem; }
    .footer-links a:hover { color: var(--yellow); padding-left: 4px; }
    .footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
    .footer-contact i { color: var(--yellow); margin-top: 3px; width: 16px; }
    .footer-location-wrap { position: relative; display: inline-block; cursor: pointer; }
    .footer-location-wrap .location-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; transition: color .2s; }
    .footer-location-wrap:hover .location-text { color: var(--yellow); }
    .location-card { position: absolute; bottom: calc(100% + 12px); left: 0; width: 260px; background: var(--white); border-radius: 8px; box-shadow: 0 12px 40px rgba(10,22,40,0.35); border-top: 3px solid var(--yellow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 100; overflow: hidden; }
    .footer-location-wrap:hover .location-card { opacity: 1; visibility: visible; transform: translateY(0); }
    .location-card-map-fallback { width: 100%; height: 130px; overflow: hidden; display: block; }
    .location-card-map-fallback img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .location-card-body { padding: 12px 14px; }
    .location-card-body strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue-dark); margin-bottom: 4px; }
    .location-card-body p { font-size: 0.78rem; color: var(--text-body); line-height: 1.5; margin-bottom: 10px; }
    .location-card-link { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px; background: var(--yellow); color: var(--blue-dark); border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }
    .location-card-link:hover { background: var(--yellow-light); }
    .footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }
    .footer-bottom a { color: var(--yellow); }

    /* =============================================
       BACK TO TOP
    ============================================= */
    #back-to-top {
      position: fixed; bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      background: var(--yellow); color: var(--blue-dark);
      border: none; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      box-shadow: 0 4px 16px rgba(245,197,24,0.5);
      opacity: 0; transform: translateY(20px);
      transition: var(--transition); z-index: 9999;
    }
    #back-to-top.visible { opacity: 1; transform: translateY(0); }
    #back-to-top:hover { background: var(--yellow-light); transform: translateY(-3px); }

    /* =============================================
       MOBILE RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .service-layout { grid-template-columns: 1fr; gap: 50px; }
      .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
      .sidebar-contact-card { grid-column: 1 / -1; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
      .dropdown.mega { min-width: 500px; left: -100px; grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; flex-direction: column; align-items: flex-start; }
      .hamburger { display: flex; }
      .nav-menu.open {
        display: flex; position: fixed; top: 70px; left: 0; right: 0;
        background: var(--blue-dark); padding: 16px 0 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 999;
        max-height: calc(100vh - 70px); overflow-y: auto;
      }
      .nav-item { width: 100%; }
      .nav-link { width: 100%; padding: 12px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
      .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; border-top: none; border-left: 3px solid var(--yellow); margin-left: 20px; box-shadow: none; background: rgba(255,255,255,0.04); }
      .dropdown.mega { display: none; grid-template-columns: 1fr; min-width: auto; left: 0; position: static; }
      .nav-item.open .dropdown, .nav-item.open .dropdown.mega { display: block; }
      .nav-item.open > .nav-link i.fa-chevron-down { transform: rotate(180deg); }

      #service-main { padding: 50px 0 70px; }
      .service-image-slot { height: 260px; }
      .service-sidebar { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .service-cta-row { flex-direction: column; }
      .service-cta-row .btn { text-align: center; justify-content: center; }
      .related-header { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .service-image-slot { height: 210px; }
    }
  