@media screen and (min-height: 800px) {
  .parent-container {
    min-height: 83vh !important;
  }
}
@media screen and (max-width: 1000px) {
  .container {
    width: 80% !important;
  }
  .container h1 {
    font-size: 28px !important;
  }
  .container p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 800) {
  .container {
    width: 90% !important;
  }
  .container h1 {
    font-size: 26px !important;
  }
  .container p {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 600px) {
  .parent-container {
    min-height: 82svh !important;
  }

  footer a {
    font-size: 16px !important;
  }

  .list {
    padding-top: 10px !important;
    font-size: 16px !important;
  }
  .list li {
    padding-left: 16px !important;
  }
  .btn {
    margin-top: 18px !important;
    font-size: 20px !important;
    padding: 10px 20px !important;
  }
  .container {
    padding: 15px !important;
    width: 90% !important;
  }
  .container h1 {
    font-size: 24px !important;
    margin: 8px 0 !important;
  }
  .container p {
    font-size: 16px !important;
    margin-top: 8px !important;
  }
  .container h2 {
    font-size: 18px !important;
  }
  .btn {
    margin-top: 16px !important;
  }
}
@media screen and (max-width: 500px) {
  .parent-container {
    min-height: 83svh !important;
  }
  .nav-links {
    gap: 10px !important;
  }

  .navbar a {
    font-size: 13px !important;
  }
  .footer-links {
    gap: 10px !important;
  }

  .footer-links a {
    font-size: 13px !important;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
}

header {
  padding: 24px 16px;
  background: #005b96;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}
.container {
  background: rgba(
    255,
    255,
    255,
    0.9
  ); /* Change last number (0.9) to adjust opacity */
  padding: 20px 30px;
  border-radius: 10px; /* Slightly rounded corners */
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333; /* Dark text for better contrast */
}

.container h1 {
  font-size: 32px;
  margin: 15px 0;
  text-align: center;
}
.container p {
  font-size: 24px;
  margin-top: 16px;
  margin-bottom: 0px;
}
.container h2 {
  margin-bottom: 10px;
  text-align: center;
}
.container h3 {
  text-align: center;
}
.description {
  text-align: left;
}
.img-con {
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 5px;
}
.img-con img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #333;
}
.list {
  width: fit-content;
  margin: 0 auto;
  padding: 16px 20px 0px 20px;
  text-align: left;
  font-size: 25px;
}
.list li {
  margin-bottom: 10px;
  padding-left: 20px;
}
.btn {
  text-decoration: none;
  color: #fff; /* White text */
  background-color: #005b96; /* Dark blue button color */
  padding: 15px 30px;
  border-radius: 25px; /* Rounded button corners */
  font-size: 26px;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Add hover effect to the button */
.btn:hover {
  background-color: #004275; /* Darker blue on hover */
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Place video behind the container */
}

.background-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* Solid white overlay */
  opacity: 0.6; /* Adjust overlay transparency */
  mix-blend-mode: multiply; /* Blend video with background color */
  z-index: -2; /* Ensure transparency layer is behind video */
}

footer {
  overflow: hidden;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  background-color: #005b96;
  padding: 24px 16px;
}

.footer-links a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
