/* Hero Section Base Styles */
.cs_hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 670%; /* Start zoomed in at 670% */
  transition: background-size 0.1s linear, background-position 0.1s linear;
  z-index: -1;
}

.cs_hero_text {
  text-align: center;
  transition: transform 0.1s linear;
}

.cs_hero_title {
  font-size: 3rem;
  color: #fff;
  transform: scale(1);
  transition: transform 0.1s linear;
}
/* Add this CSS to prevent page scroll */
html {
  height: 100%;
  overflow: hidden; /* Disable scrolling */
  margin: 0; /* Ensure no default margin on body */
}
.hand {
  opacity: 0;
  transition: opacity 0.3s ease;
}


