/* locations.css */
#locations {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0;
}

.locations-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 20px; /* Adjust this value as needed to increase spacing */

}
@media (max-width: 768px) {
    .locations-intro {
        background-image: url('../assets/img/banner3.webp'), url('../assets/img/banner3.png');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}
#commercialservices {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0;
}
/* services.css */
#services {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0 4rem 0; /* Top and bottom padding, no left and right padding */
}

.services-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0; /* Top and bottom padding, which also centers content vertically */
    text-align: center; /* Align text to the center */
    color: white; /* For better contrast on a darker background */
    margin-bottom: 20px; /* Space below the services-intro section */
}
@media (max-width: 768px) {
    .services-intro {
        background-image: url('../assets/img/banner2.webp'), url('../assets/img/banner2.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}
/* Base styles for content sections */
.location-page-section,
.location-page-climate,
.location-page-breakdown,
.location-page-services,
.location-page-cta {
    margin-bottom: 10px; /* Reduced to bring sections closer */
    overflow: hidden; /* Hide overflow for contained shadows and rounded corners */
    border-radius: 8px; /* Soften the corners of the containers */
    padding: 15px 20px; /* Uniform padding for all sections */
}

/* Heading styles within sections */
.location-page-section h1,
.location-page-climate h2,
.location-page-breakdown h2,
.location-page-services h2,
.location-page-cta h2 {
    color: #0004e1; /* Bold blue color for headings */
    margin-top: 0; /* Remove top margin from headings */
    margin-bottom: 10px; /* Reduced bottom margin from headings */
    font-weight: bold; /* Bold font weight for headings */
}

/* Container for each section to align and set width */
.location-page-container {
    max-width: 60%; /* Set maximum width to control the content width */
    margin: 0 auto; /* Center the container horizontally */
    padding: 10px 20px; /* Reduced padding for less spacing inside container */
    background-color: #fff; /* White background for contrast */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Shadow for depth */
}

/* Hover effect for container */
.location-page-container:hover {
    transform: translateY(-5px); /* Lift effect on hover for interactive feedback */
}

/* Button styles for call to action */
.location-page-button-container .location-page-quote-btn,
.location-page-cta-button {
    background-color: #000e59; /* Dark blue background for contrast */
    color: #fff; /* White text for legibility */
    text-decoration: none; /* Remove underline from links */
    padding: 10px 20px; /* Slightly less padding inside buttons */
    border-radius: 25px; /* Rounded corners for buttons */
    display: inline-block; /* Display as block with inline properties */
    margin-top: 10px; /* Top margin for spacing above buttons */
    font-size: 16px; /* Font size for readability */
    font-weight: bold; /* Bold font weight for emphasis */
    transition: all 0.3s ease; /* Transition for hover effects */
}

/* Hover effects for buttons */
.location-page-button-container .location-page-quote-btn:hover,
.location-page-cta-button:hover {
    background-color: #0337b0; /* Lighter blue on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow effect for depth on hover */
    color: #e6e6e6; /* Change text color for hover state */
}

/* Paragraph styling within sections */
.location-page-main p {
    color: #666; /* Dark grey color for paragraphs */
    line-height: 1.4; /* Line height for readability */
    margin-top: 0; /* Remove top margin from paragraphs */
    margin-bottom: 10px; /* Reduced bottom margin from paragraphs */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .location-page-container {
        max-width: 95%; /* Wider content area on smaller screens */
        padding: 10px; /* Reduced padding on smaller screens */
    }

    .location-page-heading {
        font-size: 18px; /* Slightly larger font size for headings on small screens */
    }

    .location-page-main p {
        font-size: 14px; /* Smaller font size for paragraph text on small screens */
    }

    .location-page-button-container .location-page-quote-btn,
    .location-page-cta-button {
        padding: 12px 20px; /* Adjusted padding for buttons on small screens */
        font-size: 14px; /* Adjusted font size for readability on small screens */
    }
}
/* Style for desktop */
.location-page-container img {
    max-width: 100%; /* Ensures the image is never more than 100% of its container's width */
    height: auto; /* Maintains the aspect ratio of the image */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .location-page-container img {
        width: 100%; /* Sets the width to 100% of the container, which is typically the width of the screen on mobile */
        height: auto; /* Maintains the aspect ratio of the image */
    }
}
.google-map {
    padding-bottom: 50%;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}










    




.service-link {
    display: block; /* This makes sure the <a> tag encloses all the content */
    text-decoration: none; /* Removes underline from all links */
    color: inherit; /* Keeps the text color consistent */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    outline: none; /* Removes the default focus outline */
}

.service-link:hover, .service-link:focus {
    transform: scale(1.03); /* Slightly enlarges the service card on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
    border-radius: 5px; /* Optional: rounds the corners a bit */
    text-decoration: none; /* Ensures no underline appears */
    background-color: rgba(0, 0, 0, 0.05); /* Slight background color change for visual cue */
}

.service-link:focus {
    outline: 2px solid #005fcc; /* Adds a blue outline for keyboard navigation accessibility */
}
.why-choose-us h2 {
    color: #007bff; /* Brighter shade for more pop */
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem; /* Larger for more emphasis */
    font-weight: 700; /* Bold for prominence */
}

.service-item {
    background-color: #ffffff;
    border-radius: 10px; /* Slightly more rounded for modern feel */
    box-shadow: 0 4px 8px rgba(0,0,0,0.12); /* Deeper shadow for more depth */
    margin: 20px 0;
    padding: 25px; /* More padding for better spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
}
.service-list li:hover {
    transform: translateY(-3px); /* Slight lift effect on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Deeper shadow on hover */
}
.service-list li {
    background-color: #ffffff; /* White background for each list item */
    margin-bottom: 15px; /* Space between list items */
    padding: 15px; /* Padding inside each list item */
    border-radius: 5px; /* Slightly rounded corners for list items */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Soft shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}


.service-item:hover,
.service-item.eco-friendly:hover {
    transform: translateY(-5px); /* Raise effect on hover */
    box-shadow: 0 6px 16px rgba(0,0,0,0.2); /* Increased shadow for emphasis */
}

.service-item h3 {
    color: #005792; /* Kept consistent for branding */
    margin-bottom: 15px; /* Increased spacing */
    font-size: 1.25rem; /* Larger font size for headings */
}

.service-item p {
    line-height: 1.8; /* Improved readability */
    color: #555; /* Slightly darker text for better contrast */
}

/* Eco-Friendly Section - Special Styling Enhancements */
.service-item.eco-friendly {
    border-left: 4px solid #4CAF50; /* Solid color for distinction */
    background-color: #e8f5e9; /* Lighter green background for subtlety */
}

/* Why Choose Us Section Enhancements */
.why-choose-us {
    background-color: #e3f2fd; /* Light blue for a fresh look */
    padding: 60px 0; /* More vertical padding for better section separation */
}

.why-choose-us p {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px; /* Adjusted padding for better text alignment */
    font-size: 1rem; /* Standardized font size for consistency */
}

/* Responsive Design Enhancements */
@media (min-width: 768px) {
    .services-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Three columns for larger screens */
        grid-gap: 30px; /* Increased gap for better spacing */
    }
   
    .why-choose-us p {
        padding: 0 15%; /* Percentage-based padding for dynamic adjustment */
    }
}
#location-section {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0;
}


.location-section {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 20px; /* Adjust this value as needed to increase spacing */

}
@media (max-width: 768px) {
    .location-section{
        background-image: url('../assets/img/bannerMOBILE.webp'), url('../assets/img/bannerMOBILE.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}


#blog {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0;
}


.blog-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 20px; /* Adjust this value as needed to increase spacing */

}
@media (max-width: 768px) {
    .blog-intro {
        background-image: url('../assets/img/bannerMOBILE.webp'), url('../assets/img/bannerMOBILE.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}
#aboutus {
    padding-top: 35px; /* Increase padding-top to push content down */

    padding: 2rem 0 4rem 0;}


.aboutus-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 20px; /* Adjust this value as needed to increase spacing */

}
@media (max-width: 768px) {
    .aboutus-intro {
        background-image: url('../assets/img/banner4.webp'), url('../assets/img/banner4.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}
#commercialservices {
    padding-top: 35px; /* Increase padding-top to push content down */

    padding: 2rem 0 4rem 0;}


.commercialservices-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 20px; /* Adjust this value as needed to increase spacing */

}
@media (max-width: 768px) {
    .commercialservices-intro {
        background-image: url('../assets/img/bannerMOBILE.webp'), url('../assets/img/bannerMOBILE.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}
#reviews {
    padding-top: 35px; /* Increase padding-top to push content down */
    padding: 2rem 0;
}


.reviews-intro {
    background-image: url('../assets/img/banner.webp'), url('../assets/img/banner.jpg');
    padding: 4rem 0;
    text-align: center;
    color: white; /* Improve contrast */
    margin-bottom: 30px; /* Increase the bottom margin as needed */
}

@media (max-width: 768px) {
    .reviews-intro {
        background-image: url('../assets/img/bannerMOBILE.webp'), url('../assets/img/bannerMOBILE.jpg');
        height: auto;
        background-size: cover;
        background-position: center;
    }
}



@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.exterior-cleaning-services {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #fff; /* White background */
    text-align: center; /* Center align content */
}

.exterior-cleaning-services__title {
    color: #22c1c3; /* More vibrant color */
    font-size: 45px; /* Slightly larger */
    font-weight: bold; /* Make it bold */
    margin-bottom: 25px;
}
.highlight {
    color: #2468c1; /* Dark blue color */
}



.exterior-cleaning-services__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Wrap items on smaller screens */
}

.exterior-cleaning-services__item {
    background-color: #0055CC; /* Blue background for items */
    color: white; /* White text color */
    padding: 20px;
    border-radius: 10px; /* Rounded corners for the items */
    width: 220px; /* Width of each item */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 20px; /* Space between items when they wrap */
    transition: transform 0.3s ease; /* Smooth transition for hover effects */
}

.exterior-cleaning-services__item:hover {
    transform: scale(1.05); /* Scale up item on hover */
}

.exterior-cleaning-services__icon {
    /* Emoji icons */
    font-size: 50px; /* Larger emoji icons */
    color: white; /* White color for the emojis */
    margin-bottom: 10px; /* Space between icon and text */
}

.exterior-cleaning-services__text {
    color: white; /* White text color for readability */
    font-weight: bold; /* Bold font weight for text */
    font-size: 18px; /* Increased font size for visibility */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .exterior-cleaning-services__list {
        flex-direction: column;
        align-items: center;
    }

    .exterior-cleaning-services__item {
        width: auto; /* Full width on smaller screens */
    }
}


/* Custom container styles */
.commitment-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: white; /* Specific background color */
    text-align: center; /* Center align the content */
}

/* Custom heading styles */
.commitment-heading {
    color: #003366;
    font-size: 40px;
    margin-bottom: 0;
    text-align: center; /* Center align the heading */
}

/* Custom subheading styles */
.commitment-subheading {
    color: #0077CC;
    margin-top: 5px;
    font-weight: normal;
    text-align: center; /* Center align the subheading */
}

/* Custom benefits container */
.commitment-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    margin-top: 20px;
}

/* Custom benefit item styles */
.commitment-benefit-item {
    background-color: #0077CC;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    width: 180px; /* Fixed width for each benefit item */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Smooth transition for transform */
}

/* Custom benefit item hover effect */
.commitment-benefit-item:hover {
    transform: scale(1.05); /* Slightly enlarge the items on hover */
}

/* Custom icon styles within benefit items */
.commitment-icon {
    font-size: 24px; /* Adjust icon size as needed */
    margin-bottom: 8px; /* Space between icon and text */
}

/* Custom paragraph styles */
.commitment-text {
    color: #ffffff;
    margin: 10px 0 0;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .commitment-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .commitment-benefit-item {
        margin-bottom: 20px;
        width: auto; /* Adjust width on smaller screens */
    }
}



.locations-listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, max-content)); /* Adjust this to allow content to dictate the size */
    gap: 1rem;
    justify-content: center; /* Centers grid items horizontally */
    margin-top: 0;
}
.divider {
    height: 20px; /* Adjust the height as needed */
    width: 100%; /* This will make the divider stretch across the width of its container */
    background: linear-gradient(to bottom, #ffffff 0%, #0000ff 100%);
    border-radius: 5px; /* This gives rounded corners to the divider */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* This adds a subtle shadow below the divider */
    margin-top: 5px; /* This adds space above the divider */
    margin-bottom: 5px; /* This adds space below the divider */
  }
  .hidden-image {
    display: none;
}
.hidden-info {
    display: none;
}

  .locations-listing h2 {
    background-color: #ffffff; /* White background */
    color: #203a43;
    margin: 0.5rem 0; /* Spacing between items */
    padding: 0.8rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
    border-radius: 5px; /* Rounded corners for a modern look */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
    font-size: 1.3em; /* Adjusted font size */
    text-align: center;
    width: 500px; /* Set a fixed width to make all boxes equal */
    display: inline-block; /* Allows the h2 to shrink to fit its content */
    margin-left: auto; /* Additional margin to center the h2 */
    margin-right: auto; /* Additional margin to center the h2 */
}

.locations-listing h2:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover for emphasis */
}

.locations-listing a {
    color: inherit; /* Ensures the links use the current text color */
    text-decoration: none; /* Removes underline from links */
}

.locations-listing a:hover {
    text-decoration: underline; /* Adds underline on hover for clear interactivity */
}
.locations-listing p {
    font-size: 0.8em; /* Adjust as needed */
}

/* Responsive tweaks for smaller screens */
@media (max-width: 600px) {
    .locations-listing {
        grid-template-columns: 1fr; /* Single column for small screens */
    }

    .locations-listing h2 {
        width: 100%; /* Full width on small screens, adjust as needed */
    }
}
.section-spacer {
    height: 50px; /* Or any other height you wish to add as space */
    background-color: transparent; /* Or any color if you want a colored space */
}
.locationsImg {
    max-width: 100%; /* Ensures the image is never larger than the container */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Images are inline by default; block display allows margin auto to center the image */
    margin: 0 auto; /* Centers the image horizontally within its container */
  }
  
  
  

