body, h1, h2, p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  overflow: hidden; /* Prevent scrolling */
  height: 100vh; /* Ensure the body takes the full viewport height */
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.5; /* Lower opacity for the video */
  z-index: 1;
  background: url('background.jpg') no-repeat; /* Fallback image */
  background-size: cover; /* Fallback image */
}

.video-container .content {
  position: absolute;
  top: 50%;
  right: 200px;
  transform: translateY(-50%);
  z-index: 2;
  color: #104e5b;
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
}

.about {
  margin-top: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  justify-content: space-between;
}

.contact a {
  margin: 10px;
  font-size: 24px;
  color: #104e5b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #869019b4;
}

/* Media queries for different screen sizes */
@media (max-width: 1024px) {
  .video-container .content {
    right: 50px;
    max-width: 500px;
    padding: 15px;
  }

  .contact a {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  h2 {
    font-size: 24px;
  }

  .video-container .content {
    right: 30px;
    max-width: 400px;
    padding: 10px;
  }

  .contact {
    top: 10px;
    right: 10px;
  }

  .contact a {
    font-size: 20px;
    margin: 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }

  h2 {
    font-size: 20px;
  }

  .video-container .content {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    max-width: 80%; /* Full width for small screens */
    text-align: center; /* Center text on small screens */
  }

  .contact {
    flex-direction: row;
    top: 10px;
    right: 10px;
    transform: none;
  }

  .contact a {
    font-size: 18px;
    margin: 5px;
  }
}
.know-more-btn {
  display: inline-block;
  color: #f1dca4; /* Button text color */
  text-decoration: none; /* No underline initially */
  font-size: 18px;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 5px; /* Slightly rounded corners */
  transition: transform 0.3s ease, background-color 0.4s ease, text-decoration-color 0.3s ease;
  position: relative;
  background-color: #c9a8aa; /* Subtle background color */
}

.know-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Slight background change */
  transform: scale(1.05); /* Slightly enlarge the button */
  text-decoration: underline; /* Underline on hover */
  text-decoration-thickness: 2px;
  text-decoration-color: #869019b4;
}

/* Add a subtle glow animation */
.know-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.know-more-btn:hover::before {
  opacity: 1; /* Subtle glow on hover */
}
