:root {
      --primary: #0d6efd;
      --dark: #0b0f19;
      --light: #ffffff;
      --soft: #f5f9ff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--light);
      color: var(--dark);
    }

    .navbar {
      background: rgba(11,15,25,0.96);
      padding: 18px 0;
    }

    .navbar-brand {
      font-size: 28px;
      font-weight: 700;
      color: white !important;
    }

    .navbar-brand span {
      color: var(--primary);
    }

    .nav-link {
      color: white !important;
      font-weight: 500;
      margin-left: 15px;
    }

    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #0b0f19 0%, #111827 60%, #0d6efd 180%);
      color: white;
    }

    .hero h1 {
      font-size: 60px;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero p {
      font-size: 18px;
      margin: 25px 0;
      opacity: 0.9;
    }

    .btn-main {
      background: var(--primary);
      border: none;
      padding: 14px 30px;
      border-radius: 12px;
      color: white;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
    }

    .btn-main:hover {
      background: #0b5ed7;
      color: white;
    }

    section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 40px;
      font-weight: 700;
    }

    .service-card {
      background: white;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      height: 100%;
      transition: 0.3s;
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-card i {
      font-size: 32px;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .process {
      background: var(--soft);
    }

    .step-box {
      text-align: center;
      padding: 30px;
    }

    .step-number {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 24px;
      font-weight: bold;
    }

    .contact-box {
      background: #0b0f19;
      color: white;
      border-radius: 24px;
      padding: 50px;
    }

    footer {
      background: #05070d;
      color: white;
      text-align: center;
      padding: 30px 0;
    }

    @media(max-width:768px) {
      .hero h1 {
        font-size: 38px;
      }

      .hero {
        text-align: center;
        padding: 80px 0;
      }
    }