body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
  }
  
  .hero-scroll-container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 100vh;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .hero-scroll-container::-webkit-scrollbar {
    display: none;
  }
  
  .hero-slide {
    min-width: 100%;
    height: 100vh;
    position: relative;
    scroll-snap-align: start;
   
  }
  
  
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    color: #ff007b;
    line-height: 1.1;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
  }
  
  .cta-buttons {
    margin-top: 20px;
  }
  
  .cta-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin-right: 10px;
    background: #ff007b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    transition: background 0.3s ease;
  }
  
  .cta-buttons a:nth-child(2) {
    background: rgba(255,255,255,0.1);
    border: 1px solid #fff;
  }
  
  .cta-buttons a:hover {
    background: #e6006e;
  }
  