@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap'); 

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    line-height: 1.8;
}

.header {
    background-color: #65997a;
    text-align: center;
    padding: 20px 0;
}

.header .logo {
    max-width: 300px;
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

footer {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    padding: 10px 0;
    background-color: #000;
}

footer p {
    margin: 5px 0;
    font-size: 12px;
}

footer .footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

footer .btn {
    font-size: 14px;
    padding: 5px 10px;
    margin-top: 5px;
}

main {
    margin-bottom: 40px;
}

img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: auto;
}

.image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 20px auto;
    align-items: flex-start;
}

.image-row img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .image-row img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }
}

@media (min-width: 769px) {
    .image-row img {
        width: 48%;
        height: auto;
        object-fit: contain;
    }
}

.side-by-side-image {
    flex: 0 0 48%;
    height: auto;
}

@media (max-width: 768px) {
    .image-row {
        flex-direction: column; 
    }

    .side-by-side-image {
        flex: 0 0 100%; 
        margin-bottom: 10px; 
    }
}

.contact-form {
    max-width: 500px;
    width: 90%;
    margin: 40px auto;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    max-width: 450px;
    padding: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.wide-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #65997a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #557d63;
    transform: scale(1.05);
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.nav-links li {
    padding: 5px 15px;
}

.nav-links li a {
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    background-color: #333;
    color: #65997a;
}

.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2000;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li a {
        padding: 18px;
        font-size: 18px;
    }

    .hamburger.open div:nth-child(1) {
        transform: rotate(45deg);
        position: relative;
        top: 8px;
    }

    .hamburger.open div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open div:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        top: -8px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
