/* Reset default margin and padding */
body, h1, h2, p {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background-image: url("Sea.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps the background fixed while scrolling */
}
/* body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f5f5f5;
} */

header {
  position: relative;
  background-image: url("path-to-your-banner-image.png");
  background-size: cover;
  text-align: center;
}

.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.398);
  padding: 10px 0;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
}

.banner h1 {
  color: #000000;
}

.main {
  padding: 50px;
}

.introduction {
  background-color: #18476264;
  padding: 20px;
  border-radius: 10px;
  margin: 50px 0;
}

/* Reset text alignment for h2 and p inside .introduction */
.introduction h2{
  text-align: center;
  font-size: 43px;
  color: #000000;
}



.introduction p {
  text-align: left;
  text-indent: 20px; /* Adjust the value as needed */
  margin-left: -20px; /* Adjust the value to match text-indent */
  color: #000000;
}


.download-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ff9d7c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #2980b9;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f6ff0000;
  color: #fff;
}
  

  /* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
  } */
  .intro {
    background-color: #ffffff34;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }
  .intro h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
  }
  .feature {
    margin: 20px;
    padding: 20px;
    background-color: #00000022;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .feature h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00ff9d7c;
  }
  .feature k {
    font-size: 16px;
    color: #ffffff;
  }



  .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-wrapper {
    width: 800px; /* Set a fixed width for larger screens */
    height: 450px; /* Set a fixed height based on your aspect ratio */
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .video-wrapper {
        width: 100%; /* Full width for smaller screens */
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
    }
}
