:root {
      --amf-primary: #02529c;
      --amf-primary-hover: #0f75bc;
      --amf-dark: #060a14;
      --amf-accent: #38bdf8;
      --amf-bg: #f8fafc;
    }

    body {
      background-color: var(--amf-bg);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #334155;
    }

    /* Hero Header Banner */
    .services-hero {
      background: linear-gradient(135deg, var(--amf-dark) 0%, #0b1329 100%);
      color: #ffffff;
      padding: 70px 0 100px 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .services-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(2, 82, 156, 0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      letter-spacing: -0.02em;
    }

    .hero-lead {
      color: #94a3b8;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* 3D Glassmorphic Service Card */
    .service-3d-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .service-3d-card:hover {
      transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
      box-shadow: 0 25px 45px -12px rgba(2, 82, 156, 0.2);
      border-color: rgba(2, 82, 156, 0.35);
    }

    /* Image Wrapper with Dark Gradient Overlay */
    .card-img-wrapper {
      position: relative;
      height: 210px;
      overflow: hidden;
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-3d-card:hover .card-img-wrapper img {
      transform: scale(1.08);
    }

    .card-img-overlay-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(6, 10, 20, 0.85) 0%, transparent 60%);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .card-category-badge {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(2, 82, 156, 0.9);
      color: #ffffff;
      backdrop-filter: blur(4px);
    }

    /* Floating Icon Badge */
    .card-floating-icon {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--amf-primary);
      font-size: 1.25rem;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .service-3d-card:hover .card-floating-icon {
      background: var(--amf-primary);
      color: #ffffff;
    }

    /* Content Area */
    .card-body-content {
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .service-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: #0f172a !important;
      margin-bottom: 12px;
    }

    .service-desc {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* Sub-Features List Badges */
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .feature-list li {
      font-size: 0.83rem;
      font-weight: 600;
      color: #334155;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-list li i {
      color: var(--amf-primary);
      font-size: 0.8rem;
    }

    /* Action CTA Link */
    .btn-service-action {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--amf-primary);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .btn-service-action:hover {
      color: var(--amf-primary-hover);
      gap: 12px;
    }

    /* Bottom Quote CTA Banner */
    .quote-cta-banner {
      background: linear-gradient(135deg, var(--amf-dark) 0%, #0b1329 100%);
      border-radius: 24px;
      padding: 45px;
      color: #ffffff;
      box-shadow: 0 20px 40px -10px rgba(6, 10, 20, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-quote-cta {
      background: linear-gradient(135deg, var(--amf-primary), var(--amf-primary-hover));
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 25px rgba(2, 82, 156, 0.4);
      transition: all 0.3s ease;
    }

    .btn-quote-cta:hover {
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(2, 82, 156, 0.6);
    }

    .service-list-item {
  display: flex;
  align-items: flex-start; /* Aligns icon to top line of text */
  gap: 10px;
}

.service-list-item i {
  margin-top: 3px; /* Optically aligns icon center with text line-height */
  flex-shrink: 0;   /* Prevents icon from shrinking on multi-line text */
}