*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-size: 16px;
  font-family: "Heebo", sans-serif;
  color: #03045e;
  background-color: #f8f9fa;
  margin: auto;
  width: 100%; 
  padding: 0;
  
}

header {
  background-color: #5390d9;
  padding: 7px 150px 5px 170px;
 
}

.container {
  position: absolute;
  text-align: center;
  width: 100%;
  height:100%;
  color: #caf0f8;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-50%, -50%);
}

.overlay-text {
  position: absolute;
  top: 20%; /* Adjust this value to vertically center the text */
  left: 50%; /* Adjust this value to horizontally center the text */
  transform: translate(-50%, -50%); /* Center the text precisely */
  background-color: transparent; /* Set the background color with some transparenc*/
  color: #FFFFFF; /* Set the text color */
  padding: 10px 20px; /* Add some padding to the text */
  font-size: 20px; /* Adjust the font size */
  text-align: center; /* Center the text horizontally */ 
}

.logo {
  width: 75px;
  height:75px;
  align-items: center;
}

nav {
  float: right;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
}


/*.menu li {
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #1e96fc;
  font-weight: bold;
}*/

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

.menu li {
  float: left;
  border-right:1px solid #bbb;
}

.menu li:last-child {
  border-right: none;
}

.menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size:20px;
  font-weight:bold;
}

.menu li a:hover:not(.active) {
  background-color: #003f88;
  font-weight:normal;
}

.active {
  background-color: #04AA6D;
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 100%; /* Adjust to ensure each slide takes up 100% of the viewport */
    transition: transform 1s ease-in-out;
    animation: slide 20s infinite;
}

.hero-slide {
    width: 100%; /* Make sure each slide takes up 100% of the viewport */
    position: relative;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 80vh;
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: Heebo, sans-serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077b6;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005f8a;
}

/* Slider Animation */
@keyframes slide {
    0% { transform: translateX(0%); }
    20% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
}


/* Navigation Buttons */
.hero-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.hero-navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-navigation button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}