
    :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 DRAWER ── */
    /* Hamburger button */
    .nav-drawer-toggle {
      display: none;
      background: none; border: 1px solid var(--border);
      border-radius: 8px; padding: 6px 10px; cursor: pointer;
      flex-direction: column; gap: 5px; align-items: center; justify-content: center;
      width: 42px; height: 42px;
      transition: border-color .25s;
    }
    .nav-drawer-toggle:hover { border-color: var(--orange); }
    .nav-drawer-toggle span {
      display: block; width: 20px; height: 2px;
      background: var(--orange); border-radius: 2px;
      transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s, width .35s;
      transform-origin: center;
    }
    /* X state */
    .nav-drawer-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-drawer-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-drawer-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Backdrop */
    .nav-drawer-backdrop {
      position: fixed; inset: 0; z-index: 1100;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(3px);
      opacity: 0; pointer-events: none;
      transition: opacity .38s ease;
    }
    .nav-drawer-backdrop.active { opacity: 1; pointer-events: auto; }

    /* Drawer panel */
    .nav-drawer {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
      width: min(320px, 85vw);
      background: var(--glass);
      border-left: 1px solid var(--border);
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .42s cubic-bezier(.4,0,.2,1);
      overflow-y: auto; overflow-x: hidden;
    }
    .nav-drawer.active { transform: translateX(0); }
    /* Top shadow line */
    .nav-drawer::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    /* Drawer header */
    .nav-drawer-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px 14px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .nav-drawer-head img { height: 36px; }
    .nav-drawer-close {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid var(--border); background: none;
      color: var(--muted); font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, color .2s;
    }
    .nav-drawer-close:hover { border-color: var(--orange); color: var(--orange); }

    /* Drawer nav links */
    .nav-drawer-body {
      flex: 1; padding: 12px 0 24px; overflow-y: auto;
    }
    .nav-drawer .drawer-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 22px;
      font-family: 'Roboto', sans-serif; font-size: .82rem;
      font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
      color: var(--text); text-decoration: none;
      border-bottom: 1px solid rgba(245,166,35,.06);
      transition: color .2s, background .2s;
      cursor: pointer;
    }
    .nav-drawer .drawer-link:hover,
    .nav-drawer .drawer-link.active { color: var(--orange); background: rgba(245,166,35,.05); }
    .nav-drawer .drawer-link i.caret {
      font-size: .65rem; color: var(--muted);
      transition: transform .3s;
    }
    .nav-drawer .drawer-link.open i.caret { transform: rotate(180deg); color: var(--orange); }

    /* Drawer sub-menu accordion */
    .drawer-submenu {
      max-height: 0; overflow: hidden;
      transition: max-height .38s cubic-bezier(.4,0,.2,1);
      background: rgba(245,166,35,.03);
    }
    .drawer-submenu.open { max-height: 600px; }
    .drawer-submenu .dropdown-item {
      padding: 10px 32px; font-size: .78rem;
      border-bottom: 1px solid rgba(245,166,35,.04);
    }
    .drawer-submenu .dropdown-item:hover { background: rgba(245,166,35,.07); color: var(--orange); }
    .drawer-submenu .dropdown-item i {
      width: 24px; height: 24px; font-size: .78rem; border-radius: 5px;
      background: rgba(245,166,35,.08);
    }

    /* Drawer footer CTA */
    .nav-drawer-foot {
      padding: 20px 22px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }
    .nav-drawer-foot .btn-cta { width: 100%; text-align: center; justify-content: center; display: flex; }

    @media (max-width: 991px) {
      /* Hide Bootstrap collapse, show drawer toggle */
      .navbar-toggler { display: none !important; }
      .navbar-collapse { display: none !important; }
      .nav-drawer-toggle { display: flex !important; }
      /* Keep desktop dropdown CSS from conflicting */
      .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; padding: 0; -webkit-clip-path: none; clip-path: none; }
      .hero-visual { display: none !important; }
      .hero-inner { padding: 60px 0 40px; }

      .hero .row { flex-direction: column; }
      .hero .col-lg-6 { width: 100%; max-width: 100%; }

      .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 — give extra vertical room for cards above/below */
      .hero-visual {
        margin-top: 20px;
        width: 100%;
        /* overflow visible so cards don't clip */
        overflow: visible;
        padding: 56px 0 56px; /* extra top/bottom room for cards */
      }
      .ai-orb-wrap {
        width: min(280px, 62vw);
        height: min(280px, 62vw);
      }

      /* Reposition all 4 cards INSIDE the orb-wrap area */
      /* Cards sit just outside the orb edge, not the wrap edge */
      .ai-card-1 { top: -18%;  left: 50%; transform: translateX(-50%); }
      .ai-card-2 { bottom: -18%; left: 50%; transform: translateX(-50%); }
      .ai-card-3 { display: none; } /* hide to avoid crowding */
      .ai-card-4 { display: none; }

      .ai-card { padding: 7px 12px; gap: 7px; white-space: nowrap; }
      .ai-card-text { font-size: .60rem; }
      .ai-card-sub  { font-size: .52rem; }
      .ai-card-icon { width: 26px; height: 26px; font-size: .82rem; }

      .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; }

      .hero-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px; }

      .hero-visual {
        overflow: visible;
        padding: 52px 0 52px;
      }
      .ai-orb-wrap {
        width: min(230px, 65vw);
        height: min(230px, 65vw);
      }

      /* Top card + bottom card only */
      .ai-card-1 { top: -20%;  left: 50%; transform: translateX(-50%); }
      .ai-card-2 { bottom: -20%; left: 50%; transform: translateX(-50%); }
      .ai-card-3 { display: none; }
      .ai-card-4 { display: none; }

      .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 {
        overflow: visible;
        padding: 48px 0 48px;
      }
      .ai-orb-wrap {
        width: min(200px, 68vw);
        height: min(200px, 68vw);
      }

      /* Only top card visible on tiny screens */
      .ai-card-1 { top: -22%;  left: 50%; transform: translateX(-50%); }
      .ai-card-2 { bottom: -22%; left: 50%; transform: translateX(-50%); }
      .ai-card-3 { display: none; }
      .ai-card-4 { display: none; }

      .hero-stats { gap: 14px; }
      .stat-num { font-size: 1.15rem; }

      .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; -webkit-clip-path: none; clip-path: none; }
      .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: 'Roboto', 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: 'Roboto', 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: 'Roboto', 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: 'Roboto', 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:'Roboto',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:0; }
      .svc-col-left  { order:1; }
      .svc-wheel-center { order:2; margin-top:12px; margin-bottom:12px; }
      .svc-col-right { order:3; }
      .svc-wheel-svg-wrap { max-width:360px; margin:0 auto; }

      /* Equal gap between all cards */
      .svc-col-left, .svc-col-right { gap: 12px; }

      .svc-item,.svc-item.svc-right { flex-direction:row; transform:translateY(20px); }

      /* Reset all right-col overrides — icon LEFT like left col */
      .svc-item.svc-right .svc-item-card       { text-align:left !important; }
      .svc-item.svc-right .svc-item-card p      { text-align:left !important; }
      .svc-item.svc-right .svc-card-head        { flex-direction:row !important; justify-content:flex-start !important; }
      .svc-item.svc-right .svc-card-head h3     { text-align:left !important; flex:1; }
      .svc-item.svc-right .svc-card-num         { float:none; }

      /* Hide triangle arrows */
      .svc-tri { display:none !important; }

      .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:300px; } /* slightly larger than before (was 240px) */
    }

                /* ══ ABOUT SECTION ══ */
    #about {
      background: #04060d;
      padding: 110px 0 120px;
      position: relative; overflow: hidden;
    }
    /* Ambient glow */
    #about::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 60% at 0% 50%, rgba(245,166,35,.06) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 100% 30%, rgba(77,184,255,.04) 0%, transparent 55%);
    }
    /* Top line */
    #about::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 5%, rgba(245,166,35,.35) 40%, rgba(245,166,35,.35) 60%, transparent 95%);
    }

    /* ── Lottie animation wrapper ── */
    .about-lottie-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }


    .about-anim-svg-new {
      width:100%; max-width:420px; height:auto;
      filter:drop-shadow(0 0 28px rgba(245,166,35,.15));
    }
    .about-svg-wrap {
      width:100%; display:flex; align-items:center; justify-content:center;
    }
    .about-anim-svg {
      width:100%; max-width:420px; height:auto;
      filter:drop-shadow(0 0 28px rgba(245,166,35,.15));
    }
    .about-lottie-player {
      position: relative; z-index: 1;
      width: 100%; max-width: 480px;
      display: block !important;
      filter: drop-shadow(0 0 40px rgba(245,166,35,.18));
    }

    /* Floating stat badges over lottie */
    .about-float-badge {
      position: absolute; z-index: 2;
      background: rgba(8,10,20,.92);
      border: 1px solid rgba(245,166,35,.28);
      border-radius: 12px; padding: 10px 14px;
      backdrop-filter: blur(12px);
      display: flex; align-items: center; gap: 12px;
      box-shadow: 0 8px 28px rgba(0,0,0,.55), 0 0 0 1px rgba(245,166,35,.06);
      animation: badgeFloat ease-in-out infinite;
    }
    .about-float-badge-1 {
      top: 8%; left: -4%;
      animation-duration: 5s; animation-delay: 0s;
    }
    .about-float-badge-2 {
      bottom: 14%; right: -4%;
      animation-duration: 6.5s; animation-delay: 1.2s;
    }
    .about-float-badge-3 {
      top: 52%; left: -6%;
      animation-duration: 5.8s; animation-delay: .6s;
    }
    @keyframes badgeFloat {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-10px); }
    }
    /* ── Badge 1: Star rating ── */
    .ab-rating-wrap { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .ab-rating-stars { display: flex; gap: 2px; color: #f5a623; font-size: .78rem; }
    .ab-rating-score {
      font-family: 'Roboto', sans-serif; font-size: .95rem; font-weight: 900; color: #f5a623; line-height: 1;
    }
    .ab-rating-score span { font-size: .7rem; font-weight: 600; color: #8899aa; margin-left: 4px; }
    .ab-rating-sub { font-family: 'Roboto', sans-serif; font-size: .56rem; color: #6a7a8c; line-height: 1.2; }

    /* ── Badge 2: Live counter ── */
    .ab-counter-wrap { display: flex; flex-direction: column; gap: 6px; min-width: 140px; }
    .ab-counter-dot {
      width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
      box-shadow: 0 0 10px rgba(34,197,94,.8); animation: statusPing 2s ease-in-out infinite;
      position: absolute; top: 12px; right: 14px;
    }
    .ab-counter-num {
      font-family: 'Roboto', sans-serif; font-size: 1.3rem; font-weight: 900; color: #fff;
      line-height: 1;
    }
    .ab-counter-num span { color: #f5a623; }
    .ab-counter-lbl { font-family: 'Roboto', sans-serif; font-size: .62rem; color: #7a8898; }
    .ab-counter-bar {
      height: 4px; background: rgba(245,166,35,.15); border-radius: 2px; overflow: hidden;
    }
    .ab-counter-fill {
      height: 100%; width: 72%; background: linear-gradient(90deg, #f5a623, #ffcc50);
      border-radius: 2px; animation: fillAnim 2s ease-out forwards;
    }
    @keyframes fillAnim { from { width: 0; } to { width: 72%; } }

    /* ── Badge 3: Experience ring ── */
    .ab-exp-wrap {
      display: flex; align-items: center; gap: 12px; position: relative; min-width: 130px;
    }
    .ab-exp-num {
      font-family: 'Roboto', sans-serif; font-size: 1.8rem; font-weight: 900;
      color: #f5a623; line-height: 1; position: relative; z-index: 1;
    }
    .ab-exp-num span { font-size: 1rem; }
    .ab-exp-txt {
      font-family: 'Roboto', sans-serif; font-size: .65rem; color: #8899aa;
      line-height: 1.4; text-transform: uppercase; letter-spacing: .06em;
    }
    .ab-exp-ring {
      position: absolute; width: 52px; height: 52px; border-radius: 50%;
      border: 2px solid rgba(245,166,35,.25); left: -6px; top: 50%;
      transform: translateY(-50%);
      animation: ringRotSlow 8s linear infinite;
    }
    .ab-exp-ring::before {
      content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%;
      background: #f5a623; top: -4px; left: 50%; transform: translateX(-50%);
      box-shadow: 0 0 8px rgba(245,166,35,.8);
    }
    @keyframes ringRotSlow { to { transform: translateY(-50%) rotate(360deg); } }

    /* ── Right text side ── */
    .about-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.22);
      border-radius: 50px; padding: 5px 18px; margin-bottom: 18px;
      font-family: 'Roboto', sans-serif; font-size: .58rem; font-weight: 800;
      letter-spacing: .18em; text-transform: uppercase; color: #f5a623;
    }
    .about-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #f5a623; box-shadow: 0 0 7px #f5a623; animation: pulse 1.5s infinite;
    }
    .about-title {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
      line-height: 1.1; letter-spacing: -.02em; color: #fff; margin-bottom: 6px;
    }
    .about-title span {
      background: linear-gradient(90deg, #f5a623, #ffcc60, #f5a623);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; animation: svcShine 5s linear infinite;
    }
    .about-divider {
      width: 50px; height: 3px; border-radius: 2px; margin: 14px 0 18px;
      background: linear-gradient(90deg, #f5a623, #ffcc60);
    }
    .about-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .84rem; color: #8899aa; line-height: 1.7; margin-bottom: 20px;
    }

    /* Feature list — modern horizontal pill style */
    .about-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .about-feat {
      display: flex; align-items: flex-start; gap: 16px;
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px; padding: 12px 16px;
      transition: border-color .3s, background .3s, transform .3s;
      position: relative; overflow: hidden;
    }
    .about-feat::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, #f5a623, #c87010);
      border-radius: 3px 0 0 3px;
      opacity: 0; transition: opacity .3s;
    }
    .about-feat:hover {
      border-color: rgba(245,166,35,.18);
      background: rgba(245,166,35,.04);
      transform: translateX(4px);
    }
    .about-feat:hover::before { opacity: 1; }
    .about-feat-icon {
      width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
      background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #f5a623;
      transition: background .3s, box-shadow .3s;
    }
    .about-feat:hover .about-feat-icon {
      background: rgba(245,166,35,.18);
      box-shadow: 0 0 16px rgba(245,166,35,.25);
    }
    .about-feat h4 {
      font-family: 'Roboto', sans-serif;
      font-size: .84rem; font-weight: 800; color: #e0d0b8; margin-bottom: 4px;
      transition: color .3s;
    }
    .about-feat:hover h4 { color: #fff; }
    .about-feat p {
      font-family: 'Roboto', sans-serif;
      font-size: .76rem; color: #8899aa; line-height: 1.6; margin: 0;
    }

    /* Progress bars */
    .about-skills { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
    .about-skill-pill {
      display: flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.18);
      border-radius: 50px; padding: 6px 14px;
      font-family: 'Roboto', sans-serif; font-size: .62rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase; color: #c4903a;
      transition: background .25s, border-color .25s;
    }
    .about-skill-pill:hover { background: rgba(245,166,35,.14); border-color: rgba(245,166,35,.4); }
    .about-skill-pill i { color: #f5a623; font-size: .75rem; }



    /* ── Right text side ── */
    .about-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.22);
      border-radius: 50px; padding: 5px 18px; margin-bottom: 18px;
      font-family: 'Roboto', sans-serif; font-size: .58rem; font-weight: 800;
      letter-spacing: .18em; text-transform: uppercase; color: #f5a623;
    }
    .about-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #f5a623; box-shadow: 0 0 7px #f5a623; animation: pulse 1.5s infinite;
    }
    .about-title {
      font-family: 'Roboto', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
      line-height: 1.1; letter-spacing: -.02em; color: #fff; margin-bottom: 6px;
    }
    .about-title span {
      background: linear-gradient(90deg, #f5a623, #ffcc60, #f5a623);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; animation: svcShine 5s linear infinite;
    }
    .about-divider {
      width: 50px; height: 3px; border-radius: 2px; margin: 14px 0 18px;
      background: linear-gradient(90deg, #f5a623, #ffcc60);
    }
    .about-desc {
      font-family: 'Roboto', sans-serif;
      font-size: .84rem; color: #8899aa; line-height: 1.7; margin-bottom: 20px;
    }

    /* Feature list — modern horizontal pill style */
    .about-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .about-feat {
      display: flex; align-items: flex-start; gap: 16px;
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px; padding: 12px 16px;
      transition: border-color .3s, background .3s, transform .3s;
      position: relative; overflow: hidden;
    }
    .about-feat::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, #f5a623, #c87010);
      border-radius: 3px 0 0 3px;
      opacity: 0; transition: opacity .3s;
    }
    .about-feat:hover {
      border-color: rgba(245,166,35,.18);
      background: rgba(245,166,35,.04);
      transform: translateX(4px);
    }
    .about-feat:hover::before { opacity: 1; }
    .about-feat-icon {
      width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
      background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #f5a623;
      transition: background .3s, box-shadow .3s;
    }
    .about-feat:hover .about-feat-icon {
      background: rgba(245,166,35,.18);
      box-shadow: 0 0 16px rgba(245,166,35,.25);
    }
    .about-feat h4 {
      font-family: 'Roboto', sans-serif;
      font-size: .84rem; font-weight: 800; color: #e0d0b8; margin-bottom: 4px;
      transition: color .3s;
    }
    .about-feat:hover h4 { color: #fff; }
    .about-feat p {
      font-family: 'Roboto', sans-serif;
      font-size: .76rem; color: #8899aa; line-height: 1.6; margin: 0;
    }

    /* Progress bars */
    .about-skills { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
    .about-skill-pill {
      display: flex; align-items: center; gap: 8px;
      background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.18);
      border-radius: 50px; padding: 6px 14px;
      font-family: 'Roboto', sans-serif; font-size: .62rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase; color: #c4903a;
      transition: background .25s, border-color .25s;
    }
    .about-skill-pill:hover { background: rgba(245,166,35,.14); border-color: rgba(245,166,35,.4); }
    .about-skill-pill i { color: #f5a623; font-size: .75rem; }


    /* Responsive */
    @media (max-width: 991px) {
      #about { padding: 70px 0 80px; }
      .about-float-badge-1 { top: -5%; left: 5%; }
      .about-float-badge-2 { bottom: -5%; right: 5%; }
      .about-float-badge-3 { display: none; }
    }
    @media (max-width: 575px) {
  
    .about-anim-svg-new {
      width:100%; max-width:420px; height:auto;
      filter:drop-shadow(0 0 28px rgba(245,166,35,.15));
    }
    .about-svg-wrap {
      width:100%; display:flex; align-items:center; justify-content:center;
    }
    .about-anim-svg {
      width:100%; max-width:420px; height:auto;
      filter:drop-shadow(0 0 28px rgba(245,166,35,.15));
    }
    .about-lottie-player { max-width: 300px; }
      .about-float-badge { padding: 8px 12px; gap: 8px; }
      .about-badge-val { font-size: .9rem; }
    }


    /* ══ WORKING PROCESS SECTION ══ */
    #process {
      background: #03050b;
      padding: 60px 0 70px;
      position: relative; overflow: hidden;
    }
    #process::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent 5%,rgba(245,166,35,.4) 40%,rgba(245,166,35,.4) 60%,transparent 95%);
    }

    .proc-glow {
      position:absolute; inset:-20%; pointer-events:none; z-index:0;
      background:
        radial-gradient(ellipse 50% 60% at 15% 50%,rgba(245,166,35,.06) 0%,transparent 55%),
        radial-gradient(ellipse 40% 55% at 85% 50%,rgba(200,100,0,.04) 0%,transparent 55%);
    }
    .proc-hd { text-align:center; margin-bottom:40px; position:relative; z-index:2; }
    .proc-tag {
      display:inline-flex; align-items:center; gap:8px;
      background:rgba(245,166,35,.08); border:1px solid rgba(245,166,35,.22);
      border-radius:50px; padding:5px 18px; margin-bottom:12px;
      font-family:'Roboto',sans-serif; font-size:.6rem; font-weight:700;
      letter-spacing:.16em; text-transform:uppercase; color:#f5a623;
    }
    .proc-tag-dot {
      width:6px; height:6px; border-radius:50%;
      background:#f5a623; box-shadow:0 0 7px #f5a623; animation:pulse 1.5s infinite;
    }
    .proc-hd h2 {
      font-family:'Roboto',sans-serif; font-size:clamp(1.8rem,3.2vw,2.6rem);
      font-weight:900; color:#fff; line-height:1.1; margin:0;
    }
    .proc-hd h2 span {
      background:linear-gradient(90deg,#f5a623,#ffcc60,#f5a623);
      background-size:200% auto;
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      animation:svcShine 5s linear infinite;
    }
    .proc-snake-wrap { position:relative; z-index:2; width:100%; }
    .proc-svg { width:100%; display:block; overflow:visible; }

    /* Snake path draw animation */
    .proc-path {
      fill:none; stroke:url(#pGrad); stroke-width:3;
      stroke-linecap:round; stroke-linejoin:round;
      stroke-dasharray:3000; stroke-dashoffset:3000;
      transition:stroke-dashoffset 2s cubic-bezier(.4,0,.2,1) .1s;
    }
    .proc-path.draw { stroke-dashoffset:0; }

    /* Circles hover glow */
    .proc-circle-bg { transition:filter .35s; cursor:default; }
    .proc-circle-bg:hover { filter:drop-shadow(0 0 12px rgba(245,166,35,.65)); }

    /* Spinning dashed ring */
    .proc-ring { animation:procRingSpin 10s linear infinite; }
    @keyframes procRingSpin { to{ transform:rotate(360deg); } }

    /* Node reveal */
    .proc-node-g { opacity:0; transition:opacity .45s ease; }
    .proc-node-g.show { opacity:1; }

    /* Label reveal */
    .proc-label { opacity:0; transition:opacity .45s ease; }
    .proc-label.show { opacity:1; }

    /* Mobile vertical stack */
    .proc-mobile-stack { display:none; flex-direction:column; gap:0; }
    .proc-mob-step { display:flex; align-items:center; gap:18px; padding:16px 0; }
    .proc-mob-num {
      width:54px; height:54px; border-radius:50%; flex-shrink:0; position:relative;
      background:linear-gradient(145deg,#1a1000,#0a0700);
      border:2px solid rgba(245,166,35,.4);
      display:flex; align-items:center; justify-content:center;
      font-size:1.2rem; color:#f5a623;
    }
    .proc-mob-num span {
      position:absolute; top:-4px; right:-4px;
      width:18px; height:18px; border-radius:50%;
      background:#f5a623; color:#000;
      font-family:'Roboto',sans-serif; font-size:.58rem; font-weight:900;
      display:flex; align-items:center; justify-content:center;
    }
    .proc-mob-body h3 { font-family:'Roboto',sans-serif; font-size:.88rem; font-weight:800; color:#d8c8a0; margin-bottom:3px; }
    .proc-mob-body p  { font-family:'Roboto',sans-serif; font-size:.72rem; color:#4a5a6a; line-height:1.6; margin:0; }
    .proc-mob-line {
      width:2px; height:28px; margin-left:26px;
      background:linear-gradient(to bottom,rgba(245,166,35,.5),rgba(245,166,35,.1));
    }
    @media(max-width:767px) {
      #process { padding:50px 0 60px; }
      .proc-svg { display:none; }
      .proc-mobile-stack { display:flex; }
    }
    @media(min-width:768px) and (max-width:991px) {
      #process { padding:55px 0 65px; }
    }

            /* ══ TECHNOLOGY SECTION ══ */
    #technology {
      background: #02040a;
      padding: 60px 0 65px;
      position: relative; overflow: hidden;
    }
    #technology::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent 5%,rgba(245,166,35,.5) 40%,rgba(245,166,35,.5) 60%,transparent 95%);
    }
    #technology::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      background-image:radial-gradient(rgba(245,166,35,.07) 1px, transparent 1px);
      background-size:30px 30px;
      mask-image:radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
      -webkit-mask-image:radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
    }
    .tech-amb {
      position:absolute; inset:0; pointer-events:none; z-index:0;
      background:radial-gradient(ellipse 65% 55% at 50% 50%, rgba(245,166,35,.04) 0%, transparent 70%);
    }

    /* ── Header row ── */
    .tech-hd {
      display:flex; align-items:flex-start; justify-content:space-between;
      margin-bottom:28px; position:relative; z-index:2; gap:16px; flex-wrap:wrap;
    }
    .tech-tag {
      display:inline-flex; align-items:center; gap:7px;
      background:rgba(245,166,35,.08); border:1px solid rgba(245,166,35,.22);
      border-radius:50px; padding:4px 14px; margin-bottom:8px;
      font-family:'Roboto',sans-serif; font-size:.58rem; font-weight:700;
      letter-spacing:.16em; text-transform:uppercase; color:#f5a623;
    }
    .tech-tag-dot {
      width:5px; height:5px; border-radius:50%;
      background:#f5a623; box-shadow:0 0 6px #f5a623; animation:pulse 1.5s infinite;
    }
    .tech-hd h2 {
      font-family:'Roboto',sans-serif; font-size:clamp(1.6rem,3vw,2.3rem);
      font-weight:900; color:#fff; line-height:1.1; margin:0;
    }
    .tech-hd h2 span {
      background:linear-gradient(90deg,#f5a623,#ffcc60,#f5a623);
      background-size:200% auto;
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      animation:svcShine 5s linear infinite;
    }
    .tech-hd-stats {
      display:flex; gap:24px; flex-shrink:0; padding-top:4px;
    }
    .tech-hd-stat { text-align:center; }
    .tech-hd-stat-n {
      font-family:'Roboto',sans-serif; font-size:1.5rem; font-weight:900;
      color:#f5a623; display:block; line-height:1;
    }
    .tech-hd-stat-l {
      font-family:'Roboto',sans-serif; font-size:.5rem;
      color:#3a4a5a; text-transform:uppercase; letter-spacing:.1em;
    }

    /* ── Static grid rows (2 rows × 6 cols) ── */
    .tech-static {
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:8px;
      margin-bottom:8px;
      position:relative; z-index:2;
    }
    @media(max-width:991px) { .tech-static { grid-template-columns:repeat(3,1fr); } }
    @media(max-width:575px) { .tech-static { grid-template-columns:repeat(2,1fr); } }

    .tech-static-card {
      display:flex; align-items:center; gap:12px;
      padding:14px 18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.07);
      border-radius:12px;
      opacity:0; transform:translateY(16px);
      transition:opacity .5s ease, transform .5s ease,
                 border-color .3s, background .3s, box-shadow .3s;
      cursor:default;
    }
    .tech-static-card.in { opacity:1; transform:translateY(0); }
    .tech-static-card:hover {
      border-color:rgba(245,166,35,.25);
      background:rgba(255,255,255,.055);
      box-shadow:0 6px 24px rgba(0,0,0,.4);
    }
    .tech-static-card img {
      width:30px; height:30px; object-fit:contain; flex-shrink:0;
      filter:drop-shadow(0 1px 4px rgba(0,0,0,.5));
      transition:transform .3s;
    }
    .tech-static-card:hover img { transform:scale(1.1); }
    .tech-static-card span {
      font-family:'Roboto',sans-serif; font-size:.75rem; font-weight:700;
      color:#7a8a9a; white-space:nowrap; transition:color .3s;
    }
    .tech-static-card:hover span { color:#d0b880; }

    /* ── Marquee rows ── */
    .tech-marquee-wrap {
      position:relative; z-index:2; overflow:hidden;
      mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
      -webkit-mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    }
    .tech-mq-row {
      display:flex; gap:8px; width:max-content;
      padding:4px 0;
    }
    .tech-mq-row.fwd { animation:techMqFwd 28s linear infinite; }
    .tech-mq-row.rev { animation:techMqRev 32s linear infinite; }
    .tech-mq-row:hover { animation-play-state:paused; }
    @keyframes techMqFwd { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes techMqRev { from{transform:translateX(-50%)} to{transform:translateX(0)} }

    .tech-mq-item {
      display:flex; align-items:center; gap:10px;
      padding:10px 16px;
      background:rgba(255,255,255,.028);
      border:1px solid rgba(255,255,255,.06);
      border-radius:10px; flex-shrink:0;
      transition:border-color .3s, background .3s;
      cursor:default;
    }
    .tech-mq-item:hover {
      border-color:rgba(245,166,35,.22);
      background:rgba(255,255,255,.05);
    }
    .tech-mq-item img {
      width:26px; height:26px; object-fit:contain;
      filter:drop-shadow(0 1px 3px rgba(0,0,0,.4));
      transition:transform .3s;
    }
    .tech-mq-item:hover img { transform:scale(1.1); }
    .tech-mq-item span {
      font-family:'Roboto',sans-serif; font-size:.72rem; font-weight:700;
      color:#5a6a7a; white-space:nowrap; transition:color .3s;
    }
    .tech-mq-item:hover span { color:#c0a870; }

    @media(max-width:767px) {
      #technology { padding:45px 0 50px; }
      .tech-static-card { padding:10px 12px; gap:8px; }
      .tech-static-card img { width:24px; height:24px; }
      .tech-static-card span { font-size:.68rem; }
    }
                /* ══ INDUSTRIES SECTION ══ */
    #industries {
      background: #03050c;
      padding: 80px 0 90px;
      position: relative; overflow: hidden;
    }
    #industries::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent 5%,rgba(245,166,35,.4) 40%,rgba(245,166,35,.4) 60%,transparent 95%);
    }
    #industries::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      background-image:radial-gradient(rgba(245,166,35,.06) 1px, transparent 1px);
      background-size:32px 32px;
      mask-image:radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
      -webkit-mask-image:radial-gradient(ellipse 85% 80% at 50% 50%, black 10%, transparent 100%);
    }
    .ind-glow {
      position:absolute; inset:0; pointer-events:none; z-index:0;
      background:
        radial-gradient(ellipse 55% 60% at 15% 50%, rgba(245,166,35,.05) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 85% 50%, rgba(200,80,0,.04) 0%, transparent 55%);
    }

    /* Split layout */
    .ind-split {
      display:grid; grid-template-columns:42% 58%;
      gap:28px; align-items:center;
    }
    @media(max-width:991px) { .ind-split { grid-template-columns:1fr; } }


    .ind-svg-wrap {
      width:100%; max-width:340px;
      display:flex; align-items:center; justify-content:center;
      position:relative;
    }
    .ind-anim-svg {
      width:100%; height:auto;
      filter:drop-shadow(0 0 24px rgba(245,166,35,.18));
    }
    /* Lottie column */
    .ind-lottie-col {
      position:relative; display:flex; align-items:center; justify-content:center;
    }
    .ind-lottie-player {
      width:100%; max-width:360px; display:block !important;
      filter:drop-shadow(0 0 24px rgba(245,166,35,.18));
    }

    /* Floating badges */
    .ind-badge {
      position:absolute; z-index:3;
      display:flex; align-items:center; gap:10px;
      background:rgba(8,10,20,.92); border:1px solid rgba(245,166,35,.28);
      border-radius:12px; padding:10px 14px;
      backdrop-filter:blur(10px);
      box-shadow:0 8px 24px rgba(0,0,0,.5);
    }
    .ind-badge i { font-size:1.2rem; color:#f5a623; }
    .ind-badge-n { font-family:'Roboto',sans-serif; font-size:1rem; font-weight:900; color:#f5a623; line-height:1; }
    .ind-badge-l { font-family:'Roboto',sans-serif; font-size:.58rem; color:#6a7a8a; }
    .ind-badge-1 { top:12%; left:-2%; animation:badgeFloat 5s ease-in-out infinite; }
    .ind-badge-2 { bottom:14%; right:-2%; animation:badgeFloat 6.5s ease-in-out infinite .8s; }
    @keyframes badgeFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

    /* Right content col */
    .ind-content-col { display:flex; flex-direction:column; gap:20px; }

    /* Header */
    .ind-hd { margin-bottom:0; position:relative; z-index:2; }
    .ind-tag {
      display:inline-flex; align-items:center; gap:7px;
      background:rgba(245,166,35,.08); border:1px solid rgba(245,166,35,.22);
      border-radius:50px; padding:4px 14px; margin-bottom:12px;
      font-family:'Roboto',sans-serif; font-size:.58rem; font-weight:700;
      letter-spacing:.16em; text-transform:uppercase; color:#f5a623;
    }
    .ind-tag-dot { width:5px; height:5px; border-radius:50%; background:#f5a623; box-shadow:0 0 6px #f5a623; animation:pulse 1.5s infinite; }
    .ind-hd h2 {
      font-family:'Roboto',sans-serif; font-size:clamp(1.8rem,3.5vw,2.6rem);
      font-weight:900; color:#fff; line-height:1.1; margin-bottom:10px;
    }
    .ind-hd h2 span {
      background:linear-gradient(90deg,#f5a623,#ffcc60,#f5a623); background-size:200% auto;
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      animation:svcShine 5s linear infinite;
    }
    .ind-hd p { font-family:'Roboto',sans-serif; font-size:.78rem; color:#4a5a6a; max-width:560px; line-height:1.65; margin-bottom:0; }

    /* 2×2 compact grid */
    .ind-grid {
      display:grid; grid-template-columns:repeat(2,1fr);
      gap:10px; position:relative; z-index:2; align-items:start;
    }
    @media(max-width:575px) { .ind-grid { grid-template-columns:1fr; } }

    .ind-card {
      background:rgba(255,255,255,.028); border:1px solid rgba(255,255,255,.07);
      border-radius:12px; padding:16px;
      position:relative; overflow:hidden;
      opacity:0; transform:translateY(24px);
      transition:opacity .55s ease, transform .55s ease, border-color .35s, background .35s, box-shadow .35s;
    }
    .ind-card.in { opacity:1; transform:translateY(0); }
    .ind-card::before {
      content:''; position:absolute; top:0; left:10%; right:10%; height:1px;
      background:linear-gradient(90deg,transparent,rgba(245,166,35,.35),transparent);
      opacity:0; transition:opacity .35s;
    }
    .ind-card:hover { border-color:rgba(245,166,35,.22); background:rgba(245,166,35,.04); box-shadow:0 12px 40px rgba(0,0,0,.45); }
    .ind-card:hover::before { opacity:1; }

    .ind-card.featured {
      background:linear-gradient(145deg,rgba(245,166,35,.18),rgba(200,100,0,.12));
      border-color:rgba(245,166,35,.45); box-shadow:0 8px 32px rgba(245,166,35,.12);
    }
    .ind-card.featured::before { opacity:1; }
    .ind-card.featured:hover { background:linear-gradient(145deg,rgba(245,166,35,.25),rgba(200,100,0,.18)); border-color:rgba(245,166,35,.7); box-shadow:0 16px 48px rgba(245,166,35,.2); }

    .ind-card-title {
      font-family:'Roboto',sans-serif; font-size:.72rem; font-weight:800;
      color:rgba(245,166,35,.6); text-transform:uppercase; letter-spacing:.1em;
      margin-bottom:12px; display:flex; align-items:center; gap:8px;
    }
    .ind-card-title::before { content:''; width:14px; height:2px; border-radius:1px; background:rgba(245,166,35,.5); flex-shrink:0; }
    .ind-card.featured .ind-card-title { color:#f5a623; }
    .ind-card.featured .ind-card-title::before { background:#f5a623; }

    .ind-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:7px; }
    .ind-list li {
      display:flex; align-items:center; gap:9px;
      font-family:'Roboto',sans-serif; font-size:.75rem; font-weight:500;
      color:#7a8898; transition:color .3s, transform .3s; cursor:default;
    }
    .ind-list li:hover { color:#e0d0b0; transform:translateX(4px); }
    .ind-card.featured .ind-list li { color:#c4a070; }
    .ind-card.featured .ind-list li:hover { color:#fff; }

    .ind-check {
      width:18px; height:18px; border-radius:50%; flex-shrink:0;
      background:rgba(245,166,35,.1); border:1px solid rgba(245,166,35,.25);
      display:flex; align-items:center; justify-content:center;
      font-size:.58rem; color:#f5a623; transition:background .3s, box-shadow .3s;
    }
    .ind-list li:hover .ind-check { background:rgba(245,166,35,.2); box-shadow:0 0 8px rgba(245,166,35,.3); }
    .ind-card.featured .ind-check { background:rgba(245,166,35,.2); border-color:rgba(245,166,35,.5); }
    .ind-card.featured .ind-list li:hover .ind-check { background:#f5a623; color:#000; box-shadow:0 0 12px rgba(245,166,35,.6); }

    /* Stats row */
    .ind-counter {
      display:flex; gap:16px; padding-top:16px;
      border-top:1px solid rgba(255,255,255,.06);
      position:relative; z-index:2;
    }
    .ind-counter-item { text-align:center; flex:1; }
    .ind-counter-n { font-family:'Roboto',sans-serif; font-size:1.3rem; font-weight:900; color:#f5a623; display:block; line-height:1; margin-bottom:3px; }
    .ind-counter-l { font-family:'Roboto',sans-serif; font-size:.54rem; color:#3a4a5a; text-transform:uppercase; letter-spacing:.08em; }

    @media(max-width:767px) { #industries { padding:55px 0 65px; } }

    /* ══ PORTFOLIO SECTION — CENTERED CARD SLIDER ══ */
    #portfolio {
      background: #f7f5f0;
      padding: 90px 0 100px;
      position: relative; overflow: hidden;
      isolation: isolate;
    }
    /* Layered texture: noise grain + cross-hatch lines + warm glow */
    #portfolio::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      /* Cross-hatch grid lines */
      background-image:
        linear-gradient(rgba(180,130,60,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,130,60,.07) 1px, transparent 1px),
        /* Diagonal fine lines */
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 18px,
          rgba(200,150,60,.04) 18px,
          rgba(200,150,60,.04) 19px
        ),
        /* Warm radial glows */
        radial-gradient(ellipse 70% 40% at 50% 0%,   rgba(245,166,35,.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 35% at 50% 100%, rgba(245,166,35,.08) 0%, transparent 55%);
      background-size: 40px 40px, 40px 40px, auto, auto, auto;
      /* Subtle fade at very edges only */
      mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
    }
    /* Orange accent top line + subtle noise overlay */
    #portfolio::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
      background: linear-gradient(90deg,
        transparent 5%, rgba(245,166,35,.4) 25%,
        #f5a623 50%, rgba(245,166,35,.4) 75%, transparent 95%);
    }
    /* SVG noise grain layer */
    #portfolio .pf-grain {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      opacity: .06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    /* ── Section header ── */
    #portfolio .pf-hd { text-align: center; margin-bottom: 12px; position: relative; z-index: 2; }
    #portfolio .section-tag {
      background: rgba(245,166,35,.09); border-color: rgba(245,166,35,.3); color: #c47c10;
    }
    #portfolio .section-tag .dot { background: #f5a623; box-shadow: 0 0 5px #f5a623; }
    #portfolio .section-title { color: #111; }
    #portfolio .section-title span { color: #f5a623; }
    #portfolio .section-divider { margin: 14px auto 0; }
    .pf-subtitle {
      font-family: 'Roboto', sans-serif; font-size: .82rem;
      color: #888; line-height: 1.7; max-width: 400px;
      margin: 10px auto 0; text-align: center;
    }

    /* ── Nav arrows ── */
    .pf-nav {
      display: flex; justify-content: space-between; align-items: center;
      max-width: 900px; margin: 0 auto 36px;
      padding: 0 24px; position: relative; z-index: 4;
    }
    .pf-arrow {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid #ccc; background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .2s;
      color: #333; font-size: .9rem;
    }
    .pf-arrow:hover {
      border-color: #f5a623; color: #f5a623;
      box-shadow: 0 4px 16px rgba(245,166,35,.22); transform: scale(1.08);
    }
    .pf-nav-center {
      font-family: 'Roboto', sans-serif; font-size: .65rem;
      font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #bbb;
    }

    /* ── Slider viewport ── */
    .pf-slider-outer {
      overflow: hidden; width: 100%; padding: 16px 0 24px;
      position: relative; z-index: 2;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image:         linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .pf-track {
      display: flex; align-items: center; gap: 10px;
      transition: transform .62s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    /* ── Individual slide ── */
    .pf-slide {
      flex: 0 0 340px; border-radius: 22px; overflow: hidden;
      background: #111; position: relative; cursor: pointer;
      transition: transform .55s cubic-bezier(.4,0,.2,1), box-shadow .55s ease, opacity .55s ease;
      transform: scale(.84); opacity: .45;
    }
    .pf-slide.pf-active {
      transform: scale(1); opacity: 1; cursor: default;
      box-shadow: 0 28px 70px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.12);
    }

    /* ── Visual area ── */
    .pf-slide-visual {
      width: 100%; aspect-ratio: 9/13;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      background: #111;
    }
    /* Dark gradient overlay */
    .pf-slide-visual::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 45%, transparent 72%);
      z-index: 2;
    }

    /* ── PROJECT IMAGE — fills full card, any size/ratio ── */
    .pf-slide-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;           /* fills area, crops cleanly */
      object-position: center top; /* subject stays visible from top */
      display: block;
      transition: transform .65s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .pf-slide.pf-active .pf-slide-img { transform: scale(1.04); }
    .pf-slide:hover .pf-slide-img     { transform: scale(1.07); }

    /* ── Info overlay (bottom) ── */
    .pf-slide-info {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
      padding: 22px 22px 20px;
      opacity: 0; transform: translateY(8px);
      transition: opacity .5s ease .1s, transform .5s ease .1s;
    }
    .pf-slide.pf-active .pf-slide-info { opacity: 1; transform: translateY(0); }
    .pf-slide-title {
      font-family: 'Roboto', sans-serif; font-size: 1.15rem; font-weight: 800;
      color: #fff; margin-bottom: 7px; line-height: 1.2;
    }
    .pf-slide-desc {
      font-family: 'Roboto', sans-serif; font-size: .74rem;
      color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 16px;
    }
    .pf-slide-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .pf-slide-tags { display: flex; gap: 7px; flex-wrap: wrap; }
    .pf-stag {
      font-family: 'Roboto', sans-serif; font-size: .58rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
      border-radius: 50px; padding: 4px 12px; color: #fff; backdrop-filter: blur(4px);
    }
    .pf-slide-arrow {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
      display: flex; align-items: center; justify-content: center;
      color: #fff; text-decoration: none; font-size: .85rem;
      transition: background .25s, transform .25s;
    }
    .pf-slide-arrow:hover { background: rgba(255,255,255,.28); transform: scale(1.1) rotate(-10deg); }

    /* ── Auto-slide progress bar ── */
    .pf-progress {
      max-width: 280px; height: 2px;
      background: rgba(0,0,0,.1); border-radius: 2px;
      margin: 0 auto 18px; overflow: hidden; position: relative; z-index: 2;
    }
    .pf-progress-bar {
      height: 100%; width: 0%;
      background: linear-gradient(90deg, #f5a623, #ffcc60);
      border-radius: 2px;
    }

    /* ── Dots ── */
    .pf-dots {
      display: flex; justify-content: center; gap: 7px;
      margin-bottom: 28px; position: relative; z-index: 2;
    }
    .pf-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(0,0,0,.18); border: none; padding: 0; cursor: pointer;
      transition: all .35s cubic-bezier(.4,0,.2,1);
    }
    .pf-dot.pf-dot-active { width: 24px; border-radius: 4px; background: #f5a623; }

    /* ── View More ── */
    .pf-more { text-align: center; position: relative; z-index: 2; }
    .pf-more-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Roboto', sans-serif; font-size: .75rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: #111; text-decoration: none;
      border-bottom: 2px solid #f5a623; padding-bottom: 3px;
      transition: color .25s, gap .25s;
    }
    .pf-more-link:hover { color: #f5a623; gap: 14px; }
    .pf-more-link i { font-size: .8rem; }

    /* ── Responsive ── */
    @media (max-width: 991px) {
      .pf-slide { flex: 0 0 280px; }
      #portfolio { padding: 70px 0 80px; }
    }
    @media (max-width: 575px) {
      .pf-slide { flex: 0 0 240px; }
      #portfolio { padding: 56px 0 64px; }
      .pf-nav { padding: 0 12px; margin-bottom: 24px; }
      .pf-slide-title { font-size: 1rem; }
      .pf-slide-desc { font-size: .70rem; }
    }

        /* ══ 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%; scroll-behavior: smooth; }

    /* ════════════════════════════════════════
       SCROLL REVEAL ANIMATIONS
    ════════════════════════════════════════ */

    /* Base hidden state for all reveal elements */
    [data-reveal] {
      opacity: 0;
      transition-property: opacity, transform, filter;
      transition-timing-function: cubic-bezier(.22,.68,0,1.2);
      transition-duration: .7s;
      will-change: opacity, transform;
    }
    [data-reveal].revealed { opacity: 1 !important; transform: none !important; filter: none !important; }

    /* Fade up — default */
    [data-reveal="up"]     { transform: translateY(48px); }
    [data-reveal="down"]   { transform: translateY(-40px); }
    [data-reveal="left"]   { transform: translateX(-52px); }
    [data-reveal="right"]  { transform: translateX(52px); }
    [data-reveal="zoom"]   { transform: scale(.88); }
    [data-reveal="zoom-up"]{ transform: scale(.9) translateY(36px); }
    [data-reveal="flip"]   { transform: perspective(600px) rotateX(18deg) translateY(28px); }
    [data-reveal="fade"]   { opacity: 0; transform: none; }

    /* Stagger delays via data-delay */
    [data-delay="100"] { transition-delay: .1s; }
    [data-delay="150"] { transition-delay: .15s; }
    [data-delay="200"] { transition-delay: .2s; }
    [data-delay="250"] { transition-delay: .25s; }
    [data-delay="300"] { transition-delay: .3s; }
    [data-delay="350"] { transition-delay: .35s; }
    [data-delay="400"] { transition-delay: .4s; }
    [data-delay="500"] { transition-delay: .5s; }
    [data-delay="600"] { transition-delay: .6s; }

    /* Slower duration override */
    [data-duration="900"]  { transition-duration: .9s; }
    [data-duration="1000"] { transition-duration: 1s; }
    [data-duration="1200"] { transition-duration: 1.2s; }

