
/* Header Title */

.headertitle .title-bar {
    background-image: linear-gradient(rgba(4,9,30,0.7),rgb(72 145 68 / 70%)), url(../images/dimage1.jpg);
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: top center; /* Center the background image */
    text-align: left; /* Align the text to the left */
    width: 100%;
    min-height: 25vh;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: center; /* Center content vertically */
    padding-left: 20px; /* Add padding to the left to create some space */
}

.headertitle .title-bar h2 {
    margin-left: 20px;
    color: #ffffff; /* White color for text */
    font-size: 38px; /* Adjust font size as needed */
    text-align: left; /* Align text to the left within the container */
    width: 100%; /* Ensure the text takes up full width */
    padding: 0; /* No additional padding needed */
}


/* Text Content */
.textcontent {
    display: flex; /* Use flexbox for layout */
    justify-content: flex-start; /* Align items to the start */
    align-items: stretch; /* Stretch items to fill the container's height */
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    max-width: 100%; /* Adjust as needed */
    margin: 20px auto; /* Center the section */
    gap: 40px; /* Space between text and image */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.text-column {
    flex: 1; /* Allow text column to take up remaining space */
}

.image-column {
    flex: 0 0 auto; /* Image column should take up its natural width */
    display: flex; /* Use flexbox for image alignment */
    align-items: stretch; /* Stretch the image to fill the column's height */
}

.image-column img {
    width: 100%; /* Make image responsive */
    height: 100%; /* Stretch image to fill the height */
    max-width: 400px; /* Limit maximum width */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px; /* Optional: rounded corners */
}

.textcontent h2, .textcontent h3 {
    text-align: left; /* Left-align headings */
}

.textcontent h2 {
    font-size: 22px; /* Adjust font size as needed */
    color: #002d13; /* Darker color for headers */
    margin-bottom: 10px; /* Space below the heading */
    margin-top: 10px; /* Space above the heading */
}

.textcontent h3 {
    font-size: 28px; /* Adjust font size as needed */
    color: #002d13; /* Darker color for sub-headers */
    margin-top: 20px; /* Space above the sub-header */
    margin-bottom: 10px; /* Space below the sub-header */
}

b {
    color:#6C946F;
    font-weight: bold;
}

.textcontent p {
    font-size: 14px; /* Adjust font size as needed */
    line-height: 1.6; /* Increase line spacing for readability */
    margin-bottom: 20px; /* Space below each paragraph */
    text-align: justify;
}

.textcontent ul {
    list-style-type: disc; /* Bullet points for list items */
    padding-left: 60px; /* Increase indentation to move bullets and text to the right */
    margin-bottom: 20px; /* Space below the list */
}

.textcontent ul li {
    font-size: 14px; /* Font size for list items */
    margin-bottom: 10px; /* Space below each list item */
}

@media (max-width: 768px) {
    .textcontent {
        flex-direction: column; /* Stack text and image vertically on smaller screens */
        align-items: center; /* Center items */
        gap: 20px; /* Space between stacked items */
    }

    .text-column {
        margin-right: 0; /* Remove right padding */
        margin-bottom: 20px; /* Add space below text column */
        width: 100%; /* Make text column full width on smaller screens */
    }

    .image-column {
        width: 100%; /* Make image column full width on smaller screens */
        text-align: center; /* Center image */
    }

    .image-column img {
        max-width:100% ;
        max-height: 350px; /* Adjust this value as needed */
        object-fit: cover; /* Ensures the image covers the area without distortion */
    }
}


/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o {
    color: #f44336;
}

/* Contact Us Page */
.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

.footer-link {
    text-decoration: none;
    color: #777;
}

/* Hide mobile-specific span */
.info-bar .mobile-view {
    display: none;
}

@media(max-width: 700px) {
    .header-buttons {
        display: none; /* Hide buttons on mobile */
    }

    .nav-links {
        position: fixed;
        background: #2da1be;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    .nav-links ul {
        padding: 30px;
    }

    nav .fa {
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 20px;
    }
}

@media(max-width: 700px) {
    .info-bar {
        text-align: center;
        padding: 10px 0;
    }

    .info-bar .desktop-view:nth-child(1) {
        display: block;
        text-align: center;
        margin-bottom: 5px;
    }

    .info-bar .desktop-view:nth-child(2),
    .info-bar .desktop-view:nth-child(3) {
        display: inline-block;
        margin-right: 10px;
    }
}

/* Map Contact */
.contact-map .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 50px 0;
    width: 80%;
    margin: auto;
}

.contact-form, .google-map {
    width: 48%; /* Each takes up 48% to allow space between them */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form .btn {
    padding: 10px 20px;
    background-color: #002d13;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.contact-form .btn:hover {
    background-color: #ffc700;
}

.contact-map h2{
    color: #002d13;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-map .container {
        flex-direction: column;
    }

    .contact-form, .google-map {
        width: 100%;
    }

    .contact-form {
        order: 1;
    }

    .google-map {
        order: 2;
        margin-top: 20px;
    }
}

/* Footer */
.site-footer {
    background-color: #002d13;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .footer-container {
        justify-content: flex-end;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 30px;
    }
}

.site-footer p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: justify;
}



.footer-container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 30px;
}


.footer-container > div {
    flex: 1;
    max-width: 250px;
}

.footer-logo h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; /* Aligns titles to the left */
}

.footer-logo p {
    text-align: justify;
    margin-left: -10px;
    color: white;
}

.footer-logo p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left; /* Ensures the text is also aligned to the left */
    color: white;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-social ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: left; /* Aligns links to the left */
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    text-decoration: underline;
    color: #ffc700;
}

.footer-social ul li a i {
    margin-right: 8px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
}


/* Adjustments for footer on mobile view */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        gap: 20px;
    }

    .footer-container > div {
        max-width: 100%;
        text-align: left; /* Align text to the left */
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: left; /* Ensure all footer sections align text to the left */
    }

    .footer-logo p,
    .footer-contact p {
        text-align: left; /* Align text to the left */
        margin-left: 0; /* Reset any left margin */
    }

    .footer-social ul li a {
        text-align: left; /* Align social links to the left */
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
}

.whatsapp-button i {
    font-size: 24px;
    color: #fff;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.success {
    color: green;
    margin-top: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}

html {
    scroll-behavior: smooth;
}
