
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins', sans-serif;
    }

    body{
      height:100vh;
      background:linear-gradient(135deg,#ff0080,#6a00ff);
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .container{
      width:95%;
      max-width:1200px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      position:relative;
    }

    
    .left{
      color:white;
      width:45%;
      position:relative;
    }

    .left::before{
      content:"";
      position:absolute;
      left:-20px;
      top:0;
      width:3px;
      height:100%;
      background:white;
      
    }

    .left h1{
      font-size:48px;
      font-weight:700;
      line-height:1.2;
      margin-bottom:20px;
    }

    .underline{
      width:60px;
      height:4px;
      background:white;
      margin:15px 0 30px;
    }


    
    .right{
      width:55%;
      position:relative;
    }

    .card{
      background:rgb(10, 10, 20);
      border-radius:6px;
     box-shadow:0 20px 40px rgba(0,0,0,0.4);
    }

    .nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:15px 25px;
      background:rgba(0,0,0,0.6);
    }

    .logo{
      color:white;
      font-weight:600;
      letter-spacing:2px;
    }

    .nav ul{
      display:flex;
      list-style:none;
      gap:20px;
    }

    .nav ul li a{
      text-decoration:none;
      color:rgb(167, 166, 166);
      font-size:14px;
    }

    .btn-small{
      background:rgb(192, 45, 1);
      color:white;
      border:none;
      padding:6px 14px;
      border-radius:20px;
      font-size:12px;
      cursor:pointer;
    }

    .hero{
      padding:80px 30px;
      text-align:center;
      color:#fff;
      background:linear-gradient(to top,rgba(0,0,0,0.8),rgba(0,0,0,0.2));
      background-image: url(./mountain.jpg);
      background-repeat: no-repeat;
      background-size: cover;
    }

    .hero p{
      font-weight: bold;
      color: black;
      letter-spacing:3px;
      font-size:20px;
     margin-bottom:10px;
    }

    .hero h2{
      font-weight: bold;
      font-size:40px;
      font-weight:600;
      margin-bottom:25px;
    }

    .hero .buttons{
      display:flex;
      justify-content:center;
      gap:15px;
    }

    .btn{
      padding:10px 22px;
      border-radius:25px;
      border:none;
      font-size:13px;
      cursor:pointer;
    }

    .btn.red{
      background:#ff3b3b;
      color:white;
    }

    .btn.dark{
      background:#1c1c1c;
      color:white;
    }

    .using{
      text-align:center;
      color:white;
      font-size:30px;
      margin-top:15px;
   }

    
    