* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
  }
  
  :root {
    --bg-color: #0c0c0c;
    --text-color: #fff;
    --main-color: #e21675;
  
    --big-font: 6.6rem;
    --p-font: 1rem;
  }
  
  body {
    background: var(--bg-color);
    color: var(--text-color);
  }
  
  /* Header Styling */
  header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 35px 7%;
    display: flex;
    align-items: center;
    margin-inline: 0 15px;
    justify-content: space-between;
    transition: all 0.5s ease;
  }
  
  .logo img {
    width: 150px;
    height: auto;
  }
  
  .navlist {
    display: flex;
  }
  
  .navlist a {
    display: inline block;
    margin: 0 35px;
    color: var(--text-color);
    font-size: var(--p-font);
    transition: all 0.6s ease;
  }
  
  .navlist a:hover {
    color: var(--main-color);
  }
  
  .right-content {
    display: flex;
    align-items: center;
  }
  
  .nav-btn {
    display: inline-block;
    padding: 9px 24px;
    background: transparent;
    border: 2px solid var(--text-color);
    border-radius: 7px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.6s ease;
  }
  
  .nav-btn:hover {
    transform: translateY(-5px);
    border: 2px solid var(--main-color);
    color: var(--main-color);
  }
  
  #menu-icon {
    font-size: 42px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    display: none;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1571089844007-d6e51e58bada') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
  }
  
  
  .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .social-icons i {
    color: var(--text-color);
    font-size: 30px;
    transition: color 0.3s ease;
  }
  
  .social-icons i:hover {
    color: var(--main-color);
  }
  
  .hero-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 150px;
  }
  
  .hero-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    
  }
  
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-text h1 {
    font-size: var(--big-font);
    font-weight: 600;
    margin:  120px 0;
  }
  
  .hero-text h5 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0;
  }
  
  .hero-text p {
    width: 100%;
    max-width: 620px;
    font-size: var(--p-font);
    font-weight: 400;
    line-height: 32px;
    color: var(--text-color);
    margin: 40px;
  }
  
  .main-hero {
    display: flex;
    align-items: center;
  }
  
  .btn {
    display: inline-block;
    padding: 13px 32px;
    background: var(--main-color);
    border: 2px solid transparent;
    border-radius: 7px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.6s ease;
    margin-right: 20px;
    align-items: center;
  }
  
  .btn:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Design */
  @media (max-width: 920px) {
    .hero {
      grid-template-columns: 1fr;
      height: auto;
    }
  
    .social-icons {
      flex-direction: row;
      gap: 10px;
      justify-content: center;
      margin-bottom: 20px;
    }
  
    .hero-img {
      height: 500px;
      width: 100%;
      margin: 0 auto;
    }
  
    .hero-img img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
  }
  
  @media (max-width: 570px) {
    .hero {
      height: 100vh;
    }
  
    .hero-img {
      height: 400px;
      width: 400px;
      margin: 0 auto;
    }
  
    :root {
      --big-font: 3.4rem;
    }
  
    .hero-text h5 {
      font-size: 15px;
    }
  
    .hero-img {
      height: 360px;
      width: 360px;
      margin: 0 auto;
    }
  }
  .text-gray-600 {
    color: #f9fafb;
    background-color: #0c0c0c;
    padding: 40px 0;
}

.body-font {
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    width: 45%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.video-wrapper .video-info {
    padding: 10px;
    text-align: center;
    background-color: var(--bg-color);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .video-wrapper {
        width: 90%;
    }
}

