/*Contact*/
/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f6;
    color: #263238;
    margin: 0;
    padding: 0;
}

/* Navbar */
/* Navbar Styling */
header {
    background-color: #ffffff;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Container */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    gap: 10px;
}

.navbar-text {
    color: #eebf17;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.navbar-text:hover {
    transform: scale(1.1);
}

.navbar-logo {
    height: 40px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: rotate(360deg);
}

/* Navbar Links */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-link {
    color: #00a652;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 10px;
}

.nav-link:hover {
    color: #eebf17;
    transform: scale(1.1);
}

/* More Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: #00a652;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu a:hover {
    background-color: #eebf17;
    color: #263238;
}

/* Show dropdown on hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Navbar */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #00a652;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        text-align: center;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        display: none;
        position: relative;
        box-shadow: none;
    }

    .nav-item.dropdown.open .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
    }
    }

/* Contact Section */
.contact {
    max-width: 1100px;
    margin: 80px auto 40px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #00a652;
    margin-bottom: 30px;
}

/* Contact Grid*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left (Contact Details) & Right (Form) */
    gap: 40px;
    align-items: center;
    padding: 20px;
}

/* Contact Details Section */
.contact-grid ul {
    list-style: none;
    padding: 0;
}

.contact-grid li {
    font-size: 18px;
    line-height: 1.6;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 15px;
}

.contact-grid li:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Icons */
.contact-grid i {
    font-size: 24px;
    color: #00a652;
    margin-right: 12px;
    transition: color 0.3s ease-in-out;
}

.contact-grid li:hover i {
    color: #eebf17;
}

/* Location Styling */
.contact-grid p {
    margin: 0;
    padding: 2px 0;
    font-size: 16px;
    color: #555;
}

/* Email and Social Links */
.contact-grid a {
    text-decoration: none;
    color: #00a652;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contact-grid a:hover {
    color: #eebf17;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        text-align: center;
    }

    .contact-grid li {
        justify-content: center;
    }

    .contact-grid i {
        margin-right: 6px;
    }
}

/* Form Card */
.card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card h4 {
    color: #00a652;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Fields */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 12px;
    border: 2px solid #00a652;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

input:focus, textarea:focus {
    border-color: #eebf17;
    box-shadow: 0px 2px 8px rgba(238, 191, 23, 0.5);
}

/* Submit Button */
input[type="submit"] {
    background: #00a652;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none;
}

input[type="submit"]:hover {
    background: #eebf17;
    color: black;
}

/* Map Section */
.container-map {
    text-align: center;
    margin-top: 40px;
}

.container-map h2 {
    color: #00a652;
    font-size: 2rem;
    margin-bottom: 15px;
}

.container-map iframe {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    border-radius: 8px;
}

/* Footer Styling */
#footer {
    background: #00a652;
    color: #eebf17;
    padding: 40px 0;
    text-align: center;
}

#footer h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #eebf17;
}

#footer a {
    color: white;
    font-size: 30px;
    margin: 0 15px;
    transition: all 0.3s ease-in-out;
}

#footer a:hover {
    color: #eebf17;
    transform: scale(1.1);
}

#footer p {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 15px;
    color: #eebf17;
}
