body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }
  
  .hero {
    margin-top: 10vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .hero-content {
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p {
    font-size: 24px;
    margin: 20px 0;
  }
  .hero video{
      width: 100%;
  }
  .hero-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #ddd;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero h1 {
      font-size: 36px;
    }
  
    .hero p {
      font-size: 20px;
    }
  
    .nav-links {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-links.show {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 20px;
      background-color: #333;
      width: 200px;
      border-radius: 5px;
    }
  
    .nav-links li {
      margin: 15px 0;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 18px;
    }
  
    .hero-btn {
      font-size: 16px;
      padding: 8px 16px;
    }
  }
  
  @media (min-width: 2560px) {
    .hero h1 {
      font-size: 64px;
    }
  
    .hero p {
      font-size: 32px;
    }
  
    .hero-btn {
      font-size: 22px;
      padding: 15px 25px;
    }
  }

  
  

  
  /* CSS */
  .button-10 {
    margin-left: auto;
    margin-right: auto;
    margin-top: -1vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 6px;
    border: none;
  
    color: #fff;
    background: linear-gradient(180deg, #4B91F7 0%, #367AF6 100%);
     background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-10:focus {
    box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
    outline: 0;
  }