.elementor-2397 .elementor-element.elementor-element-63c4c54{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2397 .elementor-element.elementor-element-63c4c54.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2397 .elementor-element.elementor-element-fc2c200{width:100%;max-width:100%;}@media(min-width:768px){.elementor-2397 .elementor-element.elementor-element-63c4c54{--width:109.524%;}}/* Start custom CSS for html, class: .elementor-element-fc2c200 *//* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #13AFF0, #0EA758); /* Gradient Background on "Contact Us" */
    color: transparent;
    -webkit-background-clip: text; /* Clip the gradient to the text */
    background-clip: text;
    animation: slideInFromTop 1s ease-out;
}

header p {
    font-size: 1.2em;
    color: #555;
    animation: slideInFromBottom 1.2s ease-out;
}

/* Animations */
@keyframes slideInFromTop {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: center;  /* Center elements horizontally */
    align-items: flex-start;  /* Align to the top vertically */
    gap: 20px;                /* Space between sections */
    flex-wrap: wrap;          /* Wrap sections on smaller screens */
    margin: 20px 0;           /* Reduced the gap between sections */
    height:30;
}

.contact-info, .contact-form {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;   /* Ensure content flows from top to bottom */
    justify-content: space-between; /* Ensures equal height for both sections */
    height: 100%;              /* Set height to ensure both sections match */
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #0EA758;  /* Green color for the title */
    text-align: center; /* Center align the titles */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.contact-info h2:hover, .contact-form h2:hover {
    color: #13AFF0; /* Hover color change for title */
}

.contact-info ul {
    list-style-type: none;
}

.contact-info li {
    margin: 15px 0;
    font-size: 1.1em;
    text-align: left; /* Keep the text left-aligned */
}

.contact-info i {
    margin-right: 10px;
    color: #0EA758; /* Green icon color */
}

.contact-info li:hover {
    color: #13AFF0; /* Hover color change for text */
}

/* Contact Form */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px; /* Reduced gap between fields */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1em;
}

.contact-form button {
    background-color: #13AFF0;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0EA758;
}

.contact-form button:active {
    background-color: #0EA758;
}

/* Google Map */
.google-map {
    margin-top: 40px;
    text-align: center;
}

/* Animations for Hover Effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes bounceOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(0); }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        width: 90%;
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.1em;
    }

    .contact-info li, .contact-form input, .contact-form textarea {
        font-size: 1em;
    }

    .contact-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.6em;
    }

    .contact-info li, .contact-form input, .contact-form textarea {
        font-size: 1em;
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 1em;
    }
}/* End custom CSS */