/* Global styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Light gray for body */
    color: #333; /* Dark gray text */
}

/* Header styles */
header {
    background-color: #ffffff; /* Change header to white */
    padding: 20px 30px; /* Thicker top bar */
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Slight shadow */
    height: auto; /* Adjust or set a fixed height if necessary */
}

/* Header text styles */
.header-text {
    margin-left: 20px; /* Space between image and text */
    display: flex;
    flex-direction: column; /* Stack text vertically */
    justify-content: center; /* Center the text vertically */
    opacity: 0; /* Start hidden */
    animation: fadeIn 1s forwards; /* Animation for text */
    animation-delay: 0.5s; /* Delay for a smoother effect */
}

.animated-text {
    font-size: 1.5em; /* Adjust size as needed */
    font-weight: bold; /* Make the text bold */
    font-style: italic;
    color: #000; /* Change color to black */
}

.sub-text {
    font-size: 1.2em; /* Adjust size for the subtitle */
    color: #000; /* Change color to black */
}


/* Navigation menu styles */
nav {
    flex-grow: 1; /* Allow the nav to take up remaining space */
    display: flex;
    justify-content: center; /* Center navigation items */
}


/* Animation keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0; /* Start completely transparent */
    }
    100% {
        opacity: 1; /* End fully visible */
    }
}


/* Header image styles */
header img {
    height: 90px;
    width: auto;
    max-height: 90px; /* Limit the maximum height to avoid being cut off */
}

.location {
    font-size: 1em; /* Adjust font size */
    color: #333; /* Dark gray color */
    margin-left: 20px; /* Space between image and location text */
    display: flex; /* Align icon and text horizontally */
    align-items: center; /* Center icon with text */
    padding: 0 10px; /* Optional horizontal padding */
}

/* Navigation menu styles */
nav {
    flex-grow: 1; /* Allow the nav to take up remaining space */
    display: flex;
    justify-content: center; /* Center navigation items */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between navigation items */
}

nav ul li {
    margin: 0; /* Remove margin from list items */
}

nav a {
    color: #00A1E4; /* Lighter blue for text */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #00A1E4; /* Highlight color on hover */
    color: #fff; /* Change text color on hover */
}
/* Contact buttons - Move them more to the left */
.header-buttons {
    display: flex;
    gap: 10px;
    margin-right: 30px; /* Decrease this value to move buttons left */
}

/* Call button with phone icon */
.header-buttons a.call-now::before {
    content: "\1F4DE "; /* Phone handset icon Unicode */
}

.header-buttons a {
    background-color: #00A1E4; /* Lighter blue */
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.header-buttons a:hover {
    background-color: #fff; /* White background on hover */
    color: #00A1E4; /* Lighter blue text */
}

/* Contact button styles */
.contact-button {
    background-color: #00A1E4; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 15px; /* Button padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth background transition */
}

/* Optional: Add hover effect for buttons */
.contact-button:hover {
    background-color: #007BB5; /* Darker shade on hover */
}

/*Padding for sections to be spaced below header bar */
#gallery {
    scroll-margin-top: 130px;
}

#about {
    scroll-margin-top: 130px;
}

#services {
    scroll-margin-top: 130px;
}

#contact {
    scroll-margin-top: 130px;
}




/* Menu toggle for mobile */

.menu-toggle {
    display: none; /* Hidden by default */
    cursor: pointer; /* Change cursor to pointer */
}

/* Close menu icon styles */
.close-menu {
    display: none; /* Hidden by default */
    cursor: pointer; /* Change cursor to pointer */
    font-size: 2em; /* Size of close icon */
    color: #00A1E4; /* Color of the close icon */
    margin: 10px; /* Space around the icon */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .header-text, .location {
        display: none; /* Hide these elements on mobile */
    }

    .menu-toggle {
        display: block; /* Show the hamburger menu on mobile */
    }

    nav ul {
        display: none; /* Hide the navigation items by default */
        flex-direction: column; /* Stack items vertically */
        width: 100%; /* Full width */
        background-color: #ffffff; /* Background color for the dropdown */
        position: absolute; /* Positioning */
        top: 90px; /* Position below the header */
        left: 0; /* Align left */
        z-index: 999; /* Ensure it sits on top */
    }

    nav.active ul {
        display: flex; /* Show the nav items when active */
    }

    .menu-toggle.open i {
        content: "\f00d"; /* Unicode for FontAwesome close icon */
        font-family: 'FontAwesome'; /* Use FontAwesome font for the close icon */
    }

    .close-menu {
        display: block; /* Show close icon when menu is active */
    }

    .about-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.about-text, .about-image {
    width: 100%;
    text-align: center;
}

.about-image {
    margin-top: 20px; /* Add space between the text and image on small screens */
}
}



/* Main content */
main {
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
    border-bottom: 1px solid #555;
    padding-bottom: 20px;
}

h2 {
    font-size: 2em;
    color: #00A1E4; /* Lighter blue */
}

h3 {
    font-size: 1.5em;
    color: #00A1E4; /* Lighter blue */
}




/* Gallery Section Styles */
.gallery-images {
    display: flex; /* Use flexbox for responsive layout */
    flex-wrap: wrap; /* Allow images to wrap to the next line */
    justify-content: center; /* Center images */
    margin-top: 20px; /* Space above the gallery */
}

.gallery-images img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    margin: 10px; /* Space between images */
    border-radius: 5px; /* Rounded corners for images */
}


/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 600px; /* Set a maximum width for the slideshow */
    margin: auto; /* Center the slideshow */
    overflow: hidden; /* Hide overflow */
}

/* Individual slides */
.mySlides {
    display: none; /* Hide slides by default */
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 1s ease-in-out; /* Fade effect */
}

/* Show the current slide */
.mySlides.show {
    display: block; /* Show the current slide */
    opacity: 1; /* Fade in */
}


/* Slideshow images */
.mySlides img {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Rounded corners */
}




/* About Us Section */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: #f9f9f9; /* Light background for better contrast */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.about-text {
    width: 55%; /* Takes up a bit more space for the text */
}

.about-text h1, .about-text h3 {
    color: #00A1E4; /* Use brand color for headings */
}

.about-text p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.about-image {
    width: 40%; /* The right side with image/quote takes less space */
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #00A1E4; /* Accent color border on the left */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    text-align: center;
}

.about-image img {
    max-width: 80% !important; /* Adjusts the width to take up less space */
    max-height: 200px !important; /* Reduce the height to a more reasonable size */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Keep the responsiveness */
    border-radius: 8px;
    margin-bottom: 10px;
}

blockquote {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
    margin-top: 10px;
    border-left: 4px solid #00A1E4;
    padding-left: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center align items */
        padding: 20px;
    }

    /* Make the About Us text full width */
    .about-text,
    .about-image {
        width: 100%; /* Take up full width on mobile */
        text-align: center; /* Center the text */
        padding: 20px; /* Add padding for better spacing */
    }

    .about-image {
        margin-top: 20px; /* Space between the sections */
    }

    .about-image img {
        max-width: 80%; /* Make the image smaller and centered */
        height: auto; /* Maintain aspect ratio */
    }
}




/* Services Section */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Add a hover effect to the service boxes */
.service-box {
    flex: 1 1 calc(30% - 20px); /* Make boxes take up 30% of the row, minus margins */
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #00A1E4;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Hidden before animation */
    transform: translateY(20px); /* Slight downward offset before animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease; /* Smooth transition for transform */
}

/* Ensure the animation happens when scrolling into view */
.service-box.show {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide up into place */
}

/* Hover effect */
.service-box:hover {
    transform: scale(1.05); /* Enlarge the box slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Add a larger shadow to emphasize the hover effect */
}


/* Ensure responsiveness */
@media (max-width: 768px) {
    .service-box {
        width: 45%; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .service-box {
        width: 100%; /* Full width for mobile */
    }
}


.services-info {
    width: 45%; /* Occupies right half */
    padding: 20px;
    background-color: #ffffff; /* White background for contrast */
    border-left: 4px solid #00A1E4; /* Accent color border on the left */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.services-info h3 {
    font-size: 1.5em;
    color: #00A1E4;
    margin-bottom: 10px;
}

.services-info p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

.external-link {
    font-weight: bold;
    color: #00A1E4;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #f0f8ff;
    border: 1px solid #00A1E4;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.external-link:hover {
    background-color: #00A1E4;
    color: #fff;
}



/*Service Area */

/* Container to hold the text and map side by side */
.service-area-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align map and list at the top */
    gap: 20px; /* Space between the text and map */
    margin-bottom: 60px; /* Space below the service area */
}

/* Service area text on the left */
.service-area-text {
    flex: 1; /* Take up remaining space */
}

/* Map container on the right */
.map-container {
    flex: 1;
    max-width: 600px; /* Optional: set a max width for the map */
    height: 100%; /* Ensure it takes the full height */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .service-area-container {
        flex-direction: column; /* Stack vertically on small screens */
    }

    .map-container {
        max-width: 100%; /* Map takes full width on small screens */
        height: auto;
    }
}

/* Initial state: hidden and slightly translated to the left */
.service-area li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
}

/* When the item is in view, it will slide in */
.service-area li.show {
    opacity: 1;
    transform: translateX(0); /* Slide to original position */
}









/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
}

.contact-button {
    background-color: #00A1E4;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.contact-button:hover {
    background-color: #007BB5;
    color: #fff;
}

/* Social Media Links */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    font-size: 2em;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-media a:hover {
    opacity: 0.7;
}

/* Partner Image Link */
.partner-link {
    margin-top: 20px;
}

.partner-link img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.partner-link img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}










/* Footer styles */
footer {
    background-color: #222; /* Dark background for footer */
    padding: 20px; /* Space around footer content */
    color: rgba(255, 255, 255, 0.8); /* Very light gray text */
    display: flex;
    justify-content: space-between; /* Distribute space between left, center, and right */
    align-items: center; /* Center items vertically */
}

.footer-content {
    width: 100%; /* Full width */
    display: flex;
    justify-content: space-between; /* Distribute content evenly */
    align-items: center; /* Center items vertically */
}

.footer-left, .footer-center, .footer-right {
    flex: 1; /* Each section takes up equal space */
}

.footer-center {
    text-align: center; /* Center the partner logos */
}

.partner-logos img {
    max-width: 100px; /* Set a max width for partner logos */
    margin: 0 10px; /* Spacing between logos */
}

.footer-right {
    text-align: right; /* Align text to the right */
}
