:root {
    --primary-blue: #00BFFF;
    --dark-navy: #1A1A2E;
    --soft-cyan: #4DD0E1;
    --light-bg: #F8FAFC;
    --cta-dark: #005F73;
    --divider: #DCE3E8;
  }
  
  
     /* === Global Styles === */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  header {
     background-color: rgba(7, 109, 139, 0.644);
     border-bottom: 1px solid #ccc;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: #ffffff;
    line-height: 1.6;
  }
  #particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #013142;
}
  img {
    max-width: 100%;
    height: auto;
  }.hero {
    background-color: transparent;
  }
  
  .why, .how-it-works {
    background-color: rgba(3, 67, 87, 0.548);
  }
  
  .cta {
    background-color: rgb(1, 21, 31);
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* === Top Bar === */
  .top-bar {
  display: flex;
  justify-content: space-between; /* logo left, button right */
  align-items: center;
  padding: 20px 40px;
  
}
  .top-bar img {
  height: 220px;
  width: auto;
}
  .logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
  }
  
  .top-buttons a {
    margin-left: 00px;
    padding: 14px 34px;
    border: 1px solid #000000;
    background-color: #00BFFF;  
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
.top-buttons .btn-demo {
  background-color: #005f73; /* or your brand blue */
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
  .top-buttons:hover {
  transform: translateY(-4px); /* Moves up slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adds shadow */
}
  
  /* === Hero Section === */
  .hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    padding: 60px 40px;
    border-bottom: 1px solid #ccc;
    gap: 10px;
  }
  
  .hero-text {
    flex: 10;
    min-width: 40%;
    padding-right: 20px;
    
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
  }
  
  .hero-buttons .btn {
    margin-right: 0px;
    padding: 12px 20px;
    border: 1px solid #000000;
    background-color: #00BFFF;  
    font-weight: 600;
    display: inline-block;
    border-radius: 8px;
     transition: background-color 0.3s ease;
  }

  .hero-buttons .btn-demo {
  background-color: #005f73; /* or your brand blue */
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;

}

  .hero-buttons:hover {
  transform: translateY(-4px); /* Moves up slightly */
  box-shadow: 0 rgba(0, 0, 0, 0.2); /* Adds shadow */
}
  
  /* === Hero Image === */
  .hero-image {
    flex: 10;
    max-width: 400px;
    min-width: 250px;
    
  }
  
  /* === Why Section === */
  .why {
    padding: 60px 40px;
    border-bottom: 1px solid #ccc;
    text-align: center;
  }
  
  .why h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .feature {
    max-width: 220px;
  }
  
  .feature img {
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 0.9rem;
    color: #c9c8c8;
  }
  
  /* === How It Works === */
  .how-it-works {
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  
  .how-it-works h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
  }
  
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .step {
    max-width: 220px;
  }
  
  .step img {
    height: 50px;
    margin-bottom: 15px;
  }
  
  .step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 0.9rem;
    color: #b4b2b2;
  }
  
  .arrow {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
  }
  
  /* === Call to Action (CTA) === */
  .cta {
    padding: 60px 40px;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
  }
  
  .cta-button {
    padding: 14px 30px;
    border: 1px solid #000000;
    background-color: #00BFFF;  
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .cta-buttons:hover {
  transform: translateY(-4px); /* Moves up slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adds shadow */
}
  
  /* === Footer === */
  footer {
    padding: 20px 40px;
    border-top: 1px solid #ccc;
    text-align: center;
    background-color: #e90707;
  }
  
  footer nav a {
    margin: 0 15px;
    font-size: 0.9rem;
    color: #444;
  }
  

  
  /* === Responsive Tweak === */
  @media (max-width: 768px) {
    .hero,
    .features,
    .steps {
      flex-direction: column;
      text-align: center;
    }
  
    .top-bar {
      flex-direction: column;
      gap: 10px;
    }
  
    .top-buttons a {
      margin-left: 0;
      margin-right: 10px;
    }
  
    .hero-buttons .btn {
      display: block;
      margin: 10px auto;
    }
  }

  