 
    /* =============================================
   AuroraForge Digital – Services Page Styles
   (scoped overrides only, no global CSS touched)
   ============================================= */

    /* ---- Hero ---- */
    .af-hero {
      position: relative;
      /*min-height: 100vh;*/
      display: flex;
      align-items: center;
      background-color: var(--theme-color3);
      overflow: hidden;
      padding: 100px 0 100px;
      background-image:url('../images/background/page-title.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background:#000;
    }

    .af-hero .hero-bg-mesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .af-hero .hero-bg-mesh svg {
      width: 100%;
      height: 100%;
      opacity: .07;
    }

    .af-hero .hero-glow {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217, 244, 95, .16) 0%, transparent 68%);
      top: -150px;
      right: -150px;
      pointer-events: none;
      z-index: 0;
      animation: heroGlowDrift 8s ease-in-out infinite alternate;
    }

    .af-hero .hero-glow2 {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217, 244, 95, .09) 0%, transparent 70%);
      bottom: -80px;
      left: -100px;
      pointer-events: none;
      z-index: 0;
      animation: heroGlowDrift 10s ease-in-out infinite alternate-reverse;
    }

    /* Animated floating orbs */
    .af-hero .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      will-change: transform;
    }

    .af-hero .hero-orb-1 {
      width: 120px;
      height: 120px;
      border: 1px solid rgba(217, 244, 95, .12);
      top: 20%;
      left: 15%;
      animation: floatOrb 7s ease-in-out infinite;
    }

    .af-hero .hero-orb-2 {
      width: 60px;
      height: 60px;
      background: rgba(217, 244, 95, .06);
      top: 60%;
      right: 20%;
      animation: floatOrb 5s ease-in-out infinite reverse;
    }

    .af-hero .hero-orb-3 {
      width: 200px;
      height: 200px;
      border: 1px solid rgba(217, 244, 95, .06);
      top: 15%;
      right: 25%;
      animation: floatOrb 9s ease-in-out infinite 2s;
    }

    .af-hero .hero-orb-4 {
      width: 40px;
      height: 40px;
      background: rgba(217, 244, 95, .1);
      bottom: 25%;
      left: 30%;
      animation: floatOrb 6s ease-in-out infinite 1s;
    }

    /* Floating particles */
    .af-hero .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .af-hero .hero-particles span {
      position: absolute;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(217, 244, 95, .5);
      animation: particleFly linear infinite;
    }

    .af-hero .hero-particles span:nth-child(1) {
      left: 10%;
      animation-duration: 12s;
      animation-delay: 0s;
    }

    .af-hero .hero-particles span:nth-child(2) {
      left: 25%;
      animation-duration: 16s;
      animation-delay: 2s;
    }

    .af-hero .hero-particles span:nth-child(3) {
      left: 40%;
      animation-duration: 10s;
      animation-delay: 4s;
      width: 2px;
      height: 2px;
    }

    .af-hero .hero-particles span:nth-child(4) {
      left: 55%;
      animation-duration: 14s;
      animation-delay: 1s;
    }

    .af-hero .hero-particles span:nth-child(5) {
      left: 70%;
      animation-duration: 11s;
      animation-delay: 3s;
      width: 2px;
      height: 2px;
    }

    .af-hero .hero-particles span:nth-child(6) {
      left: 82%;
      animation-duration: 18s;
      animation-delay: 5s;
    }

    .af-hero .hero-particles span:nth-child(7) {
      left: 5%;
      animation-duration: 13s;
      animation-delay: 6s;
      width: 4px;
      height: 4px;
      opacity: .3;
    }

    .af-hero .hero-particles span:nth-child(8) {
      left: 90%;
      animation-duration: 15s;
      animation-delay: 0.5s;
    }

    /* Horizontal scan line */
    .af-hero .hero-scanline {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(217, 244, 95, .15), transparent);
      pointer-events: none;
      z-index: 0;
      animation: scanLine 8s linear infinite;
    }

    @keyframes heroGlowDrift {
      from {
        transform: translate(0, 0) scale(1);
      }

      to {
        transform: translate(30px, 40px) scale(1.08);
      }
    }

    @keyframes floatOrb {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      33% {
        transform: translateY(-18px) rotate(5deg);
      }

      66% {
        transform: translateY(10px) rotate(-3deg);
      }
    }

    @keyframes particleFly {
      0% {
        bottom: -10px;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        bottom: 110%;
        opacity: 0;
      }
    }

    @keyframes scanLine {
      0% {
        top: 0%;
        opacity: 0;
      }

      5% {
        opacity: 1;
      }

      95% {
        opacity: 1;
      }

      100% {
        top: 100%;
        opacity: 0;
      }
    }

    .af-hero .container {
      position: relative;
      z-index: 1;
    }

    .af-hero .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(217, 244, 95, .08);
      border: 1px solid rgba(217, 244, 95, .25);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--theme-color1);
      margin-bottom: 28px;
    }

    .af-hero .hero-label i {
      font-size: 11px;
    }

    .af-hero h1.hero-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 28px;
}

    .af-hero h1.hero-heading span {
      color: var(--theme-color1);
    }

    .af-hero .hero-subtext {
      font-size: 15px;
      color: #cccccc;
      line-height: 1.85;
      max-width: 800px;
      margin-bottom: 44px;
    }

    .af-hero .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .af-hero .btn-secondary-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border: 1.5px solid rgba(255, 255, 255, .2);
      border-radius: 4px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .5px;
      transition: all .3s;
      background: transparent;
    }

    .af-hero .btn-secondary-outline:hover {
      border-color: var(--theme-color1);
      color: var(--theme-color1);
    }

    .af-hero .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 64px;
      flex-wrap: wrap;
    }

    .af-hero .hero-stat-item {
      text-align: left;
    }

    .af-hero .hero-stat-num {
      font-size: 38px;
      font-weight: 700;
      color: var(--theme-color1);
      line-height: 1;
      display: block;
    }

    .af-hero .hero-stat-label {
      font-size: 13px;
      color: #cccccc;
      margin-top: 4px;
      display: block;
    }

    .af-hero .hero-divider {
      width: 1px;
      background: rgba(255, 255, 255, .1);
      align-self: stretch;
    }

    /* ---- Services Grid ---- */
    .af-services {
      background-color: var(--theme-color3);
      padding: 80px 0;
    }

    .af-service-card {
      background: var(--theme-color4);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 16px;
      padding: 40px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    }

    .af-service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(217, 244, 95, .04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .35s;
      border-radius: inherit;
    }

    .af-service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(217, 244, 95, .3);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    }

    .af-service-card:hover::before {
      opacity: 1;
    }

    .af-service-icon {
      width: 64px;
      height: 64px;
      background: rgba(217, 244, 95, .1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: background .3s;
    }

    .af-service-card:hover .af-service-icon {
      background: rgba(217, 244, 95, .22);
    }

    .af-service-icon i {
      font-size: 26px;
      color: var(--theme-color1);
    }

    .af-service-card h4 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .af-service-card p {
      font-size: 15px;
      color: #cccccc;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .af-service-card .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--theme-color1);
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: gap .25s;
    }

    .af-service-card .svc-link:hover {
      gap: 14px;
      color: var(--theme-color1);
    }

    .af-service-card .svc-num {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, .1);
      letter-spacing: 2px;
    }

    /* ---- Process Steps ---- */
    .af-process {
      background: var(--theme-color2);
      padding: 80px 0;
    }

    .af-process-steps {
      display: flex;
      gap: 0;
      position: relative;
      margin-top: 60px;
    }

    .af-process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(217, 244, 95, .3), transparent);
      pointer-events: none;
    }

    .af-step {
      flex: 1;
      text-align: center;
      padding: 0 12px;
      position: relative;
    }

    .af-step-bubble {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--theme-color4);
      border: 2px solid rgba(217, 244, 95, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      transition: all .3s;
    }

    .af-step:hover .af-step-bubble {
      background: rgba(217, 244, 95, .12);
      border-color: var(--theme-color1);
    }

    .af-step-bubble i {
      font-size: 22px;
      color: var(--theme-color1);
    }

    .af-step-num {
      position: absolute;
      top: -8px;
      right: -4px;
      width: 22px;
      height: 22px;
      background: var(--theme-color1);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .af-step h5 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .af-step p {
      font-size: 13px;
      color: #cccccc;
      line-height: 1.7;
    }

    /* ---- Why Choose Us – NUMBERED FEATURE ROWS ---- */
    .af-why {
      background-color: var(--theme-color2);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Subtle diagonal grid watermark */
    .af-why::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(-45deg,
          rgba(217, 244, 95, .025) 0px,
          rgba(217, 244, 95, .025) 1px,
          transparent 1px,
          transparent 60px);
      pointer-events: none;
      z-index: 0;
    }

    .af-why>.container {
      position: relative;
      z-index: 1;
    }

    /* Header row: title left, trust panel right */
    .af-why-header-row {
      margin-bottom: 64px;
    }

    .af-trust-panel {
      background: var(--theme-color4);
      border: 1px solid rgba(217, 244, 95, .15);
      border-radius: 20px;
      padding: 36px 30px;
      position: relative;
      overflow: hidden;
    }

    .af-trust-panel::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217, 244, 95, .12) 0%, transparent 70%);
      pointer-events: none;
    }

    .af-trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(217, 244, 95, .08);
      border: 1px solid rgba(217, 244, 95, .2);
      border-radius: 10px;
      padding: 12px 18px;
      margin-bottom: 20px;
      width: 100%;
    }

    .af-trust-badge i {
      font-size: 22px;
      color: var(--theme-color1);
    }

    .af-trust-badge-text strong {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .af-trust-badge-text span {
      font-size: 12px;
      color: #cccccc;
    }

    .af-trust-divider {
      height: 1px;
      background: rgba(255, 255, 255, .07);
      margin: 18px 0;
    }

    .af-trust-stat {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .af-trust-stat-num {
      font-size: 32px;
      font-weight: 700;
      color: var(--theme-color1);
      line-height: 1;
    }

    .af-trust-stat-label {
      font-size: 13px;
      color: #cccccc;
    }

    /* Rows */
    .af-why-rows {
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .af-why-row {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 28px 0 28px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      border-left: 3px solid transparent;
      margin-left: -24px;
      transition: border-left-color .3s ease, background .3s ease, padding-left .3s ease;
      position: relative;
      cursor: default;
      border-radius: 0 8px 8px 0;
    }

    .af-why-row:hover {
      border-left-color: var(--theme-color1);
      background: rgba(217, 244, 95, .03);
      padding-left: 32px;
    }

    .af-why-row-num {
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
      color: rgba(255, 255, 255, .05);
      min-width: 62px;
      letter-spacing: -3px;
      transition: color .35s, transform .35s;
      user-select: none;
    }

    .af-why-row:hover .af-why-row-num {
      color: rgba(217, 244, 95, .18);
      transform: scale(1.08);
    }

    .af-why-row-icon {
      width: 54px;
      height: 54px;
      min-width: 54px;
      border-radius: 14px;
      background: rgba(217, 244, 95, .07);
      border: 1px solid rgba(217, 244, 95, .13);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .35s, border-color .35s, transform .35s;
    }

    .af-why-row:hover .af-why-row-icon {
      background: rgba(217, 244, 95, .18);
      border-color: rgba(217, 244, 95, .4);
      transform: rotate(-10deg) scale(1.1);
    }

    .af-why-row-icon i {
      font-size: 20px;
      color: var(--theme-color1);
    }

    .af-why-row-body {
      flex: 1;
    }

    .af-why-row-body h5 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      transition: color .3s;
    }

    .af-why-row:hover .af-why-row-body h5 {
      color: var(--theme-color1);
    }

    .af-why-row-body p {
      font-size: 14px;
      color: #cccccc;
      line-height: 1.75;
      margin: 0;
      max-width: 520px;
    }

    .af-why-row-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: rgba(255, 255, 255, .25);
      font-size: 12px;
      transition: all .3s ease;
    }

    .af-why-row:hover .af-why-row-arrow {
      border-color: var(--theme-color1);
      background: var(--theme-color1);
      color: #000;
      transform: translateX(4px);
    }

    /* Why CTA row */
    .af-why-cta-row {
      margin-top: 48px;
    }

    /* ---- Industries – PREMIUM CARD REDESIGN ---- */
    .af-industries {
      background: #0a0a0a;
      padding: 80px 0;
    }

    .af-ind-card {
      background: var(--theme-color4);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 20px;
      padding: 40px 24px 32px;
      text-align: center;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .35s, border-color .35s, box-shadow .35s;
    }

    .af-ind-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--theme-color1), transparent);
      transform: scaleX(0);
      transition: transform .4s ease;
    }

    .af-ind-card:hover {
      transform: translateY(-10px);
      border-color: rgba(217, 244, 95, .25);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
    }

    .af-ind-card:hover::before {
      transform: scaleX(1);
    }

    .af-ind-icon-wrap {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: rgba(217, 244, 95, .07);
      border: 2px solid rgba(217, 244, 95, .14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      transition: background .35s, border-color .35s, transform .35s;
    }

    .af-ind-card:hover .af-ind-icon-wrap {
      background: rgba(217, 244, 95, .16);
      border-color: rgba(217, 244, 95, .4);
      transform: scale(1.1) rotate(-5deg);
    }

    .af-ind-icon-wrap i {
      font-size: 30px;
      color: var(--theme-color1);
    }

    .af-ind-card h5 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .af-ind-card p {
      font-size: 13px;
      color: #cccccc;
      line-height: 1.7;
      margin: 0;
    }

    /* ---- Stats / Counter ---- */
    .af-stats {
      background: var(--theme-color1);
      padding: 80px 0;
    }

    .af-stat-block {
      text-align: center;
    }

    .af-stat-block .stat-num {
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 700;
      color: #000;
      line-height: 1;
      display: block;
    }

    .af-stat-block .stat-label {
      font-size: 15px;
      font-weight: 600;
      color: rgba(0, 0, 0, .65);
      margin-top: 10px;
      display: block;
    }

    .af-stat-divider {
      width: 1px;
      background: rgba(0, 0, 0, .15);
    }

    /* ---- Testimonials ---- */
    .af-testimonials {
      background: var(--theme-color3);
      padding: 80px 0;
    }

    .af-testi-card {
      background: var(--theme-color4);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 18px;
      padding: 40px;
      position: relative;
    }

    .af-testi-card .quote-mark {
      font-size: 80px;
      line-height: 1;
      color: rgba(217, 244, 95, .12);
      font-family: Georgia, serif;
      position: absolute;
      top: 16px;
      right: 32px;
    }

    .af-testi-stars {
      color: var(--review-color);
      margin-bottom: 20px;
      font-size: 14px;
    }

    .af-testi-text {
      font-size: 15px;
      color: #cccccc;
      line-height: 1.85;
      margin-bottom: 30px;
      font-style: italic;
    }

    .af-testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .af-testi-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(217, 244, 95, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--theme-color1);
      font-weight: 700;
      flex-shrink: 0;
    }

    .af-testi-name {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .af-testi-role {
      font-size: 12px;
      color: var(--theme-color1);
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .af-testi-swiper {
      padding-bottom: 48px !important;
    }

    .af-testi-swiper .swiper-pagination-bullet {
      background: rgba(255, 255, 255, .25);
    }

    .af-testi-swiper .swiper-pagination-bullet-active {
      background: var(--theme-color1);
    }

    /* ---- CTA ---- */
    .af-cta {
      background: linear-gradient(135deg, var(--theme-color2) 0%, var(--theme-color4) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .af-cta::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217, 244, 95, .08) 0%, transparent 70%);
      top: -200px;
      left: -200px;
      pointer-events: none;
    }

    .af-cta::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(217, 244, 95, .06) 0%, transparent 70%);
      bottom: -150px;
      right: -100px;
      pointer-events: none;
    }

    .af-cta .container {
      position: relative;
      z-index: 1;
    }

    .af-cta h2 {
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
    }

    .af-cta h2 span {
      color: var(--theme-color1);
    }

    .af-cta p {
      font-size: 17px;
      color: #cccccc;
      max-width: 580px;
      margin: 0 auto 44px;
      line-height: 1.8;
    }

    .af-cta .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Common */
    .sec-gap {
      padding: 80px 0;
    }

    @media (max-width: 991px) {
      .af-process-steps {
        flex-wrap: wrap;
        gap: 30px;
      }

      .af-process-steps::before {
        display: none;
      }

      .af-step {
        flex: 0 0 45%;
      }

      .af-hero {
        min-height: auto;
      }

      .af-hero .hero-stats {
        gap: 28px;
      }

      .af-hero .hero-divider {
        display: none;
      }
    }

    @media (max-width: 575px) {
      .af-step {
        flex: 0 0 100%;
      }

      .af-hero h1.hero-heading {
        font-size: 34px;
      }
    }
    /* ---- Clients Section – PREMIUM REDESIGN ---- */
    .af-clients-section {
      background: var(--theme-color2);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .af-clients-section::before,
    .af-clients-section::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .af-clients-section::before {
      left: 0;
      background: linear-gradient(90deg, var(--theme-color2) 0%, transparent 100%);
    }
    .af-clients-section::after {
      right: 0;
      background: linear-gradient(270deg, var(--theme-color2) 0%, transparent 100%);
    }
    /* Logo wrapper: add a subtle top/bottom stripe */
    .af-clients-track {
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 32px 0;
    }
    /* Override theme client logo styles – 4-side border draw */
    .af-clients-section .client-block .inner-box {
      padding: 16px;
      position: relative;
      /* overflow:visible allows spans; but wrap in a clip-safe parent */
      border-radius: 12px;
      transition: transform .35s ease;
      /* 2px transparent border creates space for the animated spans */
      border: 2px solid transparent;
      box-sizing: border-box;
    }
    .af-clients-section .client-block:hover .inner-box {
      transform: translateY(-4px);
    }
    /* Reset unused pseudo-elements */
    .af-clients-section .client-block .inner-box::before,
    .af-clients-section .client-block .inner-box::after { display: none; }

    /* ── 4 border spans: positioned ON the transparent border edges ── */
    .af-clients-section .client-block .inner-box .bd-t,
    .af-clients-section .client-block .inner-box .bd-r,
    .af-clients-section .client-block .inner-box .bd-b,
    .af-clients-section .client-block .inner-box .bd-l {
      position: absolute;
      background: var(--theme-color1);
      pointer-events: none;
      display: block;
      z-index: 2;
    }
    /* TOP – sits on top border edge, draws left → right */
    .af-clients-section .client-block .inner-box .bd-t {
      top: -2px; left: 0; right: 0;
      height: 2px; width: 0;
      transition: width .22s linear .66s; /* retracts last on unhover */
    }
    /* RIGHT – sits on right border edge, draws top → bottom */
    .af-clients-section .client-block .inner-box .bd-r {
      top: -2px; right: -2px;
      width: 2px; height: 0;
      transition: height .22s linear .44s;
    }
    /* BOTTOM – sits on bottom border edge, draws right → left */
    .af-clients-section .client-block .inner-box .bd-b {
      bottom: -2px; right: 0; left: 0;
      height: 2px; width: 0;
      transition: width .22s linear .22s;
    }
    /* LEFT – sits on left border edge, draws bottom → top */
    .af-clients-section .client-block .inner-box .bd-l {
      bottom: -2px; left: -2px;
      width: 2px; height: 0;
      transition: height .22s linear 0s; /* retracts first on unhover */
    }

    /* HOVER: draw clockwise with staggered delays */
    .af-clients-section .client-block:hover .inner-box .bd-t {
      width: 100%; transition: width .22s linear 0s;
    }
    .af-clients-section .client-block:hover .inner-box .bd-r {
      height: 100%; transition: height .22s linear .22s;
    }
    .af-clients-section .client-block:hover .inner-box .bd-b {
      width: 100%; transition: width .22s linear .44s;
    }
    .af-clients-section .client-block:hover .inner-box .bd-l {
      height: 100%; transition: height .22s linear .66s;
    }

    /* Logo image: grayscale → color + lime glow */
    
    /* Trusted-by label */
    .af-clients-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 36px;
      justify-content: center;
    }
    .af-clients-label-line {
      flex: 1;
      max-width: 120px;
      height: 1px;
      background: rgba(255,255,255,.08);
    }
    .af-clients-label-text {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #cccccc;
    }

    /* ---- Page-wide ambient motion layer ---- */
    #af-ambient {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }
    .af-amb {
      position: absolute;
      border-radius: 50%;
      will-change: transform;
      filter: blur(80px);
    }
    /* Blob 1 – top left */
    .af-amb-1 {
      width: 500px; height: 500px;
      background: rgba(217,244,95,.035);
      top: -10vh; left: -5vw;
      animation: ambDrift1 18s ease-in-out infinite alternate;
    }
    /* Blob 2 – top right */
    .af-amb-2 {
      width: 400px; height: 400px;
      background: rgba(217,244,95,.028);
      top: 5vh; right: -5vw;
      animation: ambDrift2 22s ease-in-out infinite alternate;
    }
    /* Blob 3 – mid center */
    .af-amb-3 {
      width: 350px; height: 350px;
      background: rgba(217,244,95,.022);
      top: 40vh; left: 30vw;
      animation: ambDrift3 26s ease-in-out infinite alternate;
    }
    /* Blob 4 – lower left */
    .af-amb-4 {
      width: 300px; height: 300px;
      background: rgba(217,244,95,.03);
      bottom: 10vh; left: -3vw;
      animation: ambDrift4 20s ease-in-out infinite alternate;
    }
    /* Blob 5 – lower right */
    .af-amb-5 {
      width: 420px; height: 420px;
      background: rgba(217,244,95,.025);
      bottom: -5vh; right: -5vw;
      animation: ambDrift5 24s ease-in-out infinite alternate;
    }
    @keyframes ambDrift1 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(60px, 80px) scale(1.12); }
    }
    @keyframes ambDrift2 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(-50px, 70px) scale(1.08); }
    }
    @keyframes ambDrift3 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(40px, -60px) scale(1.15); }
    }
    @keyframes ambDrift4 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(50px, -40px) scale(1.1); }
    }
    @keyframes ambDrift5 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(-60px, -50px) scale(1.06); }
    }
  
  
      .faq-section .faq-column .inner-column {
    position: relative;
    margin-left: 0;
}
.accordion-box {
  
    border-radius: 10px;
  
    max-width: 100%;
    padding: 30px;
   
}
.faq-section {
   
    padding: 80px 0;
   
}
.accordion-box {
    border-radius: 10px;
    max-width: 100%;
    padding: 0;
    background: transparent;
}
.accordion-box .block .acc-btn {
    border-bottom: 1px solid var(--theme-color4);
    border-radius: 0;
    color: var(--theme-color-white);
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 32px;
    margin-bottom: 10px;
    padding: 0px 0 20px;
    padding-right: 36px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    word-spacing: 2px;
}


.clients-section-three .client-block-three .inner-box .image-box .image img {
   
    max-width: 130px;
}

 