/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 85%;
    position: relative;
    margin: -180px auto 20px auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Hero Section with Background Image and Visual Effects */
.hero-section {
    background: linear-gradient(rgba(0, 77, 0, 0.7), rgba(0, 77, 0, 0.7)), 
    url('/images/company.jpg') no-repeat center center/cover;
    /* Use a gradient overlay and blend it with the background image */
    background-blend-mode: overlay;
    color: white;
    text-align: center;
    padding: 240px 20px;
    position: relative;
    margin-bottom: 80px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  Add a subtle shadow effect */
}


/* Adding Visual Effects to the Text */
.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* Text shadow for depth */
    animation: fadeIn 1.5s ease-in-out; /* Smooth fade-in animation */
}

.hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for paragraph */
    animation: fadeIn 2s ease-in-out; /* Smooth fade-in animation */
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Sections */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 32px;
    color: #004d00;
    margin-bottom: 15px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.section ul {
    padding-left: 20px;
    list-style: none;
}

.section ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.section ul li i {
    color: #004d00;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Map */
.map-container {
    margin: 20px 0;
}

/* Contact Information */
.contact-info ul {
    list-style-type: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info strong {
    font-size: 18px;
    color: #004d00;
}

/* CTA Button */
.cta-button {
    background-color: #66cc66;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #004d00;
}

/* Footer */
footer {
    /*background-color: #004d00;*/ 
    color: #838383;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .section h2 {
        font-size: 28px;
    }

    .section p, .section ul li {
        font-size: 16px;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #66cc66;
    color: white;
    padding: 15px;
    border-radius: 50%;
    border: none;
    font-size: 25px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensures it appears above all other content */
}

.back-to-top:hover {
    background-color: #004d00;
    transform: scale(1.1);
}

