:root {
      --primary: #0a2463;
      --accent: #e63946;
      --accent2: #f4a261;
      --light-bg: #f7f8fc;
      --text: #1a1a2e;
      --muted: #6b7280;
      --white: #ffffff;
      --nav-height: 76px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      color: var(--text);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .brand { font-family: 'Cormorant Garamond', serif; }

    /* ─── NAVBAR ─── */
    .navbar {
      height: var(--nav-height);
      background: var(--white);
      box-shadow: 0 2px 20px rgba(10,36,99,.08);
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: box-shadow .3s;
    }
a.navbar-brand img {
    width: 100%;
}
a.navbar-brand {
    width: 25%;
}
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.85rem;
      color: var(--primary) !important;
      letter-spacing: 1px;
    }

    .navbar-brand span { color: var(--accent); }

    .nav-link {
      font-weight: 500;
      color: var(--text) !important;
      font-size: .95rem;
      padding: 0.5rem 1.1rem !important;
      position: relative;
      transition: color .2s;
          text-transform: uppercase;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 50%; right: 50%;
      height: 2px;
      background: var(--accent);
      transition: left .25s, right .25s;
    }

    .nav-link:hover::after, .nav-link.active::after { left: 1.1rem; right: 1.1rem; }
    .nav-link:hover { color: var(--primary) !important; }

    .nav-cta {
      background: var(--accent);
      color: var(--white) !important;
      border-radius: 6px;
      padding: 0.45rem 1.3rem !important;
      font-weight: 600;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: #c1121f !important; transform: translateY(-1px); }
    .nav-cta::after { display: none; }

    /* Hamburger */
    .navbar-toggler {
      border: none;
      padding: 4px 8px;
      outline: none !important;
      box-shadow: none !important;
    }
    .navbar-toggler-icon-custom {
      display: flex; flex-direction: column; justify-content: space-between;
      width: 24px; height: 18px; cursor: pointer;
    }
    .navbar-toggler-icon-custom span {
      display: block; height: 2px; width: 100%;
      background: var(--primary);
      border-radius: 2px;
      transition: .3s;
    }

    /* ─── RIGHT SIDE DRAWER ─── */
    .offcanvas.offcanvas-end {
      width: 280px;
      border-left: 3px solid var(--primary);
    }
    .offcanvas-header { background: var(--primary); }
    .offcanvas-brand {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: #fff;
      letter-spacing: 1px;
    }
    .offcanvas-brand span { color: var(--accent2); }
    .btn-close-white { filter: invert(1); }
    .offcanvas-body { padding: 1.5rem 1.2rem; background: #fff; }
    .offcanvas .nav-link {
      font-size: 1.05rem;
      padding: 0.75rem 0.5rem !important;
      border-bottom: 1px solid #f0f0f0;
      color: var(--text) !important;
    }
    .offcanvas .nav-link::after { display: none; }
    .offcanvas .nav-link:hover { color: var(--accent) !important; background: transparent; }
    .offcanvas .nav-cta {
      display: block; text-align: center;
      margin-top: 1rem;
      border-bottom: none !important;
    }

    /* ─── HERO ─── */
    .hero {
      margin-top: var(--nav-height);
      min-height: calc(100vh - var(--nav-height));
      background: linear-gradient(135deg, #0a2463 0%, #1a3a7c 55%, #16213e 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(230,57,70,.18) 0%, transparent 70%);
      top: -150px; right: -100px;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,162,97,.12) 0%, transparent 70%);
      bottom: -80px; left: -80px;
      pointer-events: none;
    }

    /* Floating circles decoration */
    .hero-circle {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.08);
      pointer-events: none;
    }
    .hero-circle-1 { width: 350px; height: 350px; top: 10%; right: 8%; animation: floatY 8s ease-in-out infinite; }
    .hero-circle-2 { width: 200px; height: 200px; top: 50%; right: 25%; animation: floatY 11s ease-in-out infinite reverse; }

    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(230,57,70,.15);
      border: 1px solid rgba(230,57,70,.35);
      color: #f4a261;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 1.4rem;
      animation: fadeInUp .6s ease both;
    }

    .hero h1 {
      font-size: 45;
      font-weight: 600;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 1.4rem;
      letter-spacing: 0.5px;
      animation: fadeInUp .7s .1s ease both;
    }

    .hero h1 .highlight {
      color: var(--accent2);
      position: relative;
    }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,.78);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2rem;
      font-weight: 300;
      animation: fadeInUp .7s .2s ease both;
    }

    .hero-btns { animation: fadeInUp .7s .3s ease both; }

    .btn-hero-primary {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 14px 32px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 8px 25px rgba(230,57,70,.35);
    }
    .btn-hero-primary:hover {
      background: #c1121f;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(230,57,70,.45);
      color: #fff;
    }

    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.45);
      padding: 13px 32px;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 8px;
      transition: border-color .2s, background .2s;
    }
    .btn-hero-outline:hover {
      border-color: #fff;
      background: rgba(255,255,255,.08);
      color: #fff;
    }

    /* Stats strip */
    .hero-stats { animation: fadeInUp .7s .4s ease both; margin-top: 3rem; }
    .hero-stat { text-align: left; }
    .hero-stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-number span { color: var(--accent2); }
    .hero-stat-label {
      font-size: .82rem;
      color: rgba(255,255,255,.55);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 2px;
    }

    /* Hero image area */
    .hero-img-wrap {
      position: relative;
      animation: fadeInRight .8s .2s ease both;
    }
    .hero-img-wrap img {
      border-radius: 16px;
      width: 100%;
      box-shadow: 0 30px 80px rgba(0,0,0,.4);
    }
    .hero-img-card {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 12px 18px;
      box-shadow: 0 10px 35px rgba(0,0,0,.15);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-img-card-1 { bottom: -18px; left: -28px; }
    .hero-img-card-2 { top: -18px; right: -20px; }
    .hero-img-card .icon-box {
      width: 38px; height: 38px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .icon-blue { background: #e8eef8; color: var(--primary); }
    .icon-red  { background: #fde8ea; color: var(--accent); }
    .hero-img-card strong { font-family: 'Cormorant Garamond', serif; font-size: .92rem; color: var(--text); }
    .hero-img-card small  { font-size: .75rem; color: var(--muted); display: block; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ─── TRUSTED BY ─── */
    .trusted-strip {
      background: #fff;
      padding: 28px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .trusted-strip p {
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .trusted-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 28px 50px;
    }
    .trusted-logo {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1rem;
      color: #b0b8cc;
      letter-spacing: -.3px;
      transition: color .2s;
    }
    .trusted-logo:hover { color: var(--primary); }

    /* ─── SECTIONS COMMON ─── */
    section { padding: 96px 0; }

    .section-tag {
      display: inline-block;
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent);
      margin-bottom: .75rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--primary);
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: 0.3px;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 600px;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--light-bg); }

    .service-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px 30px;
      height: 100%;
      border: 1.5px solid transparent;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: left;
    }
    .service-card:hover { border-color: #e0e7f5; transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,36,99,.1); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 58px; height: 58px;
      border-radius: 14px;
      background: linear-gradient(135deg, #e8eef8, #d0dbf0);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.45rem;
      color: var(--primary);
      margin-bottom: 1.3rem;
      transition: background .3s;
    }
    .service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), #1e40af); color: #fff; }

    .service-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: .65rem;
    }
    .service-card p { font-size: .93rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
    .service-link {
      font-size: .88rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 5px;
      transition: gap .2s;
    }
    .service-link:hover { gap: 9px; }

    /* ─── ABOUT ─── */
    #about { background: #fff; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      border-radius: 20px;
      width: 100%;
      box-shadow: 0 20px 60px rgba(10,36,99,.12);
    }
    .about-exp-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--primary);
      color: #fff;
      border-radius: 16px;
      padding: 20px 24px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(10,36,99,.25);
    }
    .about-exp-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--accent2);
      line-height: 1;
    }
    .about-exp-badge .lbl { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

    .about-check { list-style: none; padding: 0; margin: 1.5rem 0; }
    .about-check li {
      display: flex; align-items: flex-start; gap: 10px;
      margin-bottom: .9rem;
      font-size: .97rem;
      color: var(--text);
    }
    .about-check li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

    .btn-primary-custom {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 13px 30px;
      font-weight: 600;
      border-radius: 8px;
      font-size: .97rem;
      transition: background .2s, transform .15s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-custom:hover { background: #071b4e; transform: translateY(-2px); color: #fff; }

    /* ─── WHY US / PROCESS ─── */
    #process { background: var(--light-bg); }

    .step-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      position: relative;
      transition: box-shadow .25s, transform .25s;
    }
    .step-card:hover { box-shadow: 0 16px 45px rgba(10,36,99,.1); transform: translateY(-4px); }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 800;
      color: #eaeef6;
      position: absolute;
      top: 16px; right: 20px;
      line-height: 1;
    }
    .step-icon {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--primary), #1e40af);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 1.1rem;
    }
    .step-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .6rem; }
    .step-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

    /* ─── INDUSTRIES ─── */
    #industries { background: #fff; }

    .industry-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--light-bg);
      border: 1.5px solid #e8edf5;
      border-radius: 10px;
      padding: 16px 20px;
      transition: border-color .2s, background .2s, transform .2s;
      cursor: default;
    }
    .industry-pill:hover { border-color: var(--primary); background: #f0f3fb; transform: translateY(-3px); }
    .industry-pill i { font-size: 1.3rem; color: var(--primary); width: 28px; text-align: center; }
    .industry-pill span { font-weight: 600; font-size: .93rem; color: var(--text); }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--primary); }

    #testimonials .section-tag { color: var(--accent2); }
    #testimonials .section-title { color: #fff; }

    .testi-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding: 32px 28px;
      height: 100%;
      transition: background .2s;
    }
    .testi-card:hover { background: rgba(255,255,255,.11); }

    .testi-stars { color: var(--accent2); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testi-text { color: rgba(255,255,255,.82); font-size: .97rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,.25);
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name { font-weight: 700; color: #fff; font-size: .95rem; }
    .testi-role { font-size: .78rem; color: rgba(255,255,255,.5); }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: linear-gradient(135deg, var(--accent) 0%, #c1121f 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,.05);
      top: -200px; right: -100px;
    }
    .cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: #fff; letter-spacing: .3px; }
    .cta-band p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-top: .6rem; }
    .btn-cta-white {
      background: #fff;
      color: var(--accent);
      font-weight: 700;
      border: none;
      padding: 14px 32px;
      border-radius: 8px;
      font-size: 1rem;
      transition: transform .15s, box-shadow .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); color: var(--accent); }

    /* ─── FOOTER ─── */
    a.footer-brand img {
    width: 60%;
}
    footer {
      background: #0d1b3e;
      color: rgba(255,255,255,.65);
      padding: 72px 0 0;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.85rem;
      color: #fff;
      margin-bottom: .8rem;
      display: inline-block;
      letter-spacing: 1px;
    }
    .footer-brand span { color: var(--accent); }
    footer p { font-size: .9rem; line-height: 1.75; }
    .footer-title { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 1.1rem; letter-spacing: .5px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: .6rem; }
    .footer-links a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .9rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-social a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.65);
      font-size: .95rem;
      text-decoration: none;
      transition: background .2s, color .2s;
      margin-right: 8px;
    }
    .footer-social a:hover { background: var(--accent); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 20px 0;
      margin-top: 48px;
      font-size: .82rem;
    }

    /* ─── RESPONSIVE TWEAKS ─── */
    @media (max-width: 991px) {
      .hero { text-align: center; }
      .hero p { margin: 0 auto 2rem; }
      .hero-btns { justify-content: center !important; }
      .hero-stats { justify-content: center !important; }
      .hero-img-wrap { margin-top: 3rem; }
      .about-exp-badge { right: 10px; bottom: -10px; }
      section { padding: 72px 0; }
    }

    @media (max-width: 767px) {
      .hero h1 { font-size: 2rem; }
      .hero-img-card-1 { left: 0; }
      .hero-img-card-2 { right: 0; top: -10px; }
      .about-exp-badge { position: relative; right: 0; bottom: 0; display: inline-flex; gap: 12px; align-items: center; margin-top: 1rem; border-radius: 12px; }
      .about-img-wrap { margin-bottom: 1.5rem; }
    }
