
html, body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f4f8;
    color: #333;

    position: relative;
    z-index: 0;
    overflow-x: hidden;
    height: 100%;

}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/images/background2.png');
    background-size: cover; /* Ensures the image covers the entire background */
	-webkit-background-size: cover;
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center;
    opacity: 1.0; /* 0 for less, up to 1 for black*/
    z-index: -1;
    pointer-events: none; /* Prevents interference with clicks */
}



header {
    background-color: #1e2a38;
    color: white;
    padding: 1em 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
}
.nav-links li a {
    color: white;
    text-decoration: none;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
}
main {
    padding: 2em;
}
.content {
    text-align: center;
}
footer {
    background-color: #1e2a38;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #1e2a38;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1em;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
}

.hero {
  text-align: center;
  padding: 4em 2em;
  background-color: #e0e8f0;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.cta-button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #1e2a38;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.cta-button:hover {
  background-color: #2c3e50;
}
.slideshow-container {
    position: relative;
    max-width: 50%;
    margin: auto;
    overflow: hidden;
    background: #000;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
