body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Viewport height */
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the whole area */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 34pt;
    text-align: center;
    width: 100%;
    z-index: 2; /* Ensures overlay is above the video but below the text */
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    z-index: 1; /* Ensures overlay is above the video but below the text */
}
.logo {
    max-width: 300px; /* Adjust based on your logo size */
    margin-bottom: 20px; /* Space between logo and text */
    z-index: 3; /* Ensures overlay is above the video but below the text */
}
.content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 4; /* Ensures overlay is above the video but below the text */
}
.content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 5; /* Ensures overlay is above the video but below the text */
}

.image-gallery img {
    width: 70px; /* Thumbnail size */
    height: auto;
    margin: 10px;
    cursor: pointer;
}

.parallax1 {
  /* The image used */
  background-image: url('/images/para1.jpg');

  /* Set a specific height */
  height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.parallax2 {
  /* The image used */
  background-image: url('/images/para2.jpg');

  /* Set a specific height */
  height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax3 {
  /* The image used */
  background-image: url('/images/para3.jpg');

  /* Set a specific height */
  height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.content3 {
  height: 3000px;
  background-color: #f1f1f1;
  padding: 20px;
}

