
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

header {
    background-color: #009640;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 1em;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
 font-size: 1.5em;}

main {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero {
    background: #1e1e1e;
    color: white;
    padding: 60px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0)), url('../img/hero_placeholder.jpg');
    background-size: cover;
    background-position: center;
    animation: fadeIn 2s ease-in-out;
background-position: center 90%;background-position: center 150%;background-position: center 150%; height: 600px;}

section {
    margin-bottom: 40px;
}

footer {
    background-color: #2e2e2e;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 0.3s;
}

@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 30px 10px;
    background-position: center 90%;background-position: center 150%;background-position: center 150%; height: 600px;}
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #1ebd5a;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery a {
    width: 200px;
    display: block;
}
.gallery img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.service-item {
    width: 280px;
    text-align: center;
}
.service-item img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-item h3 {
    margin: 15px 0 10px;
    color: #009640;
}
.service-item p {
    font-size: 0.95rem;
}

.contact-info {
    background-color: #e6f5ec;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.contact-info p a {
    color: #009640;
    font-weight: bold;
}
.contact-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.contact-form h2 {
    margin-bottom: 15px;
}
.contact-form label {
    display: block;
    margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    margin-top: 15px;
    background-color: #009640;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}
.contact-form button:hover {
    background-color: #007b34;
}
.map-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}


nav a:hover {
    color: yellow !important;
}



.logo-container {
    text-align: center;
    padding: 20px 0;
}

.logo-container img {
    max-width: 600px;
    width: 90%;
    height: auto;
}
