/* General body settings */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Navbar settings */


.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

/* Ensure the logo container is clickable and on top */
.logo {
    cursor: pointer;
    position: relative;
    z-index: 10; /* Ensure it's not being overlapped */
}

.navbar {
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 3px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 40px;
    height: auto;
    cursor: pointer; /* Ensure the cursor changes on hover */
}






/* Hamburger menu icon (hidden on desktop) */
.menu-icon {
    font-size: 30px;
    color: white;
    margin-right: 10px;
    cursor: pointer;
    display: none;
}

/* Desktop Menu */
.navbar-desktop li {
    display: inline-block;
    margin: 0 20px;
}

.navbar-desktop li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
}

.navbar-desktop li a:hover {
    border-bottom: 2px solid #ffcc00;
    color: #ffcc00;
}









/* Mobile Menu */
.navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Add transparency */
    width: 100%;
    list-style: none;
    z-index: 999; /* Ensure menu stays on top */
}

.navbar-menu li {
    border-bottom: 1px solid white;
    text-align: center;
}

.navbar-menu li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}

.navbar-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* When the menu opens */
.navbar-menu.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background */
    width: 100%;
    height: auto; /* Allow the menu to only take up as much space as needed */
    z-index: 999; /* Ensure the menu stays above other elements */
    padding-bottom: 20px; /* Add some space at the bottom */
}

/* Hide hamburger menu on desktop, show on mobile */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navbar-desktop {
        display: none;
    }
}






/* Reset body and html margins/padding */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure the body takes up the full height */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Reset padding/margin on header */
header {
    margin: 0;
    padding: 0;
}

/* Reset all default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure body and html take up full height */
html, body {
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header adjustments */
header {
    margin: 0;
    padding: 0;
}

/* Body and HTML height adjustments */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure full height */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}





/* Body and HTML */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure full height for body */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Reset body and html */
html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Full height */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Banner section */
.banner-section {
    position: relative;
    width: 100%;
    height: auto; /* Let the image control the height */
    margin-top: 20px; /* Adjust this value to control how far down you want the banner to move */
}

.banner-image {
    width: 100%;
    height: auto; /* Ensure the image scales and retains aspect ratio */
    display: block;
    margin: 0;
    padding: 0;
}


/* Quote button */
.quote-btn {
    position: absolute;
    bottom: 15%; /* Position button slightly above the bottom */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc00;
    color: black;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #e6b800;
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
    .banner-image {
        width: 100%; /* Image stays responsive */
        height: auto; /* Keep aspect ratio */
    }

    .quote-btn {
        font-size: 1em; /* Adjust button size for mobile */
        padding: 10px 20px;
        bottom: 1%; /* Adjust button position for mobile */
    }
}












/* About Us */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.about-container {
    text-align: center;
    max-width: 800px;
}

.about-container img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 10px;
}



/* Services */
.services {
    text-align: center;
    padding: 50px 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.service-box {
    width: 30%;
    cursor: pointer;
}

.service-box img {
    width: 100%;
    border-radius: 10px;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* Hidden service details (displayed below each image) */
.service-details {
    display: none;
    margin-top: 10px;
}

.service-details.active {
    display: block;
}











/* Our Services Section */
.services-section {
    padding: 30px 20px;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.service-item {
    margin-bottom: 20px;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 1em;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .services-container {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .quote-box {
        padding: 20px;
    }
}





/* Quote section */
.quote-section {
    padding: 50px 20px;
    text-align: center;
    background-color: white;
}

.quote-box {
    background-color: #e0f7fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.quote-form textarea {
    height: 100px;
    resize: vertical;
}

/* Removed reCAPTCHA v2 container */

.quote-submit-btn {
    background-color: #ffcc00;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
}

.quote-submit-btn:hover {
    background-color: #e6b800;
}









/* Gallery section */
.gallery-section {
    padding: 50px 20px;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 images per row for desktop */
    gap: 10px;
}

.gallery-container img {
    width: 100%;
    height: 150px; /* Adjusted smaller height for images */
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Modal styles */
.modal {
    display: none; /* Ensure modal is hidden initially */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;  /* Align vertically center */
    justify-content: center; /* Align horizontally center */
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row for mobile */
    }

    .gallery-container img {
        height: 100px; /* Smaller height for mobile */
    }
}




/* Business Hours section */
.business-hours-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    background-color: #e0f7fa; /* Softer light grey for background */
}

.business-hours-box {
    text-align: center;
    background-color: white; /* White background for contrast */
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); /* Soft shadow */
    max-width: 500px;
    border: 1px solid #ddd; /* Subtle border for detail */
}

.business-hours-box h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.hours-info p, .contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #555;
}

.hours-info strong, .contact-info strong {
    font-weight: bold;
    color: #333;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.business-hours-box p {
    line-height: 1.6;
}

/* Add a nice hover effect */
.business-hours-box:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}




/* Footer section */
.footer-section {
    background-color: #e0f7fa; /* Matching background color with the main page */
    color: #333; /* Text color matching the main theme */
    padding: 5px 20px; /* Further reduced padding */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-line {
    border: 1px solid black; /* Black horizontal line */
    width: 95%; /* Longer line */
    margin: 20px auto 10px; /* Moved line slightly down */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-copyright {
    text-align: center;
    flex: 1;
}

.footer-logo-img {
    max-width: 25px; /* Smaller logo */
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 8px; /* Reduced gap to save space */
    flex: 1;
    justify-content: center;
}

.footer-links a {
    color: #007bff; /* Blue links to match theme */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
    padding-right: 0px; /* Moved 10 pixels more left (from 5px to 0px) */
}

.footer-social a {
    color: #333;
    font-size: 1.4em; /* Slightly smaller icon size */
    text-decoration: none;
}

.footer-social a:hover {
    color: #007bff; /* Hover effect matching theme */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        margin-top: 10px;
    }
}

/* Style the clickable text link */
.clickable-text {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Matches text color to the surrounding elements */
    cursor: pointer; /* Ensures it shows as clickable */
    font-weight: bold; /* Makes the text bold */
}

/* Optional: Hover effect if desired */
.clickable-text:hover {
    color: #333; /* Adjust color on hover if needed */
}

