/* Welcome Section */
.welcome-section {
  background-color: #f0f4f8;
  padding: 50px 20px;
  text-align: center;
}

.welcome-section h1 {
  color: #005288;
}

.welcome-section p {
  font-size: 18px;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.features-section h2 {
  color: #005288;
}

.features-section ul {
  list-style: none;
  padding: 0;
}

.features-section ul li {
  font-size: 18px;
  margin: 10px 0;
}

/* Trusted Clients Section */
.trusted-clients-section {
  padding: 50px 20px;
  background-color: #f0f4f8;
  text-align: center;
}

.trusted-clients-section h2 {
  color: #005288;
}

.trusted-clients-section ul {
  list-style: none;
  padding: 0;
}

.trusted-clients-section ul li {
  font-size: 18px;
  margin: 10px 0;
}

/* Call-to-Action Section */
.cta-section {
  padding: 50px 20px;
  background-color: #005288;
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section a.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  background-color: #e9ff70;
  color: #005288;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-section a.btn:hover {
  background-color: #c8e556;
}



/* Apply Flexbox to the entire page */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Ensure the main content takes up remaining space */
main {
  flex: 1;
}

/* Footer styling */
footer {
  background-color: #005288;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #0277BD;
  position: relative;
  bottom: 0;
  width: 100%;
}


.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header nav ul li {
  display: inline-block;
  margin: 0 15px;
}

header {
  background: #005288;
  color: #ffffff;
  padding-top: 30px;
  min-height: 70px;
  border-bottom: #0277BD solid 3px;
}

header a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header ul {
  padding: 0;
  list-style: none;
}

header li {
  display: inline;
  margin: 0 20px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
}

header nav {
  float: right;
  margin-top: 10px;
}

header .highlight,
header .current a {
  color: #e9ff70;
  font-weight: bold;
}

header a:hover {
  color: #ffffff;
  font-weight: bold;
}

/* Highlight the active link */
nav ul li a.active {
  color: #e9ff70; /* Highlight color */
  font-weight: bold;
  border-bottom: 2px solid #e9ff70;
}

.about-section {
  padding: 50px 0;
  background: #e8f4f8;
}

.about-section h1,
.about-section p {
  margin-bottom: 20px;
}

.about-section h1 {
  margin-top: 0;
  color: #0277BD;
}

iframe {
  width: 100%;
  height: 600px;
  /* Adjust height as needed */
  border: none;
}

body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero {
  background-color: #074f57;
  background-image: url("//images/background.jpg");
  color: white;
  padding-top: 200px;
  padding-bottom: 200px;
}

.container {
  width: 90%; /* Use a higher percentage for small devices */
  max-width: 960px; /* Cap the width for larger screens */
  margin: auto;
  overflow: hidden;
}


footer {
  background-color: #005288;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #0277BD;
  width: 100%;
  margin-top: auto;
  position: relative;
}

footer p {
  margin: 0;
  /* Removes default margin from the paragraph */
}
.indented {
  text-indent: 1.5em;
  margin: 0; /* Removes the default margin between paragraphs */
  line-height: 1.4; /* Optional: Adjust line spacing if needed */
}

.indented2 {
  text-indent: 3em;
  margin: 0; /* Removes the default margin between paragraphs */
  line-height: 1.4; /* Optional: Adjust line spacing if needed */
}
@media (max-width: 768px) {
  .container {
    width: 95%; /* More width for smaller devices */
    padding: 10px;
  }

  .indented, .indented2 {
    text-indent: 1em; /* Reduce indent for better readability */
  }

  h1, h3, h4, p {
    font-size: 1rem; /* Scale down font sizes */
  }
}
