/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}
.inline-img {
    display: inline-block; /* Ensures the image is treated as inline content */
    vertical-align: middle; /* Aligns the image with the middle of the text */
    width: 60px; /* Adjust based on your icon size */
    height: 55px;
    margin-right: 10px; /* Space between the image and the text */
}
.p-with-img {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
/* Header Styles */
header {
    background-color: #008080;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    width: 64px;
    height: auto;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    flex-grow: 1;
    text-align: left;
}

/* Background Slideshow */
/* Background Slideshow */
.background-slideshow {
    position: fixed;
    top: 76px;  /* Adjust this as per your need */
    left: 0px;
    width: 100%;
    height: 80vh;  /* Adjust the height of the slideshow */
    z-index: -1;  /* Ensure the slideshow stays behind the content */
    overflow: hidden;
}


.mySlides {
    display: none;  /* Hide all slides by default */
}

.mySlides img {
    width: 100%;
    height: 100vh; /* Ensure the images fill the full viewport height */
    object-fit: cover; /* Maintain the aspect ratio while covering the area */
}



/* About Section */
#about {
    position: relative;
    z-index: 2;  /* Keep the content above the slideshow */
    background-color: rgba(255, 255, 255, 0.85);  /* Semi-transparent background */
    padding: 40px;
    margin: 50px auto;
    max-width: 80%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about h2 {
    font-size: 2.5em;
    color: #008080;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about-content div {
    background-color: rgba(255, 255, 255, 0.9);  /* Ensure each box has a slightly opaque background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    flex-basis: 30%;  /* Ensure equal width for each column */
}

.about-content h3 {
    color: #008080;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
}
footer {
    margin-top: 40px;
    background-color: #004d4d; /* Darker color for top section */
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom: 1px solid #00796b; /* Subtle divider */
}

.footer-newsletter,
.footer-app,
.footer-contact {
    width: 30%; /* Adjust based on your preference */
    text-align: left;
}

.footer-newsletter p,
.footer-app p,
.footer-contact p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-newsletter input[type="email"] {
    width: 70%;
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 3px;
}

.footer-newsletter button {
    padding: 10px 20px;
    background-color: #00796b;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background-color: #00574b;
}

.app-links img {
    width: 100px;
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #006666; /* Lighter color for bottom section */
}

.footer-column {
    width: 30%; /* Adjust based on your preference */
    text-align: left;
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
}

.social-links a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-copyright {
    text-align: center;
    background-color: #004d4d; /* Match the top section color */
    padding: 5px 0;
}