html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #1e1e1c;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw 5vw;
  /* background-color: #f8f9fa; */
}

.nav-link {
  text-decoration: none;
  color: aliceblue;
}

.left {
  margin-right: auto;
}

.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.right {
  margin-left: auto;
}

.logo {
  font-weight: bold;
}

main {
  width: 100%;
  min-height: 100vh;
}

.hero-section {
  height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  overflow: hidden;
  cursor: none;
}

@font-face {
  font-family: "CustomFont";
  src: url("./Fonts/65de01ff0481afd740fe93f1_Season.woff2");
  font-weight: normal;
  font-style: normal;
}

.hero-section h1 {
  font-family: "CustomFont", sans-serif;
  font-size: 17vw;
  line-height: 0.8;
  color: aliceblue;
  text-align: left;
  width: 100%;
  font-weight: 200;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.hero-section h1:nth-child(2) {
  text-align: right;
}

.mouse-flow{
    position: relative;
    font-size: 1vw;
    color: #fff;
    font-family: "CustomFont", sans-serif;
    font-weight: 200;
    text-align: center;
}

.mouse-flow h6{
    pointer-events: none;
}

.mouse-flow h6:nth-child(1){
    position: fixed;
    transform: translate(0%, 0%);
transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.mouse-flow h6:nth-child(2){
    position: fixed;
    transform: translate(0%, 100%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1.5s;
    }
.mouse-flow h6:nth-child(3){
    position: fixed;
    transform: translate(0%, 200%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 2s;
    }
.mouse-flow h6:nth-child(4){
    position: fixed;
    transform: translate(0%, 300%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 2.5s;
    }

    


.split-section {
  display: flex;
  width: 100%;
  min-height: 100vh; /* Full viewport height */
}

.left-section {
  position: relative;
  width: 35%;
}

.right-section {
  width: 65%;
  display: flex;
  flex-direction: column;
  padding-top: 20vh;
}

.right-section h2 {
  font-family: "CustomFont", sans-serif;
  margin: 0;
  padding: 10px;
  font-size: 5rem; /* Larger font size */
  opacity: 0.1;
  color: #fff;
  transition: 0.3s;
  font-weight: 200;
}

.right-section h2 sup {
  font-size: 1rem;
  font-style: italic;
}

.right-section h2:hover {
  opacity: 1;
  cursor: pointer;
}

.img-div-sec {
  display: none;
  position: fixed;
  width: 30%;
  left: 3%;
  height: 35%;
  /* background-color: #fff; */
  transform: translate(0%, -50%);
  /* background-size: cover; */
  /* background-position: center; */
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.img-container{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.new-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 0vh;
  margin-top: 20vh;
}

.big-hello {
  font-size: 16vw;
  color: #fff;
  margin: 0;
  font-family: "CustomFont", sans-serif;
  z-index: 9;
  font-weight: 200;
}

.intro-text {
  font-size: 5vw;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  font-family: "CustomFont", sans-serif;
  font-weight: 200;
}

.new-section p {
  color: #fff;
  width: 70%;
  font-size: 3vw;
  text-align: center;
  font-family: "CustomFont", sans-serif;
}

.scroll-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: inline-block;
}

.scroll-content h3 {
  display: inline-block;
  font-size: 4vw;
  color: #fff;
  font-family: "CustomFont", sans-serif;
  font-weight: 200;
  margin-right: 50px; /* Adjust spacing between items */
}

.footer {
  padding: 0;
  margin: 0;
  min-height: 100vh;
}

.footer .intro-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.footer .intro-text a {
  font-size: 4vw;
  color: #fff;
  text-decoration: none;
}
.footer p {
  font-size: 1vw;
  color: #fff;
}

@media (max-width: 799px) {
  /* Navbar adjustments */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-link {
    margin: 5px 0;
  }

  /* Hero section adjustments */
  .hero-section h1 {
    font-size: 2.5rem; /* Adjust as needed */
  }

  /* Split section adjustments */
  .split-section {
    flex-direction: column;
  }

  .left-section, .right-section {
    width: 100%;
  }

  /* About section adjustments */
  .big-hello {
    font-size: 3rem; /* Adjust as needed */
  }

  .intro-text {
    font-size: 1.2rem; /* Adjust as needed */
  }

  /* Scroll section adjustments */
  .scroll-content h3 {
    font-size: 1.5rem; /* Adjust as needed */
  }

  /* Footer adjustments */
  .footer .intro-text a {
    display: block;
    margin: 10px 0;
  }
}

