body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #fff; /* White background */
    color: #333; /* Dark text for readability */
    font-size: 16px; /* Increased base font size for better readability */
}

.top-bar {
    background-color: #eee; /* Light gray top bar */
    color: #333;
    text-align: center;
    padding: 5px;
}

.header, .navbar {
    background-color: #fff; /* White navbar */
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
}

.logo {
    width: 150px; /* Adjusts the logo size */
    height: auto; /* Maintains the aspect ratio of the logo */
    margin-right: 20px; /* Adds some space after the logo */
}

.navbar ul li {
    display: inline;
    margin-right: 20px;
}

.navbar a, .cta-button {
    text-decoration: none;
    color: black;
    background-color: #ffcc00; /* Yellow buttons */
    padding: 10px 15px;
    border-radius: 5px;
    margin-left: 10px;
}

.hero {
    background-color: #f0f0f0; /* Light gray background for hero */
    padding: 50px 20px;
    text-align: center;
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f9f9f9; /* Adds a subtle background color */
}

.service {
    background-color: #fff; /* White background for service cards */
    border: 1px solid #ccc; /* Subtle border */
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Enhanced shadow for depth */
    transition: transform 0.3s ease-in-out; /* Smooth transform effect */
}

.service:hover {
    transform: translateY(-5px); /* Slight raise effect on hover */
    border-color: #0072bb; /* Change border color on hover */
}

@media (max-width: 600px) {
    .services {
        flex-direction: column;
    }
    .service {
        width: 100%;
        margin-top: 10px;
    }
}

.trust-hexagon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f8f8f8; /* Light grey background */
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.text-content {
    width: 60%; /* Allocates 60% of the width to the text content */
}

.details h3 {
    color: #333; /* Dark grey text for subheadings */
    margin-top: 20px;
}

.details p {
    line-height: 1.8; /* Enhanced line height for readability */
}

.image-content {
    width: 40%; /* Allocates 40% of the width to the image content */
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* Rounded corners for aesthetics */
}

@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
    }

    .text-content, .image-content {
        width: 100%; /* Each takes full width on smaller screens */
    }

    .image-content img {
        margin-top: 20px; /* Adds spacing between the text and image */
    }
}

.testimonials-section {
    background-color: #f4f4f4; /* Light gray background for the section */
    padding: 40px 0;
    text-align: center;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto; /* Allows horizontal scrolling */
    gap: 15px; /* Spaces between items */
    padding: 20px 0;
}

.testimonial-item {
    min-width: 300px; /* Ensures items do not shrink too much */
    padding: 20px;
    background-color: #ffffff; /* White background for each testimonial */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 5px; /* Rounded corners */
    text-align: left;
}

.testimonial-item p {
    font-size: 16px; /* Slightly larger font size for readability */
    color: #666; /* Dark grey text color */
    margin-bottom: 10px;
}

.testimonial-item .author {
    font-weight: bold;
    color: #333; /* Darker text for author name */
}

.image-gallery {
    padding: 40px 0;
    background-color: #ffffff; /* Light background for the gallery */
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 50px; /* Adjust padding as needed */
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* Contact and Map Container Styles */
.contact-map-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #ffffff; /* Optional: Background color for the whole section */
}

/* Business Info Styling */
.business-info {
    flex: 1 1 360px; /* Flexible sizing but with a minimum size */
    background: #fff;
    padding: 20px;
    margin-right: 20px; /* Adds separation between info and map */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

.business-info h2 {
    font-size: 24px; /* Larger font size for heading */
    color: #007BFF; /* Bright blue for a modern feel */
    margin-bottom: 10px;
}

.business-info p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

/* Map Styling */
.map iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 8px; /* Rounded corners for the map */
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-map-container {
        flex-direction: column;
    }

    .business-info {
        margin-right: 0;
        margin-bottom: 20px; /* Adds space between the info and map on smaller screens */
    }

    .map iframe {
        width: 100%;
        height: 300px;
    }
}
/* Footer Styling */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px; /* Matched with the general body font size for consistency */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures responsive wrapping */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.footer-about, .footer-nav, .footer-social {
    flex: 1 1 20%; /* Ensures each section takes at least 20% and flexes with more space */
    margin: 10px; /* Provides space between sections */
}

.footer-about {
    text-align: left;
}

.footer-nav, .footer-social {
    text-align: center;
}

.footer-nav ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li a, .footer-social a {
    color: white;
    text-decoration: none;
    padding: 5px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.footer-nav ul li a:hover, .footer-social a:hover {
    color: #ffcc00; /* Bright yellow for hover effects */
}

/* Enhancements for headings and links */
.footer-about h4, .footer-nav h4, .footer-social h4 {
    color: #ffcc00; /* Makes the section titles stand out */
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about, .footer-nav, .footer-social {
        flex: 1 0 100%; /* Each takes full width on smaller screens */
        text-align: center;
        margin: 10px 0;
    }
}

.embed-links-section {
    padding: 40px 0;
    background-color: #f9f9f9; /* A light background to keep it distinct from other sections */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.left-embed, .right-embed {
    flex: 1;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.left-embed iframe, .right-embed iframe {
    border-radius: 5px; /* Soft rounded corners for the iframes */
}

h4 {
    color: #333;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-embed, .right-embed {
        width: 100%;
        margin: 10px 0;
    }
}

/* contact us page */



.contact-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #f4f4f4; /* Slightly different background to set it apart */
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.contact-details {
    flex: 1;
    margin-right: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-details h2 {
    color: #0072bb;
    margin-bottom: 10px;
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details ul li a {
    color: #0072bb;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-details ul li a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
}

.contact-map iframe {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    border-radius: 8px; /* Rounded corners for the map iframe */
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-map {
        order: -1; /* Show map above the contact information on mobile */
        width: 100%; /* Full width on small screens */
        margin-bottom: 20px;
    }
}


.hexagon-services-full {
    padding: 40px 40px;
    background-color: #f9f9f9; /* Consistent with other sections */
}

.hexagon-services-full h2, .hexagon-services-full h3 {
    text-align: center;
    color: #000000;
}

.hexagon-services-full p {
    padding: 0 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .hexagon-services-full p {
        padding: 0 10px;
    }
}



/* about us  */


