 body {
      background: radial-gradient(circle at center, #0f0f0f, #000000);
      color: #fff;
      font-family: Arial, sans-serif;
      padding-top: 50px;
    }
    .card {
      background: rgba(0, 255, 255, 0.05);
      border: none;
      border-radius: 12px;
      padding: 20px;
      color: #fff;
      backdrop-filter: blur(10px);
      height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card-title {
      color: #00ffaa;
      font-weight: bold;
      font-size: 1.1rem;
    }
    .btn-custom {
      background-color: #00ffcc;
      color: #000;
      border-radius: 10px;
      padding: 10px 20px;
      font-weight: bold;
      border: none;
    }
    .extra-services p {
      margin-bottom: 8px;
    }
    .price {
      font-size: 20px;
      font-weight: bold;
    }
      body {
      background-color: #000;
      color: #fff;
    }
    .service-card {
      background: #111;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      transition: all 0.3s;
    }
    .service-card:hover {
      border-color: #00f2ff;
      box-shadow: 0 0 10px #00f2ff44;
    }
    .icon-top-right {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background-color: rgba(0, 242, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #00f2ff;
    }
    .learn-btn {
      margin-top: 10px;
      padding: 5px 15px;
      border-radius: 30px;
      background-color: #222;
      color: #fff;
      font-size: 14px;
      border: 1px solid #444;
    }
    .learn-btn:hover {
      background-color: #00f2ff;
      color: #000;
    }

    /*testimonial section css*/
     .testimonial-card {
      background-color: #111;
      color: #fff;
      border-radius: 10px;
      padding: 20px;
      height: 100%;
    }
    .testimonial-card img {
      width: 50px;
      height: 50px;
      object-fit: cover;
    }
    .testimonial-header small {
      color: #bbb;
    }

    /*Commitment section css*/
     .glow-box {
      background: linear-gradient(135deg, #0f0f0f, #1e1e1e);
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      border: 2px solid transparent;
      box-shadow: 0 0 10px #00ffc3;
      transition: 0.3s ease-in-out;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .glow-box:hover {
      box-shadow: 0 0 20px #00ffc3, 0 0 30px #00ffc3;
    }

    .icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #00ffc3;
    }

    .btn-glow {
      margin-top: 30px;
      padding: 12px 24px;
      border: 2px solid #00ffc3;
      background: transparent;
      color: #00ffc3;
      border-radius: 8px;
      transition: all 0.3s;
    }

    .btn-glow:hover {
      background-color: #00ffc3;
      color: #000;
    }

    .equal-height {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

   