
    :root {
      --orange: #F5A623;
      --blue:   #4DB8FF;
      --dark:   #0a0a0a;
      --darker: #050505;
      --glass:  rgba(15,15,15,0.97);
      --card-bg:#111111;
      --border: rgba(245,166,35,0.15);
      --text:   #e8e8e8;
      --muted:  #888;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    * { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body { font-family: 'Poppins', sans-serif; background: #0d0d0d; color: var(--text); }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--darker);
      border-bottom: 1px solid var(--border);
      font-size: .75rem; color: var(--muted); padding: 6px 0;
      animation: slideDown .5s ease both;
    }
    .topbar a { color: var(--muted); text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: var(--orange); }
    .topbar .social-icons a {
      width: 26px; height: 26px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid var(--border); border-radius: 50%;
      margin-left: 6px; font-size: .7rem; transition: all .25s;
    }
    .topbar .social-icons a:hover {
      background: var(--orange); border-color: var(--orange);
      color: #000; transform: translateY(-2px);
    }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--glass);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0; position: sticky; top: 0; z-index: 1000;
      transition: box-shadow .3s;
      animation: slideDown .5s ease .1s both;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(245,166,35,.12); }

    /* Logo */
    .navbar-brand { padding: 10px 0; }
    .navbar-brand img { height: 54px; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
    .navbar-brand:hover img { transform: scale(1.05) rotate(-1deg); }

    /* Nav links */
    .navbar-nav .nav-link {
      font-family: 'Roboto', sans-serif;
      font-weight: 600; font-size: .82rem;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--text) !important;
      padding: 24px 16px !important;
      position: relative; transition: color .2s; cursor: pointer;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      border-radius: 2px;
      transition: left .3s ease, right .3s ease;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after { left: 12px; right: 12px; }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .nav-item.show > .nav-link { color: var(--orange) !important; }

    /* Caret */
    .caret-icon { font-size: .65rem; margin-left: 4px; transition: transform .3s; vertical-align: middle; }
    .nav-item.show .caret-icon { transform: rotate(180deg); }

    /* ── DROPDOWN (opacity/visibility animated) ── */
    .dropdown-menu {
      display: block !important;          /* always in DOM */
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-top: 2px solid var(--orange);
      border-radius: 0 0 12px 12px;
      padding: 8px; min-width: 230px;
      margin-top: 0 !important;
      box-shadow: 0 20px 50px rgba(0,0,0,.65);
    }
    /* OPEN state */
    .nav-item.show > .dropdown-menu {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      transition: opacity .22s ease, transform .22s ease;
    }

    .dropdown-item {
      font-size: .82rem; color: var(--text);
      padding: 9px 14px; border-radius: 8px;
      display: flex; align-items: center; gap: 10px;
      transition: background .2s, color .2s, transform .2s;
      font-family: 'Poppins', sans-serif; font-weight: 400;
    }
    .dropdown-item i {
      width: 28px; height: 28px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(245,166,35,.1); border-radius: 6px;
      font-size: .85rem; color: var(--orange); flex-shrink: 0;
      transition: background .2s, color .2s;
    }
    .dropdown-item:hover { background: rgba(245,166,35,.08); color: var(--orange); transform: translateX(4px); }
    .dropdown-item:hover i { background: var(--orange); color: #000; }
    .dropdown-divider { border-color: var(--border); margin: 6px 8px; }

    /* ── MEGA MENU ── */
    .mega-menu { width: 680px; padding: 20px; left: 0; right: auto; }
    .mega-col-title {
      font-family: 'Roboto', sans-serif;
      font-size: .65rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 10px; padding-left: 14px;
    }
    .mega-featured {
      background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(77,184,255,.06));
      border: 1px solid var(--border); border-radius: 10px; padding: 16px;
    }
    .mega-featured h6 { font-family: 'Roboto', sans-serif; font-size: .8rem; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
    .mega-featured p  { font-size: .72rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
    .mega-featured a  {
      font-size: .72rem; font-weight: 600; color: var(--blue);
      text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
      transition: gap .2s, color .2s;
    }
    .mega-featured a:hover { gap: 8px; color: var(--orange); }

    /* CTA */
    .btn-cta {
      background: linear-gradient(135deg, var(--orange), #e8891a);
      color: #000 !important; font-family: 'Roboto', sans-serif;
      font-size: .75rem; font-weight: 800; letter-spacing: .07em;
      text-transform: uppercase; padding: 10px 22px;
      border-radius: 50px; border: none; text-decoration: none;
      transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
      box-shadow: 0 4px 18px rgba(245,166,35,.35);
      display: inline-block; white-space: nowrap;
    }
    .btn-cta:hover { transform: scale(1.06) translateY(-1px); box-shadow: 0 8px 28px rgba(245,166,35,.5); }

    /* Search btn */
    .search-btn {
      background: none; border: 1px solid var(--border); color: var(--muted);
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all .25s; cursor: pointer;
    }
    .search-btn:hover { border-color: var(--orange); color: var(--orange); }

    /* Search overlay */
    .search-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.92);
      z-index: 2000; display: none;
      align-items: center; justify-content: center; flex-direction: column;
    }
    .search-overlay.active { display: flex; animation: fadeIn .2s ease; }
    .search-overlay input {
      width: 600px; max-width: 90vw; background: transparent;
      border: none; border-bottom: 2px solid var(--orange);
      color: #fff; font-size: 2rem;
      font-family: 'Roboto', sans-serif; font-weight: 700;
      padding: 14px 0; outline: none;
    }
    .search-overlay input::placeholder { color: #444; }
    .search-overlay .close-search {
      position: absolute; top: 30px; right: 40px;
      background: none; border: none; color: #fff;
      font-size: 2rem; cursor: pointer; opacity: .6; transition: opacity .2s;
    }
    .search-overlay .close-search:hover { opacity: 1; }

    /* Toggler */
    .navbar-toggler { border: 1px solid var(--border); padding: 6px 10px; border-radius: 8px; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23F5A623' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Badge */
    .badge-new {
      font-size: .55rem; background: var(--blue); color: #000;
      font-weight: 800; border-radius: 4px; padding: 1px 5px;
      margin-left: 4px; vertical-align: middle;
      font-family: 'Roboto', sans-serif;
      animation: pulse 2s infinite;
    }

    /* ── MOBILE ── */
    @media (max-width: 991px) {
      .navbar-nav .nav-link { padding: 12px 16px !important; }
      .navbar-nav .nav-link::after { display: none; }
      /* On mobile, revert to normal block show/hide */
      .dropdown-menu {
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
        position: static !important;
        box-shadow: none; border-radius: 8px;
        margin: 0 0 8px 0 !important;
        width: 100% !important;
      }
      .dropdown-menu.mobile-show { display: block !important; }
      .mega-menu { width: 100% !important; }
    }

    /* Keyframes */
    @keyframes slideDown { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    @keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
    @keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.5} }


    /* ── HERO ── */
    .hero {
      position: relative;
      /* 100svh = small viewport height, fixes iOS Safari bottom-bar overlap */
      min-height: 100vh;
      min-height: 100svh;
      background: #05080f;
      display: flex; align-items: center;
      overflow: hidden;
      /* Clip rings/orb that overflow on mobile */
      -webkit-clip-path: inset(0);
      clip-path: inset(0);
    }

    /* Wave canvas — pointer-events:none so it never intercepts mouse events,
       will-change hints browser to composite on separate GPU layer */
    #waveCanvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
      will-change: transform;
    }

    /* Grid overlay */
    .hero-grid {
      position: absolute; inset: 0; z-index: 1;
      background-image:
        linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }

    /* Vignette */
    .hero::after {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background: radial-gradient(ellipse 75% 65% at 50% 50%, transparent 35%, rgba(5,8,15,.9) 100%);
      pointer-events: none;
    }

    /* Glow spots */
    .hero-glow-l {
      position: absolute; width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
      top: -80px; left: -80px; z-index: 1;
      animation: glowPulse 7s ease-in-out infinite alternate;
    }
    .hero-glow-r {
      position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(245,166,35,.07) 0%, transparent 70%);
      bottom: -100px; right: -100px; z-index: 1;
      animation: glowPulse 9s ease-in-out infinite alternate-reverse;
    }
    @keyframes glowPulse { from{transform:scale(1)} to{transform:scale(1.18)} }

    /* Content wrapper */
    .hero-inner {
      position: relative; z-index: 4;
      width: 100%; padding: 80px 0 60px;
    }

    /* Badge */
    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.08);
      border: 1px solid rgba(245,166,35,.3);
      border-radius: 50px; padding: 5px 14px;
      font-family: 'Roboto', sans-serif;
      font-size: .68rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: #f5a623; margin-bottom: 16px;
      animation: heroFadeUp .8s ease both;
    }
    .hero-label .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #f5a623; box-shadow: 0 0 6px #f5a623;
      animation: pulse 1.5s infinite;
    }

    /* Headline */
    .hero h1 {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.5rem, 3.2vw, 2.8rem);
      font-weight: 700; line-height: 1.14;
      letter-spacing: -.01em; margin-bottom: 14px;
      animation: heroFadeUp .8s ease .1s both;
    }
    .hero h1 .line-orange { color: #f5a623; }
    .hero h1 .line-neon {
      background: linear-gradient(90deg, #f5a623, #ffcc70, #f5a623);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Description */
    .hero-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .83rem; font-weight: 300;
      color: #b8c8d8; line-height: 1.75;
      max-width: 420px; margin-bottom: 26px;
      animation: heroFadeUp .8s ease .2s both;
    }

    /* Buttons */
    .hero-actions {
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
      animation: heroFadeUp .8s ease .3s both;
    }
    .btn-outline-hero {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(245,166,35,.3); color: #f5a623;
      font-family: 'Roboto', sans-serif;
      font-size: .72rem; font-weight: 500; letter-spacing: .06em;
      text-transform: uppercase; padding: 9px 18px;
      border-radius: 50px; text-decoration: none;
      transition: border-color .25s, color .25s, background .25s, box-shadow .25s;
    }
    .btn-outline-hero:hover {
      border-color: #f5a623; color: #f5a623;
      background: rgba(245,166,35,.08);
      box-shadow: 0 0 18px rgba(245,166,35,.2);
    }

    /* Stats */
    .hero-stats {
      display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
      animation: heroFadeUp .8s ease .4s both;
    }
    .stat-num {
      font-family: 'Roboto', sans-serif;
      font-size: 1.5rem; font-weight: 700; line-height: 1;
      color: #fff; margin-bottom: 3px;
    }
    .stat-num span { color: #f5a623; }
    .stat-label { font-family: 'Roboto', sans-serif; font-size: .65rem; color: #8899aa; letter-spacing: .04em; }

    /* ── AI VISUAL (RIGHT COLUMN) ── */
    .hero-visual {
      position: relative;
      animation: heroFadeUp .9s ease .2s both;
      display: flex; align-items: center; justify-content: center;
    }

    /* Outer glow halo */
    .hero-visual::before {
      content: '';
      position: absolute; inset: -20px; border-radius: 50%; z-index: 0;
      background: radial-gradient(ellipse 75% 75% at 50% 50%,
        rgba(245,166,35,.10) 0%, transparent 72%);
      animation: glowPulse 4s ease-in-out infinite alternate;
    }

    /* Orb wrapper — controlled size at every breakpoint */
    .ai-orb-wrap {
      position: relative;
      width: min(380px, 90vw);
      height: min(380px, 90vw);
      margin: 0 auto;
      z-index: 1;
      flex-shrink: 0;
      /* Prevent rings from causing horizontal scroll on small screens */
      overflow: visible;
    }

    .ai-orb {
      position: absolute; inset: 0; border-radius: 50%;
      background: radial-gradient(circle at 35% 35%,
        rgba(245,166,35,.42) 0%,
        rgba(245,140,20,.20) 40%,
        rgba(5,8,15,.94) 72%);
      border: 1.5px solid rgba(245,166,35,.45);
      box-shadow:
        0 0 36px rgba(245,166,35,.38),
        0 0 80px rgba(245,166,35,.14),
        inset 0 0 36px rgba(245,166,35,.12);
      animation: orbFloat 5s ease-in-out infinite;
    }
    @keyframes orbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

    .ai-ring {
      position: absolute; border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      animation: ringRotate linear infinite;
    }
    .ai-ring-1 { width:116%; height:116%; border:1.5px solid rgba(245,166,35,.48); animation-duration:18s; box-shadow:0 0 10px rgba(245,166,35,.12); }
    .ai-ring-2 { width:138%; height:138%; border:1px dashed rgba(245,166,35,.26); animation-duration:28s; animation-direction:reverse; }
    .ai-ring-3 { width:162%; height:162%; border:1px solid rgba(245,166,35,.10); animation-duration:44s; }
    @keyframes ringRotate { to{ transform:translate(-50%,-50%) rotate(360deg); } }

    .ai-orb-inner {
      position: absolute; inset: 17%;
      display: flex; align-items: center; justify-content: center;
    }
    .ai-orb-inner svg { width: 100%; height: 100%; overflow: visible; }

    /* Floating cards */
    .ai-card {
      position: absolute; z-index: 2;
      background: rgba(12,10,8,.92);
      border: 1px solid rgba(245,166,35,.38);
      border-radius: 10px; padding: 8px 12px;
      display: flex; align-items: center; gap: 8px;
      backdrop-filter: blur(16px);
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,.55), 0 0 14px rgba(245,166,35,.10);
      animation: cardFloat ease-in-out infinite;
    }
    .ai-card-icon {
      width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
    }
    .ai-card-text { font-size: .63rem; font-family:'Roboto',sans-serif; font-weight:700; color:#f0e0c0; }
    .ai-card-sub  { font-size: .55rem; color:#a08060; font-family:'Roboto',sans-serif; }

    /* Card positions — relative to orb-wrap */
    .ai-card-1 { top: 2%;    left: -2%;  animation-duration:5s;   animation-delay:0s; }
    .ai-card-2 { bottom: 8%; left: -2%;  animation-duration:6.5s; animation-delay:1s; }
    .ai-card-3 { top: 2%;    right:-2%;  animation-duration:5.8s; animation-delay:.5s; }
    .ai-card-4 { bottom: 4%; right:-2%;  animation-duration:7s;   animation-delay:1.5s; }
    @keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

    /* Typewriter cursor */
    .cursor-blink {
      display: inline-block; width: 2px; height: .9em;
      background: #f5a623; margin-left: 3px; vertical-align: middle;
      animation: blink .75s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
    @keyframes heroFadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

    /* Scroll hint */
    .scroll-hint {
      position: absolute; bottom: 20px; left: 50%;
      transform: translateX(-50%); z-index: 5;
      display: flex; flex-direction: column; align-items: center; gap: 5px;
      color: #6a7a8c; font-family:'Roboto',sans-serif;
      font-size:.58rem; letter-spacing:.1em; text-transform:uppercase;
    }
    .scroll-hint .scroll-line {
      width: 1px; height: 32px;
      background: linear-gradient(to bottom, #f5a623, transparent);
      animation: scrollLine 1.8s ease-in-out infinite;
    }
    @keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

    /* ════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ════════════════════════════════════════ */

    /* ── LARGE DESKTOP (1400px+) ── */
    @media (min-width: 1400px) {
      .ai-orb-wrap { width: 420px; height: 420px; }
    }

    /* ── LAPTOP (992–1199px) ── */
    @media (max-width: 1199px) and (min-width: 992px) {
      .ai-orb-wrap { width: 320px; height: 320px; }
      .ai-card { padding: 7px 10px; gap: 7px; }
      .ai-card-text { font-size: .60rem; }
      .hero h1 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
    }

    /* ── TABLET (768–991px) ── */
    @media (max-width: 991px) {
      .hero { min-height: auto; min-height: auto; padding: 0; }
      .hero-inner { padding: 60px 0 40px; }

      /* Stack layout: text first, orb below, centred */
      .hero .row { flex-direction: column; }
      .hero .col-lg-6 { width: 100%; max-width: 100%; }

      /* Text column */
      .hero .col-lg-6:first-child {
        text-align: center;
        display: flex; flex-direction: column; align-items: center;
      }
      .hero-desc { max-width: 560px; margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; flex-wrap: wrap; gap: 10px; }
      .hero-stats { justify-content: center; gap: 28px; margin-top: 24px; }

      /* Orb column — constrain so rings don't bleed off-screen */
      .hero-visual {
        margin-top: 40px;
        width: 100%;
        overflow: hidden;
        padding: 20px 0 30px;
      }
      .ai-orb-wrap {
        width: min(300px, 70vw);
        height: min(300px, 70vw);
      }

      /* Cards — pull them inside to avoid horizontal scroll */
      .ai-card-1 { top: 0%;     left: 4%;   }
      .ai-card-2 { bottom: 0%;  left: 4%;   }
      .ai-card-3 { top: 0%;     right: 4%;  }
      .ai-card-4 { bottom: 0%;  right: 4%;  }

      /* Hide scroll hint on tablet/mobile */
      .scroll-hint { display: none; }
    }

    /* ── MOBILE (576–767px) ── */
    @media (max-width: 767px) {
      .hero-inner { padding: 50px 0 36px; }
      .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
      .hero-desc { font-size: .80rem; max-width: 100%; }
      .hero-stats { gap: 20px; justify-content: center; }
      .stat-num { font-size: 1.3rem; }

      /* Buttons stack on very narrow screens */
      .hero-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px; }

      .hero-visual { padding: 16px 0 24px; }
      .ai-orb-wrap {
        width: min(240px, 72vw);
        height: min(240px, 72vw);
      }

      /* Cards stay inside orb-wrap bounds */
      .ai-card { padding: 6px 10px; gap: 6px; white-space: nowrap; }
      .ai-card-text { font-size: .58rem; }
      .ai-card-sub  { font-size: .50rem; }
      .ai-card-icon { width: 24px; height: 24px; font-size: .78rem; }

      .btn-cta { font-size: .7rem; padding: 9px 18px; }
      .btn-outline-hero { font-size: .68rem; padding: 8px 16px; }
    }

    /* ── SMALL MOBILE (< 480px) ── */
    @media (max-width: 479px) {
      .hero-inner { padding: 44px 0 30px; }
      .hero h1 { font-size: clamp(1.3rem, 8vw, 1.9rem); line-height: 1.2; }
      .hero-label { font-size: .60rem; padding: 4px 12px; }
      .hero-desc { font-size: .78rem; padding: 0 4px; }

      .hero-visual { padding: 12px 0 20px; overflow: hidden; }
      .ai-orb-wrap {
        width: min(210px, 80vw);
        height: min(210px, 80vw);
      }

      /* Hide cards 2 & 4 on very small screens to avoid crowding */
      .ai-card-2, .ai-card-4 { display: none; }
      /* Keep cards 1 & 3 inside the wrapper */
      .ai-card-1 { top: 2%;  left: -2%; font-size: .56rem; }
      .ai-card-3 { top: 2%;  right:-2%; font-size: .56rem; }

      .hero-stats { gap: 14px; }
      .stat-num { font-size: 1.15rem; }

      /* Stack buttons vertically on tiny screens */
      .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
      .btn-cta, .btn-outline-hero { width: 100%; max-width: 240px; justify-content: center; text-align: center; }
    }

    /* ── LANDSCAPE MOBILE ── */
    @media (max-height: 500px) and (orientation: landscape) {
      .hero { min-height: auto; }
      .hero-inner { padding: 30px 0 20px; }
      .hero-visual { display: none; }
      .hero .col-lg-6:first-child { text-align: left; align-items: flex-start; }
    }

    /* ════════════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════════════ */
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.08);
      border: 1px solid rgba(245,166,35,.25);
      border-radius: 50px; padding: 5px 16px;
      font-family: 'Roboto', sans-serif;
      font-size: .65rem; font-weight: 800;
      letter-spacing: .14em; text-transform: uppercase;
      color: #f5a623; margin-bottom: 14px;
    }
    .section-tag .dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #f5a623; box-shadow: 0 0 5px #f5a623;
    }
    .section-title {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800; line-height: 1.15;
      color: #fff; margin-bottom: 12px;
    }
    .section-title span { color: #f5a623; }
    .section-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .88rem; color: #8899aa;
      line-height: 1.75; max-width: 520px;
    }
    .section-divider {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, #f5a623, #ffcc70);
      border-radius: 2px; margin: 16px 0 20px;
    }

    /* ══ SERVICES — ORANGE BLACK GLASS ══ */
    #services {
      background: linear-gradient(160deg, #06040a 0%, #0d0700 50%, #06040a 100%);
      padding: 100px 0 110px;
      position: relative; overflow: hidden;
    }
    /* Orange ambient glows */
    #services::after {
      content: '';
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background:
        radial-gradient(ellipse 55% 45% at 15% 35%, rgba(245,166,35,.07) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 85% 65%, rgba(200,100,10,.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(245,120,0,.04) 0%, transparent 50%);
    }
    .svc-layer { position: absolute; inset: -10%; pointer-events: none; will-change: transform; z-index: 0; }
    .svc-layer-1 {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 1L59 17.5L59 50.5L30 67L1 50.5L1 17.5Z' fill='none' stroke='rgba(245,140,20,.1)' stroke-width='.6'/%3E%3C/svg%3E");
      background-size: 60px 104px; opacity: .7;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 5%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 5%, transparent 80%);
    }
    #services::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 5;
      background: linear-gradient(90deg, transparent 5%, rgba(245,166,35,.5) 30%, rgba(255,210,100,.9) 50%, rgba(245,166,35,.5) 70%, transparent 95%);
    }

    /* ── Header ── */
    .svc-hd { position: relative; z-index: 4; text-align: center; margin-bottom: 52px; }
    .svc-hd-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.3);
      border-radius: 50px; padding: 5px 18px; margin-bottom: 16px;
      font-family: 'Montserrat', sans-serif; font-size: .58rem; font-weight: 800;
      letter-spacing: .18em; text-transform: uppercase; color: #f5a623;
      box-shadow: 0 0 20px rgba(245,166,35,.08);
    }
    .svc-hd-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #f5a623; box-shadow: 0 0 8px #f5a623; animation: pulse 1.5s infinite;
    }
    .svc-hd h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 600;
      line-height: 1.1; letter-spacing: -.025em; color: #fff; margin-bottom: 12px;
    }
    .svc-hd h2 em {
      font-style: normal;
      background: linear-gradient(90deg, #f5a623, #ffcc50, #f5a623);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: svcShine 5s linear infinite;
    }
    @keyframes svcShine { to { background-position: 200% center; } }
    .svc-hd p { font-family: 'Roboto', sans-serif; font-size: .85rem; color: #a08860; max-width: 480px; margin: 0 auto; }

    /* ── 3-col layout ── */
    .svc-wheel-wrap {
      position: relative; z-index: 4;
      display: grid;
      grid-template-columns: 1fr minmax(300px, 420px) 1fr;
      align-items: center; gap: 20px;
    }
    .svc-col-left, .svc-col-right { display: flex; flex-direction: column; gap: 8px; }

    /* ── Service card — orange glass ── */
    .svc-item {
      display: flex; align-items: center; gap: 0;
      opacity: 0; transform: translateX(-28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .svc-item.svc-right  { flex-direction: row-reverse; transform: translateX(28px); }
    .svc-item.svc-in     { opacity: 1; transform: translateX(0); }

    .svc-item-card {
      flex: 1; padding: 12px 16px;
      background: rgba(245,140,20,.06);
      border: 1px solid rgba(245,140,20,.15);
      border-radius: 14px;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      position: relative; overflow: hidden;
      transition: all .4s cubic-bezier(.4,0,.2,1);
    }
    /* Top shimmer line */
    .svc-item-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,166,35,.3), transparent);
      transition: opacity .4s;
    }
    /* Hover state — normal */
    .svc-item:hover .svc-item-card {
      border-color: rgba(245,166,35,.25);
      background: rgba(245,140,20,.1);
      box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(245,166,35,.1);
    }
    /* ACTIVE highlight (triggered by segment hover) */
    .svc-item-card.seg-active {
      background: rgb(237 237 237) !important;
      border-color: rgba(245,166,35,.55) !important;
      box-shadow:
        0 0 0 1px rgba(245,166,35,.3),
        0 12px 40px rgba(0,0,0,.6),
        0 0 30px rgba(245,140,20,.18),
        inset 0 1px 0 rgba(255,200,80,.15) !important;
      transform: translateX(-5px);
    }
    .svc-item.svc-right .svc-item-card.seg-active { transform: translateX(5px); }

    /* Number badge — inline with title */
    .svc-card-head {
      display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
    }
    .svc-item.svc-right .svc-item-card       { text-align: right !important; }
    /* Right col: card-head flex row-reverse so number appears after title visually */
    .svc-item.svc-right .svc-card-head        {
      flex-direction: row-reverse;
      justify-content: flex-start;
    }
    /* h3 grows to fill space, text right-aligned */
    .svc-item.svc-right .svc-card-head h3     {
      flex: 1;
      text-align: right !important;
    }
    .svc-item.svc-right .svc-item-card p      { text-align: right !important; }
    .svc-item.svc-right .svc-card-num         { flex-shrink: 0; }
    .svc-card-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
      background: rgba(245,166,35,.12); border: 1px solid rgba(245,166,35,.3);
      color: #f5a623; transition: all .4s;
    }
    .svc-card-num i {
      font-size: .78rem; line-height: 1;
    }
    .svc-item-card.seg-active .svc-card-num {
      background: #f5a623; color: #000;
      box-shadow: 0 0 10px rgba(245,166,35,.6);
    }
    .svc-item-card.seg-active .svc-card-num i { color: #000; }
    .svc-item-card h3 {
      font-family: 'Montserrat', sans-serif; font-size: .86rem; font-weight: 400;
      color: #e8d4a8; margin: 0; line-height: 1.2;
      transition: color .35s;
    }
    .svc-item-card.seg-active h3 { color: #212529; }
    .svc-item-card p {
      font-family: 'Roboto', sans-serif; font-size: .84rem;
      color: #a08860; line-height: 1.6; margin: 0; transition: color .35s;
    }
    .svc-item-card.seg-active p { color: #343a40 !important; }

    /* Triangle arrow */
    .svc-tri { flex-shrink:0; width:0; height:0; border-style:solid; transition: transform .3s; }
    .svc-col-left .svc-tri  { border-width:10px 0 10px 16px; border-color:transparent transparent transparent currentColor; margin-left:10px; }
    .svc-col-right .svc-tri { border-width:10px 16px 10px 0; border-color:transparent currentColor transparent transparent; margin-right:10px; }
    .svc-item:hover .svc-tri { transform:scale(1.2); }
    .tric1,.tric2,.tric3,.tric4,.tric5,.tric6 { color: rgba(245,166,35,.5); }
    .svc-item-card.seg-active ~ .svc-tri,
    .svc-tri.active { color: #f5a623 !important; }

    /* ── SVG wheel ── */
    .svc-wheel-center { display: flex; align-items: center; justify-content: center; }
    .svc-wheel-svg-wrap { width: 100%; max-width: 420px; aspect-ratio: 1; position: relative; }
    .svc-wheel-svg-wrap svg { width: 100%; height: 100%; display: block; overflow: visible; }

    /* Segment transitions — JS drives transform (translateX/Y outward) */
    .svc-seg { transition: transform .38s cubic-bezier(.34,1.56,.64,1), filter .38s; }
    .seg-glass { transition: opacity .35s ease; }
    .seg-glow  { transition: stroke .35s ease; }
    .seg-icon-bg { transition: fill .35s, r .35s; }
    .seg-icon    { transition: font-size .35s; }

    /* Rotating dotted ring */
    .svc-arrow-ring {
      animation: svcRingRotate 14s linear infinite;
      transform-origin: 200px 200px;
    }
    @keyframes svcRingRotate { to { transform: rotate(360deg); } }

    /* Center icon */
    .svc-center-icon {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 110px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; pointer-events: none; z-index: 5;
    }
    .svc-center-icon i {
      font-size: 2.2rem; color: #f5a623; display: block; margin-bottom: 5px;
      text-shadow: 0 0 20px rgba(245,166,35,.8), 0 0 50px rgba(245,166,35,.3);
      animation: svcIconPulse 3s ease-in-out infinite;
    }
    @keyframes svcIconPulse {
      0%,100% { text-shadow: 0 0 18px rgba(245,166,35,.7), 0 0 40px rgba(245,166,35,.2); }
      50%     { text-shadow: 0 0 28px rgba(245,166,35,1),  0 0 70px rgba(245,166,35,.4); }
    }
    .svc-center-icon span {
      font-family: 'Montserrat', sans-serif; font-size: .50rem; font-weight: 900;
      letter-spacing: .16em; text-transform: uppercase; color: #c4903a;
      text-align: center; line-height: 1.5;
    }

    /* Stats bar */
    .svc-stats {
      position: relative; z-index: 4; margin-top: 44px;
      display: flex; align-items: center;
      background: rgba(245,140,20,.05); border: 1px solid rgba(245,140,20,.15);
      border-radius: 14px; overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .svc-stat { flex:1; text-align:center; padding:18px 12px; border-right:1px solid rgba(245,140,20,.12); transition:background .3s; }
    .svc-stat:last-child { border-right:none; }
    .svc-stat:hover { background: rgba(245,140,20,.1); }
    .svc-stat-n { font-family:'Montserrat',sans-serif; font-size:1.45rem; font-weight:900; color:#f5a623; display:block; margin-bottom:3px; }
    .svc-stat-l { font-family:'Roboto',sans-serif; font-size:.60rem; color:#5a4020; letter-spacing:.06em; text-transform:uppercase; }

    /* Responsive */
    @media (max-width: 991px) {
      .svc-wheel-wrap { grid-template-columns:1fr; gap:16px; }
      .svc-wheel-center { order:-1; }
      .svc-wheel-svg-wrap { max-width:300px; margin:0 auto; }
      .svc-item,.svc-item.svc-right { flex-direction:row; transform:translateY(20px); }
      .svc-item.svc-right .svc-item-card { text-align:left !important; }
      .svc-item.svc-right .svc-card-head h3 { text-align:left !important; }
      .svc-item.svc-right .svc-item-card p   { text-align:left !important; }
      .svc-item.svc-right .svc-card-num { float:none; }
      .svc-col-right .svc-tri { border-width:10px 0 10px 16px; border-color:transparent transparent transparent currentColor; margin-left:10px; margin-right:0; }
      .svc-stats { flex-wrap:wrap; }
      .svc-stat  { flex:0 0 50%; }
    }
    @media (max-width: 575px) {
      #services { padding:64px 0 72px; }
      .svc-wheel-svg-wrap { max-width:240px; }
    }

                /* ══ ABOUT SECTION ══ */
    #about {
      background: #05080f;
      padding: 100px 0;
      position: relative; overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,166,35,.25), transparent);
    }
    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    .about-img-box {
      background: linear-gradient(135deg,
        rgba(245,166,35,.12) 0%,
        rgba(10,10,18,.9) 60%,
        rgba(77,184,255,.06) 100%);
      border: 1px solid rgba(245,166,35,.18);
      border-radius: 20px;
      padding: 40px;
      min-height: 380px;
      display: flex; flex-direction: column;
      justify-content: space-between;
      position: relative; overflow: hidden;
    }
    .about-img-box::after {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .about-big-num {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(4rem, 10vw, 7rem);
      font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, #f5a623, rgba(245,166,35,.2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .about-big-label {
      font-family: 'Roboto', sans-serif;
      font-size: .75rem; font-weight: 300;
      color: #8899aa; letter-spacing: .1em; text-transform: uppercase;
    }
    .about-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(10,10,18,.95);
      border: 1px solid rgba(245,166,35,.25);
      border-radius: 12px; padding: 12px 18px;
      backdrop-filter: blur(6px);
    }
    .about-badge-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(245,166,35,.12);
      display: flex; align-items: center; justify-content: center;
      color: #f5a623; font-size: 1rem; flex-shrink: 0;
    }
    .about-badge-text { font-family: 'Roboto', sans-serif; font-size: .72rem; font-weight: 700; color: #e8e0d0; }
    .about-badge-sub  { font-family: 'Roboto', sans-serif; font-size: .62rem; color: #8899aa; }
    .about-feature {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(245,166,35,.07);
    }
    .about-feature:last-child { border-bottom: none; }
    .about-feature-icon {
      width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
      background: rgba(245,166,35,.08);
      border: 1px solid rgba(245,166,35,.15);
      display: flex; align-items: center; justify-content: center;
      color: #f5a623; font-size: .95rem;
    }
    .about-feature h4 {
      font-family: 'Roboto', sans-serif;
      font-size: .82rem; font-weight: 700; color: #e8e0d0; margin-bottom: 4px;
    }
    .about-feature p {
      font-family: 'Roboto', sans-serif;
      font-size: .76rem; color: #8899aa; line-height: 1.6; margin: 0;
    }

    /* ══ PORTFOLIO SECTION ══ */
    #portfolio {
      background: #07090f;
      padding: 100px 0;
      position: relative; overflow: hidden;
    }
    #portfolio::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,166,35,.25), transparent);
    }
    .portfolio-filter {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
    }
    .pf-btn {
      font-family: 'Roboto', sans-serif;
      font-size: .65rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 7px 18px;
      border-radius: 50px;
      border: 1px solid rgba(245,166,35,.2);
      background: transparent; color: #9aabb8;
      cursor: pointer; transition: all .2s;
    }
    .pf-btn.active, .pf-btn:hover {
      background: rgba(245,166,35,.1);
      border-color: rgba(245,166,35,.5);
      color: #f5a623;
    }
    .portfolio-card {
      background: rgba(12,12,18,.95);
      border: 1px solid rgba(245,166,35,.1);
      border-radius: 16px; overflow: hidden;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      height: 100%;
    }
    .portfolio-card:hover {
      border-color: rgba(245,166,35,.35);
      transform: translateY(-5px);
      box-shadow: 0 24px 50px rgba(0,0,0,.55), 0 0 25px rgba(245,166,35,.07);
    }
    .portfolio-thumb {
      width: 100%; aspect-ratio: 16/9;
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(77,184,255,.05));
      display: flex; align-items: center; justify-content: center;
    }
    .portfolio-thumb-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; opacity: .35;
      transition: transform .4s, opacity .4s;
    }
    .portfolio-card:hover .portfolio-thumb-inner {
      transform: scale(1.08); opacity: .55;
    }
    .portfolio-thumb-overlay {
      position: absolute; inset: 0;
      background: rgba(5,8,15,.7);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
      gap: 12px;
    }
    .portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }
    .portfolio-thumb-overlay a {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(245,166,35,.15);
      border: 1px solid rgba(245,166,35,.4);
      display: flex; align-items: center; justify-content: center;
      color: #f5a623; font-size: 1rem; text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .portfolio-thumb-overlay a:hover { background: rgba(245,166,35,.3); transform: scale(1.1); }
    .portfolio-info { padding: 20px 22px 22px; }
    .portfolio-cat {
      font-family: 'Roboto', sans-serif;
      font-size: .58rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; color: #f5a623; margin-bottom: 6px;
    }
    .portfolio-info h3 {
      font-family: 'Roboto', sans-serif;
      font-size: .92rem; font-weight: 700; color: #e8e0d0; margin-bottom: 6px;
    }
    .portfolio-info p {
      font-family: 'Roboto', sans-serif;
      font-size: .76rem; color: #8899aa; line-height: 1.6; margin: 0;
    }

    /* ══ TESTIMONIALS SECTION — CENTER SLIDER ══ */
    /* ══ TESTIMONIALS — AURORA MESH BACKGROUND ══ */
    #testimonials {
      background: #050810;
      padding: 100px 0;
      position: relative; overflow: hidden;
    }

    /* Deep aurora base — layered mesh gradients */
    #testimonials::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 60% at 15% 50%,  rgba(245,166,35,.07)  0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 85% 30%,  rgba(77,184,255,.055) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245,120,20,.05)  0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 0%,   rgba(77,184,255,.03)  0%, transparent 50%);
      animation: auroraShift 12s ease-in-out infinite alternate;
    }
    @keyframes auroraShift {
      0%   { opacity: .7; transform: scale(1)   rotate(0deg); }
      100% { opacity: 1;  transform: scale(1.06) rotate(.5deg); }
    }

    /* Top edge line */
    #testimonials .testi-edge-t {
      position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
      background: linear-gradient(90deg, transparent 5%, rgba(245,166,35,.5) 30%,
                                         rgba(255,204,112,.8) 50%,
                                         rgba(245,166,35,.5) 70%, transparent 95%);
      pointer-events: none;
    }
    #testimonials .testi-edge-b {
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 2;
      background: linear-gradient(90deg, transparent 10%, rgba(245,166,35,.18) 50%, transparent 90%);
      pointer-events: none;
    }

    /* ── Hex grid ── */
    .testi-hex-grid {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      opacity: .28;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z' fill='none' stroke='rgba(245,166,35,0.22)' stroke-width='0.6'/%3E%3Cpath d='M28 36 L56 52 L56 84 L28 100 L0 84 L0 52 Z' fill='none' stroke='rgba(245,166,35,0.22)' stroke-width='0.6'/%3E%3C/svg%3E");
      background-size: 56px 100px;
      mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
    }

    /* ── Particle canvas ── */
    #testiParticleCanvas {
      position: absolute; inset: 0; z-index: 0;
      pointer-events: none; width: 100%; height: 100%;
    }

    /* ── Neon beam sweeps ── */
    .testi-beam {
      position: absolute; pointer-events: none; z-index: 0;
      border-radius: 50%;
      filter: blur(60px);
    }
    .testi-beam-1 {
      width: 500px; height: 180px;
      background: radial-gradient(ellipse, rgba(245,166,35,.09) 0%, transparent 70%);
      top: 20%; left: -100px;
      animation: beamSweep1 9s ease-in-out infinite;
    }
    .testi-beam-2 {
      width: 400px; height: 160px;
      background: radial-gradient(ellipse, rgba(77,184,255,.07) 0%, transparent 70%);
      bottom: 15%; right: -80px;
      animation: beamSweep2 11s ease-in-out infinite 2s;
    }
    .testi-beam-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(245,140,20,.06) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      animation: beamPulse 7s ease-in-out infinite;
    }
    @keyframes beamSweep1 {
      0%,100% { transform: translateX(0)   scaleY(1);   opacity:.6; }
      50%     { transform: translateX(160px) scaleY(1.3); opacity:1;  }
    }
    @keyframes beamSweep2 {
      0%,100% { transform: translateX(0)    scaleY(1);   opacity:.5; }
      50%     { transform: translateX(-140px) scaleY(1.4); opacity:.9; }
    }
    @keyframes beamPulse {
      0%,100% { transform: translate(-50%,-50%) scale(1);   opacity:.5; }
      50%     { transform: translate(-50%,-50%) scale(1.25); opacity:.9; }
    }

    /* ── Floating hexagon chips ── */
    .testi-hex-chip {
      position: absolute; pointer-events: none; z-index: 0;
      opacity: 0;
      animation: chipFloat linear infinite;
    }
    .testi-hex-chip svg { display: block; }
    .testi-hex-chip-1 { top: 12%; left: 8%;   animation-duration: 8s;  animation-delay: 0s;  }
    .testi-hex-chip-2 { top: 70%; left: 88%;  animation-duration: 11s; animation-delay: 2s;  }
    .testi-hex-chip-3 { top: 40%; left: 3%;   animation-duration: 9s;  animation-delay: 1s;  }
    .testi-hex-chip-4 { top: 20%; right: 6%;  animation-duration: 13s; animation-delay: 3s;  }
    .testi-hex-chip-5 { top: 78%; left: 18%;  animation-duration: 10s; animation-delay: .5s; }
    .testi-hex-chip-6 { top: 55%; right: 4%;  animation-duration: 12s; animation-delay: 4s;  }
    @keyframes chipFloat {
      0%   { transform: translateY(0)    rotate(0deg);   opacity: 0; }
      15%  { opacity: .55; }
      50%  { transform: translateY(-24px) rotate(30deg); opacity: .7; }
      85%  { opacity: .4; }
      100% { transform: translateY(0)    rotate(60deg);  opacity: 0; }
    }

    /* ── Scan line sweep (moving) ── */
    .testi-scan-sweep {
      position: absolute; left: 0; right: 0; height: 2px; z-index: 0;
      background: linear-gradient(90deg, transparent, rgba(245,166,35,.15), transparent);
      pointer-events: none;
      animation: scanSweep 6s linear infinite;
    }
    @keyframes scanSweep {
      0%   { top: -2px; opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: .5; }
      100% { top: 100%; opacity: 0; }
    }

    /* ── Data particle dots (static decorative) ── */
    .testi-dot-field {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(245,166,35,.22) 1px, transparent 1px),
        radial-gradient(circle, rgba(77,184,255,.14) 1px, transparent 1px);
      background-size: 44px 44px, 66px 66px;
      background-position: 0 0, 22px 22px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 100%);
      opacity: .35;
    }

        /* ── Outer viewport — clips side bleed ── */
    .testi-viewport {
      overflow: hidden;
      width: 100%;
      padding: 48px 0 32px;
      position: relative;
    }

    /* ── Track — wide enough to hold all slides side-by-side ── */
    .testi-track {
      display: flex;
      align-items: center;
      gap: 28px;
      /* JS sets transform: translateX() to scroll */
      transition: transform .6s cubic-bezier(.4,0,.2,1);
      will-change: transform;
      /* center-start offset is set by JS */
    }

    /* ── Individual slide ── */
    .testi-slide {
      flex: 0 0 480px;
      background: rgba(10,10,18,.95);
      border: 1px solid rgba(245,166,35,.08);
      border-radius: 24px;
      padding: 40px 36px 34px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      will-change: transform, opacity, box-shadow;
      transition:
        transform   .6s cubic-bezier(.4,0,.2,1),
        opacity     .6s cubic-bezier(.4,0,.2,1),
        border-color .6s ease,
        box-shadow   .6s ease;
      /* non-active: scale down + dim */
      transform: scale(.88);
      opacity: .38;
    }

    /* ── ACTIVE state ── */
    .testi-slide.ts-active {
      transform: scale(1);
      opacity: 1;
      border-color: rgba(245,166,35,.4);
      box-shadow:
        0 0 0 1px rgba(245,166,35,.15),
        0 32px 80px rgba(0,0,0,.75),
        0 0 60px rgba(245,166,35,.12);
      cursor: default;
      z-index: 2;
    }

    /* Top shimmer line — only on active */
    .testi-slide::after {
      content: '';
      position: absolute; top: 0; left: 8%; right: 8%; height: 2px;
      background: linear-gradient(90deg, transparent, #f5a623, #ffcc70, #f5a623, transparent);
      opacity: 0;
      transition: opacity .6s ease;
      border-radius: 0 0 2px 2px;
    }
    .testi-slide.ts-active::after { opacity: 1; }

    /* Decorative quote ── */
    .testi-quote {
      font-size: 6rem; line-height: .8;
      font-family: Georgia, serif;
      color: rgba(245,166,35,.07);
      position: absolute; top: 18px; right: 22px;
      pointer-events: none;
      transition: color .6s;
    }
    .testi-slide.ts-active .testi-quote { color: rgba(245,166,35,.13); }

    /* Stars */
    .testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
    .testi-stars span {
      font-size: .85rem;
      color: rgba(245,166,35,.25);
      transition: color .5s;
    }
    .testi-slide.ts-active .testi-stars span { color: #f5a623; }

    /* Text */
    .testi-text {
      font-family: 'Roboto', sans-serif;
      font-size: .88rem; line-height: 1.85;
      color: #8090a0; font-style: italic;
      margin-bottom: 28px;
      transition: color .6s;
    }
    .testi-slide.ts-active .testi-text { color: #94a3b8; }

    /* Author */
    .testi-author {
      display: flex; align-items: center; gap: 14px;
      border-top: 1px solid rgba(245,166,35,.08);
      padding-top: 20px;
    }
    .testi-avatar {
      width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(245,166,35,.2), rgba(245,166,35,.06));
      border: 2px solid rgba(245,166,35,.12);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Roboto', sans-serif; font-weight: 800;
      font-size: .85rem; color: rgba(245,166,35,.35);
      transition: border-color .6s, color .6s, box-shadow .6s;
    }
    .testi-slide.ts-active .testi-avatar {
      border-color: rgba(245,166,35,.55);
      color: #f5a623;
      box-shadow: 0 0 18px rgba(245,166,35,.22);
    }
    .testi-name {
      font-family: 'Roboto', sans-serif;
      font-size: .82rem; font-weight: 700;
      color: #1e2530; transition: color .6s;
    }
    .testi-slide.ts-active .testi-name { color: #e8e0d0; }
    .testi-role {
      font-family: 'Roboto', sans-serif;
      font-size: .68rem; color: #1e2530; transition: color .6s;
    }
    .testi-slide.ts-active .testi-role { color: #8899aa; }

    /* ── Controls ── */
    .testi-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 18px; margin-top: 32px;
    }
    .testi-arrow {
      width: 48px; height: 48px; border-radius: 50%;
      border: 1px solid rgba(245,166,35,.22);
      background: rgba(245,166,35,.05);
      color: #f5a623; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .25s; flex-shrink: 0;
      outline: none;
    }
    .testi-arrow:hover {
      background: rgba(245,166,35,.15);
      border-color: rgba(245,166,35,.6);
      transform: scale(1.1);
      box-shadow: 0 0 18px rgba(245,166,35,.28);
    }
    .testi-arrow:active { transform: scale(.94); }

    .testi-dots { display: flex; gap: 8px; align-items: center; }
    .testi-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(245,166,35,.18);
      border: none; padding: 0; cursor: pointer;
      transition: all .38s cubic-bezier(.4,0,.2,1);
    }
    .testi-dot.active {
      width: 26px; border-radius: 4px;
      background: #f5a623;
      box-shadow: 0 0 12px rgba(245,166,35,.5);
    }

    /* Progress bar */
    .testi-progress {
      max-width: 300px; height: 2px;
      background: rgba(245,166,35,.1); border-radius: 2px;
      margin: 24px auto 0; overflow: hidden;
    }
    .testi-progress-bar {
      height: 100%; width: 0%;
      background: linear-gradient(90deg, #f5a623, #ffcc70);
      border-radius: 2px;
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .testi-slide { flex: 0 0 380px; padding: 30px 26px 26px; }
    }
    @media (max-width: 575px) {
      .testi-slide { flex: 0 0 300px; padding: 24px 20px 22px; }
      .testi-quote { font-size: 4rem; }
    }
        /* Trusted by logos */
    .trusted-wrap {
      margin-top: 70px; text-align: center;
    }
    .trusted-label {
      font-family: 'Roboto', sans-serif;
      font-size: .62rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: #7a8a9c; margin-bottom: 28px;
    }
    .trusted-logos {
      display: flex; align-items: center; justify-content: center;
      gap: 36px; flex-wrap: wrap;
    }
    .trusted-logo {
      font-family: 'Roboto', sans-serif;
      font-size: .78rem; font-weight: 800; letter-spacing: .08em;
      text-transform: uppercase; color: #6a7a8c;
      transition: color .25s;
    }
    .trusted-logo:hover { color: #f5a623; }
    

    /* ══ FOOTER — MODERN GLASSMORPHISM ══ */
    footer {
      background: #02040a;
      position: relative;
      overflow: hidden;
    }

    /* Animated aurora top border */
    footer::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(245,166,35,.2) 15%,
        rgba(255,204,112,.9) 35%,
        #f5a623 50%,
        rgba(255,204,112,.9) 65%,
        rgba(245,166,35,.2) 85%,
        transparent 100%);
      z-index: 2;
    }

    /* Subtle grid texture */
    footer::after {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(245,166,35,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,166,35,.025) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 80%);
    }

    /* Glow blobs */
    .footer-glow-l {
      position: absolute; width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(245,166,35,.055) 0%, transparent 65%);
      bottom: -200px; left: -150px; pointer-events: none; z-index: 0;
    }
    .footer-glow-r {
      position: absolute; width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(77,184,255,.04) 0%, transparent 65%);
      top: -100px; right: -100px; pointer-events: none; z-index: 0;
    }

    /* ── CTA band at top of footer ── */
    .footer-cta-band {
      position: relative; z-index: 1;
      background: linear-gradient(135deg,
        rgba(245,166,35,.06) 0%,
        rgba(245,166,35,.02) 50%,
        rgba(77,184,255,.03) 100%);
      border-bottom: 1px solid rgba(245,166,35,.1);
      padding: 48px 0;
    }
    .footer-cta-band h2 {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800; color: #fff; margin-bottom: 6px;
    }
    .footer-cta-band h2 span { color: #f5a623; }
    .footer-cta-band p {
      font-family: 'Roboto', sans-serif;
      font-size: .83rem; color: #8090a0; margin: 0;
    }

    /* ── Main footer body ── */
    .footer-body {
      position: relative; z-index: 1;
      padding: 60px 0 0;
    }

    /* Brand column */
    .footer-logo-img { height: 46px; margin-bottom: 18px; display: block; }
    .footer-tagline {
      font-family: 'Roboto', sans-serif;
      font-size: .62rem; font-weight: 800; letter-spacing: .18em;
      text-transform: uppercase; color: #f5a623;
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-tagline::before {
      content: '';
      width: 20px; height: 1px; background: #f5a623;
    }
    .footer-brand-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .78rem; color: #7a8898; line-height: 1.75;
      max-width: 270px; margin-bottom: 24px;
    }

    /* Social icons — glowing */
    .footer-socials { display: flex; gap: 10px; margin-bottom: 28px; }
    .footer-social {
      width: 38px; height: 38px; border-radius: 10px;
      border: 1px solid rgba(245,166,35,.18);
      background: rgba(245,166,35,.05);
      display: flex; align-items: center; justify-content: center;
      color: #7a8898; font-size: .88rem; text-decoration: none;
      transition: all .28s cubic-bezier(.4,0,.2,1);
      position: relative; overflow: hidden;
    }
    .footer-social::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(245,166,35,.05));
      opacity: 0; transition: opacity .28s;
    }
    .footer-social:hover {
      border-color: rgba(245,166,35,.6);
      color: #f5a623;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,.4), 0 0 14px rgba(245,166,35,.25);
    }
    .footer-social:hover::before { opacity: 1; }

    /* Stat pills */
    .footer-stats { display: flex; gap: 12px; flex-wrap: wrap; }
    .footer-stat-pill {
      background: rgba(245,166,35,.06);
      border: 1px solid rgba(245,166,35,.12);
      border-radius: 50px; padding: 6px 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-stat-num {
      font-family: 'Roboto', sans-serif;
      font-size: .82rem; font-weight: 800; color: #f5a623;
    }
    .footer-stat-lbl {
      font-family: 'Roboto', sans-serif;
      font-size: .65rem; color: #8a9aaa;
    }

    /* Column headings */
    .footer-col-head {
      font-family: 'Roboto', sans-serif;
      font-size: .60rem; font-weight: 800; letter-spacing: .16em;
      text-transform: uppercase; color: #f5a623;
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-col-head::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, rgba(245,166,35,.25), transparent);
    }

    /* Links */
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-family: 'Roboto', sans-serif;
      font-size: .79rem; color: #7a8898; text-decoration: none;
      display: flex; align-items: center; gap: 7px;
      transition: color .22s, gap .22s;
    }
    .footer-links a::before {
      content: '';
      width: 4px; height: 4px; border-radius: 50%;
      background: rgba(245,166,35,.25);
      flex-shrink: 0;
      transition: background .22s, transform .22s;
    }
    .footer-links a:hover { color: #f5a623; gap: 10px; }
    .footer-links a:hover::before { background: #f5a623; transform: scale(1.4); }

    /* Newsletter */
    .footer-newsletter-box {
      background: rgba(245,166,35,.04);
      border: 1px solid rgba(245,166,35,.12);
      border-radius: 16px; padding: 24px;
      position: relative; overflow: hidden;
    }
    .footer-newsletter-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,166,35,.4), transparent);
    }
    .footer-nl-title {
      font-family: 'Roboto', sans-serif;
      font-size: .80rem; font-weight: 700; color: #e8e0d0;
      margin-bottom: 6px;
    }
    .footer-nl-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .72rem; color: #7a8898; line-height: 1.6; margin-bottom: 16px;
    }
    .footer-nl-form { display: flex; gap: 0; }
    .footer-nl-input {
      flex: 1; background: rgba(255,255,255,.04);
      border: 1px solid rgba(245,166,35,.18);
      border-right: none;
      border-radius: 10px 0 0 10px;
      padding: 11px 16px; color: #e8e8e8;
      font-family: 'Roboto', sans-serif; font-size: .80rem;
      outline: none; transition: border-color .2s;
    }
    .footer-nl-input::placeholder { color: #5a6a7a; }
    .footer-nl-input:focus { border-color: rgba(245,166,35,.5); }
    .footer-nl-btn {
      background: linear-gradient(135deg, #f5a623, #e08914);
      border: none; border-radius: 0 10px 10px 0;
      padding: 11px 20px; color: #000;
      font-family: 'Roboto', sans-serif;
      font-size: .68rem; font-weight: 800; letter-spacing: .06em;
      cursor: pointer; transition: opacity .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .footer-nl-btn:hover { opacity: .88; box-shadow: 0 0 16px rgba(245,166,35,.4); }

    /* Contact info mini */
    .footer-contact-row {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    .footer-contact-row:last-child { margin-bottom: 0; }
    .footer-contact-icon {
      width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
      background: rgba(245,166,35,.07);
      border: 1px solid rgba(245,166,35,.12);
      display: flex; align-items: center; justify-content: center;
      color: #f5a623; font-size: .75rem;
    }
    .footer-contact-val {
      font-family: 'Roboto', sans-serif;
      font-size: .75rem; color: #8a9aaa;
    }
    .footer-contact-val a { color: #8a9aaa; text-decoration: none; transition: color .2s; }
    .footer-contact-val a:hover { color: #f5a623; }

    /* ── Bottom bar ── */
    .footer-bottom {
      position: relative; z-index: 1;
      margin-top: 56px;
      border-top: 1px solid rgba(245,166,35,.07);
      padding: 18px 0;
      background: rgba(0,0,0,.2);
    }
    .footer-copy {
      font-family: 'Roboto', sans-serif;
      font-size: .70rem; color: #6a7a8c;
    }
    .footer-copy a { color: #f5a623; text-decoration: none; }
    .footer-copy .heart { color: #f5a623; display: inline-block; animation: heartBeat 1.6s ease-in-out infinite; }
    @keyframes heartBeat {
      0%,100% { transform: scale(1); }
      14%     { transform: scale(1.25); }
      28%     { transform: scale(1); }
      42%     { transform: scale(1.2); }
      70%     { transform: scale(1); }
    }
    .footer-legal { display: flex; gap: 18px; align-items: center; }
    .footer-legal a {
      font-family: 'Roboto', sans-serif;
      font-size: .70rem; color: #6a7a8c; text-decoration: none;
      transition: color .2s; position: relative;
    }
    .footer-legal a:not(:last-child)::after {
      content: '·'; position: absolute; right: -10px; color: #6a7a8c;
    }
    .footer-legal a:hover { color: #f5a623; }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .footer-cta-band { padding: 36px 0; text-align: center; }
      .footer-cta-band .d-flex { justify-content: center !important; }
      .footer-body { padding: 48px 0 0; }
      .footer-brand-desc { max-width: 100%; }
      .footer-stats { justify-content: flex-start; }
    }
    @media (max-width: 767px) {
      .footer-cta-band h2 { font-size: 1.3rem; }
      .footer-stats { gap: 8px; }
      .footer-stat-pill { padding: 5px 12px; }
      .footer-bottom { text-align: center; }
      .footer-bottom .d-flex { flex-direction: column; gap: 12px; align-items: center; }
      .footer-legal { justify-content: center; }
    }

    /* ══ RESPONSIVE: NEW SECTIONS ══ */
    @media (max-width: 991px) {
      #services, #about, #portfolio, #testimonials, #contact { padding: 70px 0; }
      .contact-box { padding: 32px 24px; }
      .about-img-box { min-height: 280px; }
      footer { padding: 50px 0 0; }
    }
    @media (max-width: 767px) {
      #services, #about, #portfolio, #testimonials { padding: 56px 0; }
      #contact { padding: 56px 0 0; }
      .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
      .service-card { padding: 24px 20px; }
      .contact-box { padding: 26px 18px; }
      .portfolio-filter { gap: 6px; }
      .pf-btn { font-size: .60rem; padding: 6px 14px; }
      .footer-brand p { max-width: 100%; }
      .footer-bottom .d-flex { flex-direction: column; gap: 10px; text-align: center; }
      .footer-legal { justify-content: center; }
      .trusted-logos { gap: 20px; }
    }
    @media (max-width: 479px) {
      .service-card { padding: 20px 16px; }
      .testi-card { padding: 24px 18px; }
      .contact-box { padding: 22px 14px; }
      .about-big-num { font-size: clamp(3rem, 16vw, 5rem); }
    }

    /* Skip link — hidden visually, shown on focus (accessibility + SEO) */
    .skip-link {
      position: absolute; top: -100px; left: 12px; z-index: 9999;
      background: var(--orange); color: #000;
      font-family: 'Roboto', sans-serif; font-weight: 700;
      font-size: .75rem; padding: 8px 16px; border-radius: 0 0 8px 8px;
      text-decoration: none; transition: top .2s;
    }
    .skip-link:focus { top: 0; }

    /* Prevent horizontal scroll globally on mobile */
    html, body { overflow-x: hidden; max-width: 100%; }
 