/* Base Styles */
body {
    font-family:  sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    text-align: center;
    flex-direction: column;
    line-height: 1;
    height:10px;
    padding: 5px 20px;

}


.nav-links a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4CAF50;
}

.contact-btn {
    background-color: #4CAF50; /* Primary green button color */
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 40px !important;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(to bottom, #E8F5E9 0%, #64883b 100%); /* Light green gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 400;
    color: #263137; /* Darker text color */
    margin-bottom: 20px;
}

.hero-content h1 strong {
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    color: #546E7A;
    margin-bottom: 30px;
    padding: 0 50px; /* Indent the paragraph to match the image */
}

/* Request a Quote Button */
.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #045c2a; 
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    /* box-shadow: 0 4px 6px rgba(0, 163, 70, 0.2); */
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #134025;
}
.fas-fa-envelope{
    text-decoration-color: rgb(14, 18, 18);
}

/* --- Variables and General Styling --- */
:root {
    --primary-green: #4CAF50; /* A standard green color for buttons/accents */
    --secondary-green: #38761d; /* Darker green for hover */
    --card-bg: #fff;
    --text-color: #333;
    --light-gray: #f8f8f8; /* Very subtle background for the section */
}

/* 1 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
}

.about-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

/* --- Main Card Styling --- */
.bio-card {
    display: flex; 
    max-width: 1000px;
   
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    text-align: left;
}

/* --- Left Column: Image Container --- */
.bio-image-container {
    flex-shrink: 0;
    width: 40%; /* Adjust as needed */
    max-width: 400px;
}

.bio-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container without distortion */
    display: block;
}

/* --- Right Column: Content --- */
.bio-content {
    flex-grow: 1;
    padding: 30px 40px;
    color: var(--text-color);
}

.content-heading {
    color: var(--primary-green);
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.bio-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Areas We Serve Box --- */
.areas-box {
    background-color: #f7f9fc; /* Very light background for the box */
    border-left: 3px solid var(--primary-green);
    padding: 15px;
    margin: 30px 0;
}

.areas-heading {
    font-size: 1em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
}

.areas-list {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* --- Action Buttons --- */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end; 
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    font-size: 1em;
}

.btn-outline {
    background-color: #fff;
    color: var(--text-color);
    border: 1px solid #ccc;
}

.btn-outline:hover {
    background-color: #f1f1f1;
    border-color: #aaa;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #fff;
    border: 1px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
}


/* --- Media Query for Mobile Responsiveness --- */
@media (max-width: 768px) {
    .bio-card {
        flex-direction: column; /* Stack image and content vertically */
        max-width: 450px; /* Constrain card width on small screens */
    }

    .bio-image-container {
        width: 100%;
        max-width: 100%;
        height: 300px; /* Fixed height for image when stacked */
    }
    
    .bio-image {
        /* Ensure the top corners remain rounded when stacked */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }

    .bio-content {
        padding: 25px;
    }

    .action-buttons {
        justify-content: center; /* Center buttons on mobile */
    }



}

/* 2 */


/* --- Google Fonts (for the clean look) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* --- Base Styling --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fcf8; /* Light background for context */
    margin: 0;
    padding: 20px;
}

/* --- Section Container --- */
.areas-served-section {
    padding: 40px 0;
    text-align: center;
}

.container {
    max-width: 900px; /* Limits the overall width */
    margin: 0 auto;
}

/* --- Typography --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* --- Main Content Box (The light green container) --- */
.locations-grid-container {
    background-color: #f4fff7;
    border: 1px solid #d0ffd0;
    border-radius: 10px;
    padding: 30px;
}

/* --- Location Grid Styling --- */
.locations-grid {
    display: grid;
    /* Create 5 columns for desktop view */
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    background-color: #ffffff; /* Inner white background */
    border-radius: 5px;
    padding: 20px 0; /* Add padding above and below the cards */
}

/* --- Location Card Styling --- */
.location-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.location-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.location-icon {
    /* To simulate the green map pin icon */
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #38c172; /* Green border for the pin */
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
}

.location-icon::before {
    /* The inner dot of the pin */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #38c172; /* Green fill */
    border-radius: 50%;
}

.location-name {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
    font-weight: 400;
}

/* --- Call to Action (CTA) Box Styling --- */
.cta-box {
    background-color: #ffffff; /* Inner white background */
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.cta-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* --- Contact Button Styling --- */
.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #38c172; /* Primary green color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.contact-button:hover {
    background-color: #2f9d5e; /* Darker green on hover */
}

.contact-button i {
    margin-right: 8px;
    /* Note: To make the icon work, you would need to link a library like Font Awesome */
}

/* --- Media Queries for Responsiveness (Optional but recommended) --- */
@media (max-width: 768px) {
    .locations-grid {
        /* Change to 3 columns on tablets */
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 480px) {
    .locations-grid {
        /* Change to 2 columns on mobile phones */
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 */
/* --- Base Styling and Font (Assume Roboto is used) --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fcf8; /* Light background for context */
    margin: 0;
    padding: 50px 20px;
}

/* --- Section Container (The outer light green box) --- */
.verification-section {
    display: flex;
    justify-content: center;
}

.verification-container {
    max-width: 850px;
    width: 100%;
    background-color: #f0fff4; /* Very light green background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* --- Main Header/Title Block --- */
.main-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    /* Optional: Add a subtle separator below the header */
    /* border-bottom: 1px solid #d0ffd0; */
}

.main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 10px 0 5px 0;
}

.main-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Main Shield Icon Styling (Complex shape simulation) --- */
.main-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.main-shield-icon {
    /* Basic shape for the shield */
    display: inline-block;
    width: 60px;
    height: 70px;
    background-color: #ffffff; 
    border: 3px solid #38c172; /* Green border */
    border-radius: 50% 50% 15px 15px / 30% 30% 25px 25px;
    position: relative;
}

.main-shield-icon::after {
    /* Checkmark inside the shield */
    content: '\2713'; /* Unicode for checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #38c172; /* Primary green color */
    font-weight: bold;
}

/* --- Checkmark Icon (next to the title) --- */
.checkmark-icon {
    display: inline-block;
    content: '\2713'; 
    color: #38c172; 
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 5px;
}

/* --- Features Grid (3 Columns) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* --- Feature Card Styling --- */
.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0fff4; /* Very subtle border */
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Small Checkmark Icon (inside each feature title) --- */
.small-checkmark-icon {
    content: '\2713'; 
    color: #ffffff;
    background-color: #38c172; /* Primary green color */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
}

/* --- CTA Button Styling --- */
.cta-area {
    margin-top: 10px;
}

.learn-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #38c172; /* Primary green color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-button:hover {
    background-color: #2f9d5e; /* Darker green on hover */
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .features-grid {
        /* Stack to two columns on tablets */
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .features-grid {
        /* Stack to a single column on mobile phones */
        grid-template-columns: 1fr;
    }
}

/* 4 */

/* --- Base Styling and Font (Assume a standard font is used) --- */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8; /* Very light gray background */
    margin: 0;
    padding: 50px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* --- Section Header --- */
.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* --- Image Gallery Layout --- */
.image-gallery-grid {
    display: flex; /* Use Flexbox for side-by-side layout */
    justify-content: center; /* Center the entire row of images */
    gap: 20px; /* Space between the images */
    padding: 20px 0;
}

/* --- Individual Gallery Item (Card) --- */
.gallery-item {
    flex: 1 1 300px; /* Allows items to grow, shrink, and sets a base width */
    max-width: 300px; /* Limit max width of each image container */
    overflow: hidden; /* Ensures image corners are properly clipped by border-radius */
    border-radius: 10px; /* Rounded corners for the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.gallery-item img {
    width: 100%; /* Image takes full width of its container */
    height: auto;
    display: block;
    /* Optional: Use object-fit and fixed height for uniform look, though not strictly required by the image */
    /* object-fit: cover;
    height: 300px; */
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .image-gallery-grid {
        /* Change to stacking the images vertically on smaller screens */
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        /* Give more space on mobile */
        max-width: 90%; 
        margin-bottom: 15px;
    }
}
/* 5 */
/* --- Base Styling and Font (Assume a standard bold font is used) --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* --- CTA Banner Section Styling (The primary green background) --- */
.cta-banner-section {
    background-color: #009933; /* A strong, vibrant green color */
    padding: 60px 20px;
    text-align: center;
    /* This color combination requires all text to be white for contrast */
    color: #ffffff; 
}

.cta-content-container {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Typography --- */
.cta-title {
    font-size: 2.5rem; /* Large, bold title */
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
    /* Optional: Limit width for readability */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons Layout --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

/* --- Base Button Styling --- */
.btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    /* Ensure buttons are displayed as block elements for padding */
    display: inline-block; 
}

/* --- White Button (Request a Quote) --- */
.btn-white {
    background-color: #ffffff;
    color: #009933; /* Green text on white background */
    border: 1px solid #ffffff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for lift */
}

.btn-white:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* --- Green Button (View Our Services) --- */
.btn-green {
    background-color: #009933; 
    color: #ffffff;
    border: 1px solid #ffffff; /* White border to make it pop */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.btn-green:hover {
    background-color: #007722; /* Slightly darker green on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
/* --- Media Queries for Responsiveness --- */
@media (max-width: 600px) {
    .cta-title {
        font-size: 2rem;
    }
    .cta-buttons {
        /* Stack buttons vertically on small screens */
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn {
        width: 80%; /* Make buttons take up more width */
        max-width: 300px;
    }
}

/* fotter */

/* --- Variables and General Footer Styling --- */
:root {
    --footer-bg: #1c232f; /* Dark background color */
    --footer-text-color: #abb3bf; /* Light grey text color */
    --footer-link-color: #fff; /* White link color */
    --heading-color: #fff; /* White heading color */
    --green-accent: #65b847; /* Bright green accent for logo/icons */
}

.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    padding: 40px 0 0; /* Padding top for the main content */
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; /* Center the content */
    margin: 0 auto;
    padding: 0 20px 40px; /* Padding bottom for main content area */
}

/* --- Column Styling --- */
.footer-column {
    padding-right: 20px;
}

.column-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 20px;
}

/* --- 1. Branding and Opening Times Column --- */
.branding-column {
    flex: 1; /* Allows this column to take up more space */
    min-width: 250px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    /* This filter is used to change the color of the logo image to match the site's green accent */
    filter: brightness(0) saturate(100%) invert(80%) sepia(35%) saturate(3019%) hue-rotate(59deg) brightness(85%) contrast(100%);
    margin-bottom: 25px;
}

.opening-times-list {
    list-style: none;
    padding: 0;
}

.opening-times-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* --- 2. Pages Column --- */
.pages-column {
    flex: 1;
}

.pages-list {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.pages-list a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.pages-list a:hover {
    color: var(--green-accent);
}

/* --- 3. Contact Information Column --- */
.contact-column {
    flex: 1.2; /* Allows this column to take up a bit more space if needed */
    max-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-icon {
    color: var(--green-accent);
    font-size: 1.2em;
    margin-right: 10px;
    padding-top: 3px; /* Align icon with text baseline */
}

.contact-label {
    display: block;
    color: var(--footer-text-color);
    font-size: 0.9em;
}

.contact-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--green-accent);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 30px;
}

.social-label {
    display: block;
    color: var(--footer-text-color);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #2e3846; /* Slightly lighter box background for contrast */
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.social-icon:hover {
    background-color: var(--green-accent);
    color: var(--footer-bg);
}

/* --- Copyright/Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid #2e3846; /* Subtle divider line */
    padding: 15px 20px;
    text-align: center;
    font-size: 0.8em;
    color: #7a828f;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        padding-right: 0;
        min-width: 100%;
        text-align: left;
    }

    .branding-column {
        order: 1; /* Keep branding at the top */
    }

    .pages-column {
        order: 3; /* Move pages to the bottom */
    }
    
    .contact-column {
        order: 2; /* Keep contact info above pages */
    }

    .opening-times-list li {
        max-width: 300px; /* Optional: limit the width of the times list */
    }

    .social-links {
        margin-top: 20px;
    }
}
