/* NAVBAR SAME AS SOLUTIONS */

.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 10%;   /* SAME as solutions */
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.home-btn {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

.home-btn:hover {
    color: #1e3a8a;
}

.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #3b82f6 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(99,102,241,0.15);
    border-radius: 50%;
    bottom: -200px; left: -100px;
  }
  .page-hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 15px; }
  .page-hero p { font-size: 18px; opacity: 0.85; max-width: 600px; margin: auto; }

  /* SERVICE DETAIL CARDS */
  .services-detail {
    padding: 80px 0;
    background: #f9fbff;
  }
  .svc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: 0.3s;
    height: 100%;
  }
  .svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,114,255,0.12);
  }
  .svc-card-top {
    background: linear-gradient(135deg, #1e2a78, #0072ff);
    padding: 30px;
    color: white;
    font-size: 36px;
  }
  .svc-card-body { padding: 25px; }
  .svc-card-body h4 { font-weight: 700; color: #1e2a78; margin-bottom: 12px; font-size: 20px; }
  .svc-card-body p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
  .svc-features { list-style: none; padding: 0; margin: 0; }
  .svc-features li { font-size: 13px; color: #555; padding: 5px 0; border-bottom: 1px dashed #eee; }
  .svc-features li:last-child { border: none; }
  .svc-features li::before { content: "✓ "; color: #0072ff; font-weight: 700; }

  /* PROCESS */
  .process-section {
    padding: 80px 0;
    background: #fff;
  }
  .process-step {
    text-align: center;
    position: relative;
  }
  .step-num {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #0072ff, #4f46e5);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .process-step h5 { font-weight: 700; color: #1e2a78; margin-bottom: 10px; }
  .process-step p { color: #666; font-size: 14px; }
  .process-connector {
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0072ff, #4f46e5);
    z-index: 0;
  }

  /* TECH STACK */
  .tech-section {
    padding: 60px 0;
    background: #f0f4ff;
  }
  .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #1e2a78;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin: 6px;
    transition: 0.3s;
  }
  .tech-badge:hover {
    background: #0072ff;
    color: white;
    transform: translateY(-2px);
  }
  .tech-badge i { color: #0072ff; }
  .tech-badge:hover i { color: white; }
/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}
