
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f5f7fb;
      color: #222;
      line-height: 1.6;
    }

    html {
      scroll-behavior: smooth;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    header {
      background: linear-gradient(135deg, #6dd5fa, #2980f2);
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      max-height: 55px;
    }

    nav ul {
      display: flex;
      gap: 22px;
      list-style: none;
    }

    nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #00c2ff;
    }

    .btn {
      display: inline-block;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      background: #00c2ff;
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn:hover {
      background: #009fd1;
      transform: translateY(-2px);
    }

    section {
      padding: 90px 0;
    }

    .hero {
      background: linear-gradient(135deg, #0b132b, #1c2541);
      color: #fff;
      min-height: 90vh;
      display: flex;
      align-items: center;
    }

    .hero-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 56px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #d1d5db;
    }

    .hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 40px;
      color: #0b132b;
      margin-bottom: 12px;
    }

    .section-title p {
      color: #555;
      max-width: 700px;
      margin: auto;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: #fff;
      padding: 35px;
      border-radius: 18px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card h3 {
      margin: 18px 0;
      color: #0b132b;
    }

    .icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #e0f7ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .about {
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 18px;
    }

    .stats {
      background: linear-gradient(135deg, #00c2ff, #0077b6);
      color: #fff;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .stat-box h2 {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .pricing {
      background: #fff;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .price-card {
      background: #f8fbff;
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      border: 2px solid transparent;
      transition: 0.3s;
    }

    .price-card:hover {
      border-color: #00c2ff;
      transform: translateY(-8px);
    }

    .price-card h3 {
      margin-bottom: 15px;
      color: #0b132b;
    }

    .price {
      font-size: 48px;
      color: #00a8e8;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .price-card ul {
      list-style: none;
      margin-bottom: 25px;
    }

    .price-card ul li {
      margin: 12px 0;
    }

    .testimonials {
      background: #eef5ff;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .testimonial {
      background: #fff;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .testimonial h4 {
      margin-top: 20px;
      color: #0b132b;
    }

    .cta {
      background: linear-gradient(135deg, #0b132b, #1c2541);
      color: #fff;
      text-align: center;
    }

    .cta h2 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .contact {
      background: #fff;
    }

    form {
      max-width: 700px;
      margin: auto;
      display: grid;
      gap: 20px;
    }

    input,
    textarea {
      padding: 16px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-size: 16px;
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    footer {
      background: #0b132b;
      color: #fff;
      text-align: center;
      padding: 30px 0;
    }

    @keyframes scrollReviews {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media(max-width: 768px) {
      .hero-text h1 {
        font-size: 40px;
      }

      nav {
        flex-direction: column;
        gap: 15px;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
 