/* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Header */
    header {
      width: 100%;
      background: #0b1c39;
      color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }
    .container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
    }

    /* Logo */
    .logo h1 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
    }
    .logo span {
      color: #00c6ff;
    }
    .logo p {
      font-size: 12px;
      color: #bbb;
      margin-top: -3px;
    }

    /* Nav */
    nav {
      display: flex;
      gap: 30px;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      position: relative;
      padding-bottom: 5px;
      transition: 0.3s;
    }
    nav a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #00c6ff;
      transition: width 0.3s;
    }
    nav a:hover::after {
      width: 100%;
    }

    /* Call Now */
    .call-now {
      background: linear-gradient(45deg, #00c6ff, #0088aa);
      color: #fff;
      padding: 10px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }
    .call-now:hover {
      background: linear-gradient(45deg, #0088aa, #00c6ff);
      transform: scale(1.05);
    }

    /* Mobile */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100%;
      background: #0b1c39;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: 0.3s;
      box-shadow: -2px 0 6px rgba(0,0,0,0.3);
    }
    .mobile-nav.active {
      right: 0;
    }
    .mobile-nav a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 8px;
    }
    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: #fff;
    }

    @media(max-width: 900px){
      nav {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
    }

    .banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('https://fastly.picsum.photos/id/551/536/354.jpg?hmac=d-Bm4sGYrqEO0AvNpIiuVox2R1WgfRe_1Bezdl-ORL0') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
  }
  .banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(11,28,57,0.7);
    top: 0;
    left: 0;
  }
  .banner-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
    z-index: 2;
  }
  .banner h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .banner .subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
  }
  .banner-points {
    list-style: none;
    margin-bottom: 25px;
  }
  .banner-points li {
    font-size: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
  }
  .cta-buttons {
    margin-bottom: 30px;
  }
  .call-now-banner {
    background: linear-gradient(45deg, #00c6ff, #0088aa);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    margin-right: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: 0.3s;
  }
  .call-now-banner:hover {
    background: linear-gradient(45deg, #0088aa, #00c6ff);
    transform: scale(1.05);
  }
  .learn-more {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s;
  }
  .learn-more:hover {
    background: #fff;
    color: #0b1c39;
  }
  .trust-badges {
    margin-top: 20px;
    display: flex;
    gap: 20px;
  }
  .trust-badges img {
    width: 48px;
    height: 48px;
  }

  /* Responsive */
  @media(max-width: 768px){
    .banner {
      height: auto;
      padding: 80px 20px;
      text-align: center;
    }
    .banner h1 {
      font-size: 28px;
    }
    .banner .subtitle {
      font-size: 16px;
    }
    .banner-points {
      text-align: left;
      display: inline-block;
    }
    .cta-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .call-now-banner {
      margin: 10px 0;
    }
  }
   /* Products Section */
  .products {
    background: #f8f9fb;
    padding: 80px 20px;
    text-align: center;
  }
  .container-products {
    max-width: 1200px;
    margin: auto;
  }
  .products h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0b1c39;
  }
  .section-subtitle {
    color: #555;
    margin-bottom: 40px;
  }

  /* Grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  /* Cards */
  .product-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  .product-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0b1c39;
  }
  .product-card .price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0088aa;
  }
  .product-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
  }
  .product-card ul li {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
  }
  .btn-product {
    background: linear-gradient(45deg, #00c6ff, #0088aa);
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
  }
  .btn-product:hover {
    background: linear-gradient(45deg, #0088aa, #00c6ff);
    transform: scale(1.05);
  }

  /* Highlight (best plan) */
  .highlight {
    border: 2px solid #00c6ff;
    transform: scale(1.05);
  }

  /* Features Section */
  .features {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  .container-features {
    max-width: 900px;
    margin: auto;
    text-align: left;
  }
  .features h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0b1c39;
    text-align: center;
  }
  .section-subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size: 16px;
    text-align: center;
  }

  /* Feature Box */
  .feature-box {
    display: flex;
    align-items: flex-start;
    background: #f8f9fb;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
  }
  .feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .feature-box i {
    font-size: 30px;
    color: #00c6ff;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0b1c39;
  }
  .feature-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }

  /* Responsive */
  @media(max-width: 600px) {
    .feature-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .feature-box i {
      margin-bottom: 10px;
    }
  }


.about {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.about-container {
  max-width: 1000px;
  margin: auto;
}
.about h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0b1c39;
}
.about p {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.about-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.about-box {
  flex: 1;
  min-width: 250px;
  background: #f8f9fb;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}
.about-box:hover {
  background: #eef6ff;
  transform: translateY(-5px);
}
.about-box i {
  font-size: 40px;
  color: #00c6ff;
  margin-bottom: 10px;
}
.about-box h4 {
  font-size: 18px;
  color: #0b1c39;
  margin-bottom: 10px;
}
.about-box p {
  font-size: 14px;
  color: #333;
}
.products {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}
.products-container {
  max-width: 1100px;
  margin: auto;
}
.products h2 {
  font-size: 32px;
  color: #0b1c39;
}
.products .subtitle {
  margin-bottom: 40px;
  font-size: 16px;
  color: #555;
}
.product-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.product-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.product-card.featured {
  border: 2px solid #00c6ff;
}
.product-card i {
  font-size: 20px;
  color: #00c6ff;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1c39;
}
.product-card p {
  color: #555;
  margin-bottom: 15px;
  font-size: 14px;
}
.product-card h4 {
  color: #111;
  font-size: 18px;
  margin-bottom: 20px;
}
.product-card .btn {
  display: inline-block;
  background: #00c6ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.product-card .btn:hover {
  background: #0094cc;
}
.cta {
  background: url('https://fastly.picsum.photos/id/680/536/354.jpg?hmac=5ousyk43676yLeRoswIozJ-em8ZcFyAw6_NHxBf1Rdc') no-repeat center/cover;

  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.cta-container {
  max-width: 800px;
  margin: auto;
}
.cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}
.cta p {
  font-size: 16px;
  margin-bottom: 25px;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #0072ff;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #f1f1f1;
  color: #005bb5;
}
.cta-btn i {
  margin-right: 8px;
}
.cta-btn2 {
    background: linear-gradient(45deg, #00c6ff, #0088aa);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin-top: 20px;
    position: relative;
    top: 15px;
}

.footer {
  background: #0d1117;
  color: #bbb;
  padding: 60px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about, .footer-links, .footer-legal {
  flex: 1;
  min-width: 250px;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #00b894;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom .disclaimer {
  font-size: 12px;
  color: #888;
  max-width: 900px;
  margin: 10px auto 0;
}

.contact {
  padding: 60px 20px;
  background: #f5f7fa;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.contact-info ul li i {
  color: #00b894;
  margin-right: 10px;
}

.contact-info a {
  color: #00b894;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}

.contact-form button {
  background: #00b894;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #019874;
}
.call-now-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b1c39;
    padding: 12px 0;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.call-now-bar a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}