 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background: url('assets/img/Background-01 1.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
}

.section-01,
.section-02,
.section-03 {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 50px;
  opacity: 1; /* Start fully visible */
  transition: opacity 1s ease-in-out; /* Smooth fade transition */
}

.section-02,
.section-03 {
  opacity: 0; /* Start hidden */
  pointer-events: none; /* Disable interaction when hidden */
}

.section-02.active,
.section-03.active {
  opacity: 1; /* Fade in when active */
  pointer-events: auto; /* Enable interaction when visible */
}

p {
  padding: 40px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 37px;
  text-align: center;
  color: #ffffff;
  max-width: 771px;
  margin: 0 auto;
}

button {
  position: relative;
  padding: 0.5em 1.5em;
  outline: none;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 37px;
  overflow: hidden;
  transition: 0.2s;
  border-radius: 50px;
  cursor: pointer;
}

button:hover {
  box-shadow: 0 0 10px #ffffff, 0 0 25px #bfbfbf, 0 0 50px #ffffff;
  transition-delay: 0.6s;
}

button span {
  position: absolute;
}

button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff);
}

button:hover span:nth-child(1) {
  left: 100%;
  transition: 0.7s;
}

button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bfbfbf);
}

button:hover span:nth-child(3) {
  right: 100%;
  transition: 0.7s;
  transition-delay: 0.35s;
}

button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffffff);
}

button:hover span:nth-child(2) {
  top: 100%;
  transition: 0.7s;
  transition-delay: 0.17s;
}

button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #bfbfbf);
}

button:hover span:nth-child(4) {
  bottom: 100%;
  transition: 0.7s;
  transition-delay: 0.52s;
}

button:active {
  background: transparent;
  color: white;
  box-shadow: 0 0 8px #ffffff, 0 0 8px #bfbfbf, 0 0 8px #ffffff;
  transition: 0.1s;
}

.container {
  max-width: 1440px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 180px;
  /* margin-bottom: 20px; */
}

.logo-small {
  width: 150px;
  /* margin-bottom: 20px; */
}

.wave {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
}




/* Center the container vertically and horizontally */
.center-container {
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */

}

/* Image upload container styles */
.image-upload_container {
display: flex;
justify-content: center; /* Centers the content horizontally */
align-items: center; /* Centers the content vertically */
height: 250px;
width: 350px;
border: 5px dashed white; /* Dashed white border */
color: white; /* Text color */
background-color: #33333300; /* Background color */
text-align: center; /* Centers text inside */
padding: 20px;
cursor: pointer !important;
}

/* Label styling */
.image-upload_container label {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

/* Hide the file input */
.image-upload_container input {
display: none; /* Hides the file input */
}

/* SVG icon styling */
.image-upload_container svg {
margin-bottom: 10px;
fill: white; /* Sets the SVG icon color to white */
}

/* Text inside the label */
.image-upload_container p {
font-size: 22px;
color: white;
}

 

@media (max-width: 480px) {

  .logo-small {
    width: 120px;
    /* margin-bottom: 20px; */
  }


  p {
    padding: 20px 20px;
    font-size: 20px;

 
    font-weight: 400;
    line-height: 25px;
    text-align: center;
 
  
  }


  button {
    position: relative;
 
    outline: none;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 37px;
    overflow: hidden;
    transition: 0.2s;
    border-radius: 50px;
    cursor: pointer;
  }
  
}