body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.header {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.header img {
    width: 50px;
    vertical-align: middle;
}

.header h1 {
    margin: 0.5rem 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: #f4f4f4;
}

.contact-form-section, .contact-details-section {
    width: 48%;
}

.contact-form {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background: #333;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.map-section {
    padding: 2rem;
    background: #fff;
    text-align: center;
}

.social-media {
    padding: 2rem;
    background: #f4f4f4;
    text-align: center;
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 20px;
    color: inherit;
}

.footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-about,
.footer-contact,
.footer-social {
    flex: 1 1 300px;
    margin: 10px;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer p {
    font-size: 1em;
    line-height: 1.6;
    color: #ccc;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.social-links a {
    margin: 0 10px;
    font-size: 30px;
    color: #f39c12;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 0.9em;
}

.footer-bottom .footer-link {
    margin: 0 5px;
}
.goog-te-gadget-simple {
    background-color: #4285F4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

/* Ensure the WhatsApp button stays at the bottom */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 1000; /* Keeps the WhatsApp button on top of most elements */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#google_translate_element {
    position: fixed;
    right: 20px;
    bottom: 80px; /* Positioned above the WhatsApp button */
    z-index: 1100; /* Higher z-index to display above the WhatsApp button */
    transform: translateX(0);
}

@media (max-width: 768px) {
    /* Adjust positioning for mobile devices */
    #google_translate_element {
        bottom: 100px; /* Higher positioning for small screens */
        right: 50%;
        transform: translateX(50%);
    }
    .whatsapp-button {
        bottom: 40px; /* Adjusts WhatsApp button below Google Translate */
        right: 50%;
        transform: translateX(50%);
    }
}
