
/* Header Title */
b {
    color:#6C946F;
    font-weight: bold;
}

.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: 0;
    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: 37px; /* 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: 22px; /* 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 */
}

.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 */
}

.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%; /* Ensure image fits within container */
        height: auto; /* Maintain aspect ratio */
    }
}


/* 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; 
    }

    .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;
    }
}  



.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;
}
