html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Edge */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}


.section1 {
  height: 200vh; 
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  position: absolute;
  top: 8%;
  right: 6%;
  color: white;
  font-size: 120px;
  font-weight: bold;
  text-align: right;
  margin: 0;
  opacity: 0;
  animation: slideUp 1.5s ease-out forwards;
  transform: translateY(100px);
  will-change: transform, opacity;
}

h1 span {
  font-size: 20px;
  color: gray;
  position: relative;
  top: -10px;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.img {
  position: absolute;
  left: 5%;
  top: 15%;
  width: 400px;
  height: 800px;
  border-radius: 30px;
  opacity: 0;
  animation: slideUp 1.5s ease-out forwards;
  will-change: transform, opacity;
  
}

.desc {
  position: absolute;
  top: 16.5%;
  right: 15%;
  color: rgb(130, 130, 130);
  font-size: 15px;
  text-align: center;
  opacity: 0;
  animation: slideUp 1.5s ease-out forwards;
  transform: translateY(100px);
  will-change: transform, opacity;
}

.desc2 {
  position: absolute;
  top: 25%;
  right: 2%;
  color: rgb(255, 255, 255);
  font-size: 15px;
  text-align: left;
  margin-right: 50px;
  max-width: 750px;
  white-space: normal;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1.5s ease-out forwards;
  transform: translateY(100px);
  will-change: transform, opacity;
}



.section2 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(232, 232, 232);
}


.feature-box, .feature-box2, .feature-box3, .feature-box4 {
  width: 22%; 
  height: 400px; 
  background-color: rgba(255, 255, 255, 0.959);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; 
  position: relative; 
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.feature-container {
  display: flex;
  justify-content: center;
  gap: 1%;
  width: 90%;
}


.feature-box img, 
.feature-box2 img, 

.feature-box4 img {
  width: 70%;  
  height: auto; 
  object-fit: cover; 
  position: absolute;
  bottom: 0; 
  
}
.feature-box3 img {
  width: 72%;  
  height: auto; 
  object-fit: cover; 
  position: absolute;
  top: 0;
}

/* Add spacing between text and image */
.feature-box p, 
.feature-box2 p, 
.feature-box3 p, 
.feature-box4 p {
  padding-bottom: 0px;
  /* Pushes text upwards to prevent overlap */
}

/* Customizable individual box sizes */
#box1 {
  width: 25%;
  height: 550px;
}

#box2 {
  width: 25%;
  height: 550px;
}
#box3 {
  width: 25%;
  height: 550px;
}
#box4 {
  width: 25%;
  height: 550px;
}

.feature-box:hover, .feature-box2:hover,
.feature-box3:hover, .feature-box4:hover {
  transform: translateY(-10px); 
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}