#logo {
  width: 300px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  filter: invert(1);
  opacity: 0; /* Initially set opacity to 0 */
  transform: scale(1.2); /* Initially set scale to 120% */
  animation: fadeInAndScale 2s ease forwards; /* Apply the fadeInAndScale animation */
}

@keyframes fadeInAndScale {
  from {
    opacity: 0; /* Start from fully transparent */
    transform: scale(1.2); /* Start at 120% scale */
  }
  to {
    opacity: 1; /* Fade in to fully opaque */
    transform: scale(1); /* Scale down to 100% */
  }
}


.parallax {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed; /* Ensure the background image remains fixed */
}

/* Adjust background size for smaller screens, like iPhones */
@media only screen and (max-width: 768px) {
  .parallax {
    background-size: auto 100%;
  }
}


.main-content {
  height: 100vh; /* Ensure the container takes up the full height of the viewport */
  z-index: 1; /* Ensure content is above the parallax background */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
}

.content-center {
  text-align: center; /* Center text inside */
  color: white; /* Set text color */
}

.logo-wrapper {
  margin-bottom: 20px; /* Add space between logo and typewriter */
}

.typewriter-wrapper {
  width: 100%; /* Ensure typewriter takes full width */
}


.overlay {
  background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent black overlay */
  position: absolute; /* Positioned absolutely within the section */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Set the height to 100% of the parent (.parallax) */
  z-index: 1; /* Set a higher z-index to ensure it's above the video */
  pointer-events: auto; /* Allow the overlay to block mouse interactions */
}

.video-highlight {
  border-radius: 10px; /* Adjust the value as needed to control the roundness of the corners */
  overflow: hidden; /* Clip the iframe to fit within the rounded corners */
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height divided by width) */
  overflow: hidden;
  border-radius: 10px; /* Adjust the value for rounded corners */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Disable mouse and touch interactions on the iframe */
}

.section-content {
  text-align: center;
  padding: 20px;
  max-width: 1200px; /* Set the maximum width for the container */
  margin: 0 auto; /* Center the container horizontally */
}

.section-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.5; /* Adjust this value to control the spacing between lines */
}


.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Each benefit occupies full width on larger screens */
    max-width: calc(50% - 20px); /* Set a maximum width to enforce two benefits side by side with gap */
}

.benefit img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0%;
    margin-bottom: 10px;
    filter: invert(1);
}

.benefit h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.benefit p {
    font-size: 14px;
}

.image-container {
  width: 200px; /* Adjust the container size as needed */
  height: auto;
  perspective: 1000px; /* Set the perspective for the 3D effect */
}

.rotate-on-hover {
  width: 100%;
  height: 100%;
  transition: transform 0.5s; /* Add a transition for smooth animation */
}

.rotate-on-hover:hover {
  transform: rotateY(180deg); /* You can adjust the degree of rotation as needed */
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 16px;
}
