* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    line-height: 1.5;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between; /* Space between left (logo) and center (nav links) */
    align-items: center;
    padding: 1rem;
    background-color: #16423C;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.logo {
    color:#151515;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 20px; /* Align logo to the left */
    flex: 0 0 auto; /* Make sure logo stays on the left */
}

.nav-center {
    display: flex;
    justify-content: center;
    flex: 1; /* Make nav links take up the center of the navbar */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links li a {
    color:#151515;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color :#C4DAD2;
}
/* Navbar Scroll Effect */
.navbar.scrolled {
    background-color: #6A9C89;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
    background-color: #6A9C89;
}
h2{
    color: #16423C;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #6A9C89;
    border-radius: 5px;
    font-size: 1rem;
    animation: inputFadeIn 2s ease-in-out;
}

@keyframes inputFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact button {
    padding: 1rem 2rem;
    background-color: #16423C;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background-color: #151515;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #333;
        width: 50%;
        text-align: center;
    }
}
/* Unique Wave Effect */
.footer {
    position: relative;
    background: #0c7583;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('https://i.imgur.com/6LKQhKk.png');
    background-size: cover;
    animation: wave-animation 4s infinite ease-in-out;
}

#wave1 {
    z-index: 100;
    opacity: 1;
    bottom: 0;
    animation-delay: 0s;
}

#wave2 {
    z-index: 99;
    opacity: 0.5;
    bottom: 10px;
    animation-delay: -1s;
}

#wave3 {
    z-index: 98;
    opacity: 0.3;
    bottom: 20px;
    animation-delay: -2s;
}

#wave4 {
    z-index: 97;
    opacity: 0.1;
    bottom: 30px;
    animation-delay: -3s;
}

@keyframes wave-animation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}
/* Unique Wave Effect */
.footer {
    position: relative;
    background: #0c7583;
    color: rgba(196,209,202,255);
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('https://i.imgur.com/6LKQhKk.png');
    background-size: cover;
    animation: wave-animation 4s infinite ease-in-out;
}

#wave1 {
    z-index: 100;
    opacity: 1;
    bottom: 0;
    animation-delay: 0s;
}

#wave2 {
    z-index: 99;
    opacity: 0.5;
    bottom: 10px;
    animation-delay: -1s;
}

#wave3 {
    z-index: 98;
    opacity: 0.3;
    bottom: 20px;
    animation-delay: -2s;
}

#wave4 {
    z-index: 97;
    opacity: 0.1;
    bottom: 30px;
    animation-delay: -3s;
}

@keyframes wave-animation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}
/* Unique Wave Effect */
.footer {
    position: relative;
    background: #0c7583;
    color: rgba(196,209,202,255);
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('https://i.imgur.com/6LKQhKk.png');
    background-size: cover;
    animation: wave-animation 4s infinite ease-in-out;
}

#wave1 {
    z-index: 100;
    opacity: 1;
    bottom: 0;
    animation-delay: 0s;
}

#wave2 {
    z-index: 99;
    opacity: 0.5;
    bottom: 10px;
    animation-delay: -1s;
}

#wave3 {
    z-index: 98;
    opacity: 0.3;
    bottom: 20px;
    animation-delay: -2s;
}

#wave4 {
    z-index: 97;
    opacity: 0.1;
    bottom: 30px;
    animation-delay: -3s;
}

@keyframes wave-animation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}
/* Unique Wave Effect */
.footer {
    position: relative;
    background:#C4DAD2;
    color:#16423C;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('https://i.imgur.com/6LKQhKk.png');
    background-size: cover;
    animation: wave-animation 4s infinite ease-in-out;
}

#wave1 {
    z-index: 100;
    opacity: 1;
    bottom: 0;
    animation-delay: 0s;
}

#wave2 {
    z-index: 99;
    opacity: 0.5;
    bottom: 10px;
    animation-delay: -1s;
}

#wave3 {
    z-index: 98;
    opacity: 0.3;
    bottom: 20px;
    animation-delay: -2s;
}

#wave4 {
    z-index: 97;
    opacity: 0.1;
    bottom: 30px;
    animation-delay: -3s;
}

@keyframes wave-animation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 101;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color:#16423C;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color:#16423C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0c7583;
}

.footer-bottom {
    background-color: #6A9C89;
    padding: 10px 0;
    font-size: 14px;
    z-index: 101;
    position: relative;
    
}