        
* {
    margin:0;
    padding:0;
    list-style: none;
    text-decoration: none;
    transition: 0.3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
  }
  
  body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background-color: #0c0b0be1;
      color: #fff;
  }
  
  .ham {
    width: 35px;
    height: 35px;
    background: black;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    position: fixed;
    top: 6px;
    right: 20px;
    display: none; /* Hide by default */
  }
  
  .line1, .line2, .line3{
    background: white;
    border-radius: 3px;
    width: 25px;
    height: 3px;
    margin: 2px;
  }
  
  .active .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
  
  }
  .active .line2 {
    opacity: 0;
  }
  
  .active .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
  }
  
  header {
    width:100%;
  }
  
  .link{    
    left: 0%;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b2fe1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 98;
  }
  
  nav .logo {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 100px;
  }
  
  nav ul li {
    text-align:center;
    padding: 15px 20px;
   
  }
  
  nav ul li:hover{
      color: #26A69A;
  }
  nav ul li a::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: -2px;
          width: 100%;
          height: 2px;
          background: #26A69A;
          transform: scaleX(0);
          transition: transform 0.3s ease-in-out;
      }
      nav ul li a:hover::after {
          transform: scaleX(1);
      }
  
  nav ul li a {
      position: relative;
      font-size: 18px;
      color: white;
      padding: 5px 0;
      transition: color 0.3s;
  }
  .btn{
    width: 150px;
    height: 40px;
    background-color: rgb(201, 229, 21);
    margin-left: 15px;
    border-radius: 20px;
    font-size: 20px;
  }
  .btn:hover{
      color: #FF6F61; 
      background: #006F77;
  }
  
  .content {
          padding: 100px 20px 50px;
      }
      .content img {
          width: 100%;
          max-width: 100%;
          border-radius: 10px;
          margin-top: 20px;
          height: 100%;
          max-height: 50%;
      }
  
  .footer {
          background: #000;
          color: white;
          text-align: center;
          padding: 20px;
          margin-top: 50px;
      }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ham {
      display: flex; 
    }
  
    nav ul {
      position: fixed;
      left: -100%; 
      top: 0;
      height: 100vh;
      width: 50%;
      background: rgba(0, 0, 0, 0.821);
      backdrop-filter: blur(10px);
      z-index: 999;
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 49px;
      padding-top: 30px;
      align-items: center;
      transition: left 0.3s ease;
    }
   
    .link {
      left: 0; 
    }
  }
  