body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff; 
    background-color: #1b4332;

    /* Page fade-in animation */
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

header, footer {
    background: #2d6a4f;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    color: #ffffff;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

.hero {
    background: #2d6a4f;
    text-align: center;
    padding: 60px 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

/* Service card hover animation */
.service-card {
    border: 1px solid #2d6a4f;
    border-radius: 10px;
    padding: 20px;
    background: #2d6a4f;
    text-align: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.service-card h3 {
    margin-top: 15px;
    color: #ffffff;
}

service-card p {
    font-size: 14px;
}

.section-title {
    text-align: center;
    margin: 60px 0 20px;
    font-size: 32px;
    color: #27ae60;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}

/* Step card animation */
.step-card {
    background: #e2f0fc;
    padding: 20px;
    border-radius: 10px;
    color: #000;

    transition: transform 0.3s ease, background 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: #d0e7fb;
}

.contact-info {
    text-align: center;
    margin: 20px;
    font-size: 1.1em;
}

.contact-info p {
    margin: 5px 0;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.contact-form button {
    padding: 10px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;

    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #1e8449;
    transform: scale(1.05);
}

.map-section {
    margin: 40px 20px;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

footer {
    font-size: 14px;
}

/* CONTACT + MAP SIDE BY SIDE */
.contact-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

/* CONTACT BOX */
.contact-info-box {
    background: #2d6a4f;
    padding: 20px 25px;
    border-radius: 10px;
    width: 350px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;

    /* Dynamic effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* MAP BOX */
.map-box {
    width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);

    transition: transform 0.3s ease;
}

.map-box:hover {
    transform: scale(1.02);
}

.map-box iframe {
    width: 100%;
    height: 350px;
}
