
    :root {
      --bg: #0b0f19;
      --bg-soft: #121829;
      --card: #161d31;
      --card-2: #1c2440;
      --primary: #7c3aed; /* Change this to your preferred color */
      --primary-light: #9f67ff;
      --text: #f5f7ff;
      --muted: #b9c1d9;
      --border: rgba(255, 255, 255, 0.08);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      --radius: 18px;
      --container: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.12), transparent 25%),
        var(--bg);
      color: var(--text);
      line-height: 1.7;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(92%, var(--container));
      margin: auto;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(11, 15, 25, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: 0.5px;
    }

    .logo span {
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      transition: 0.3s;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #fff;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: 700;
      transition: 0.3s ease;
      box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(124, 58, 237, 0.35);
    }

    /* Hero */
    .hero {
      padding: 90px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }

    .tag {
      display: inline-block;
      background: rgba(124, 58, 237, 0.15);
      color: var(--primary-light);
      border: 1px solid rgba(124, 58, 237, 0.25);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.9rem;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      color: var(--muted);
      max-width: 680px;
      margin-bottom: 28px;
      font-size: 1.08rem;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-outline {
      display: inline-block;
      border: 1px solid var(--border);
      color: var(--text);
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.02);
      transition: 0.3s;
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary-light);
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(124, 58, 237, 0.13), rgba(255, 255, 255, 0.02));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card h3 {
      margin-bottom: 18px;
      font-size: 1.3rem;
    }

    .hero-list {
      display: grid;
      gap: 14px;
    }

    .hero-list div {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 16px;
      color: var(--muted);
    }

    .hero-list strong {
      color: var(--text);
      display: block;
      margin-bottom: 4px;
    }

    /* Section styles */
    section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 18px;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
    }

    .section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto 45px;
    }

    /* About */
    .about-box {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(124, 58, 237, 0.05));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .about-box p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .stat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px;
    }

    .stat-card h3 {
      font-size: 2rem;
      color: var(--primary-light);
      margin-bottom: 6px;
    }

    .stat-card p {
      margin: 0;
      color: var(--muted);
    }

    /* Services block */
    .services-block {
      background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), rgba(255, 255, 255, 0.02));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      margin-top: 28px;
    }

    .service-mini {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 24px 18px;
      text-align: center;
      transition: 0.3s;
    }

    .service-mini:hover {
      transform: translateY(-6px);
      border-color: rgba(124, 58, 237, 0.4);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 14px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(124, 58, 237, 0.12);
      color: var(--primary-light);
      font-size: 1.4rem;
      font-weight: 800;
      border: 1px solid rgba(124, 58, 237, 0.22);
    }

    .service-mini h3 {
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    .service-mini p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    /* Detailed services */
    .detail-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .detail-card {
      background: linear-gradient(180deg, var(--card), var(--card-2));
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: var(--shadow);
      transition: 0.3s;
    }

    .detail-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.4);
    }

    .detail-card .service-icon {
      margin: 0 0 18px;
    }

    .detail-card h3 {
      font-size: 1.35rem;
      margin-bottom: 14px;
    }

    .detail-card p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .detail-card ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .detail-card ul li {
      color: var(--text);
      position: relative;
      padding-left: 20px;
    }

    .detail-card ul li::before {
      content: "•";
      color: var(--primary-light);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.2rem;
      line-height: 1;
    }

    /* CTA */
    .cta {
      padding-bottom: 90px;
    }

    .cta-box {
      text-align: center;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(255, 255, 255, 0.03));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 42px 24px;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      margin-bottom: 12px;
    }

    .cta-box p {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto 24px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.02);
    }

    .footer-content {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      color: var(--muted);
    }

    .footer-content span strong {
      color: var(--text);
    }

    /* Responsive */
    @media (max-width: 1050px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .hero-grid,
      .about-box,
      .detail-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 60px;
      }

      .about-box,
      .services-block,
      .detail-card,
      .cta-box {
        padding: 22px;
      }
    }
  