@import url(https://fonts.bunny.net/css?family=amita:700);

body {
    background: rgb(23,23,23);
    background: linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(3,35,1,1) 85%, #0db107 100%);
}
@media (max-width: 768px) {
    .quote-container {
        font-size: 1.5em;
        width: 80%;
    }
    .navigation a {
        font-size: 1em;
        padding: 8px 10px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    scroll-behavior: smooth;
}

section {
    width: 95%;
}


header {
    position: fixed; /* Keep it fixed at the top */
    top: 0px; 
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center; /* Center the nav bar */
    align-items: center;
    z-index: 100;
    background-color: transparent; /* Initial transparent background */
    transition: background-color 0.3s ease; /* Smooth transition for background */
}

.contact-section {
    background-color: #e2e2e2;
}
/* Add this CSS to define the scrolled header background */
header.scrolled {
    background-color: rgba(0, 128, 0, 0.7); /* Dark green with transparency */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Optional shadow for better visibility */
}
@import url('https://fonts.googleapis.com/css2?family=Auge&display=swap');

.navigation a {
    font-family: 'Auge';
}

/* Default styles for navigation links */
.navigation a {
    
    font-weight: "boldonse";
    font-size: 1.3em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF9D5; /* Light color */
    padding: 10px 15px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/* Initial hover effect is disabled */
.navigation a:hover {
    background: none;
    color: inherit;
}

/* Active state */
.navigation a.active {
    background: #0a641c; /* Dark green for active state */
    color: #FFF9D5; /* Light color */
    font-weight: bolder;
    border: 2px solid #68bd52; /* Highlight border for active state */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for focus */
}

/* Hover effect when navbar is scrolled */

/* Logo styles */
.logo_1 {
    position: absolute;
    top: 50px; /* Adjust the top position to move the logo upwards */
    left: 28px; /* Keep the left position as is */
    width: 120px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Optional margin */
}
.logo_2 {
    position: absolute;
    top: -25px; /* Adjust the top position to move the logo upwards */
    left: 28px; /* Keep the left position as is */
    width: 120px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Optional margin */
}
/* Quote container styling */
.quote-container {
    position: absolute;
    top: 80%; /* Move to the middle of the image */
    left: 5%; /* Position it on the left side */
    width: 40%; /* Adjust width to fit longer text */
    transform: translateY(-50%); /* Center vertically using transform */
    color: #FFF9D5;
    font-family:Amita;
    font-size: 2.8em;
    text-transform: uppercase; /* Make all text uppercase */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for readability */
    display: flex;
    gap: 10px;
}

/* Styling for the constant word "SHINE" */
.highlight {
    color: #F2AA4CFF; /* Light brown color for highlight */
}
/* Responsive styles for small screens */
@media (max-width: 768px) {
    header {
        padding: 15px; /* Reduce padding for small screens */
        justify-content: center; /* Center elements */
        flex-direction: column; /* Stack logo and navigation vertically */
        align-items: center; /* Center items horizontally */
        text-align: center;
    }

    .logo-container {
        display: flex;
        justify-content: left; /* Center the logo horizontally */
        width: 100%; /* Take full width */
    }

    .logo_2 {
        width: 100px; /* Adjust logo size for smaller screens */
        height: auto; /* Maintain aspect ratio */
        margin: 6px ; /* Center the logo */
        display: block;
    }

    .navigation {
        padding: 15px;
        display: flex;
        flex-direction: row; /* Keep links horizontal */
        justify-content: center; /* Center the links */
        align-items: center; /* Align the links */
        margin-top: 28px; /* Space between logo and navigation */
        width: 50%; /* Full width */
    }

    .navigation a {
        font-size: 1em;
        padding: 10px;
        margin: 5px;
        text-align: center;
        width: auto; /* Auto width to keep them inline */
        border-radius: 0;
    }

    .navigation a:hover {
        background-color: rgba(0, 128, 0, 0.9);
        transform: none;
    }

    .navigation a.active {
        background-color: rgba(0, 128, 0, 0.9);
        border: none;
        box-shadow: none;
    }

    .hamburger {
        display: none;
    }
}

/* Scrolled Header */
header.scrolled {
    background-color: rgba(0, 128, 0, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    height: 60px; /* Reduce height */
    transition: all 0.3s ease-in-out;
}


/* Add this CSS to define the scrolled header background */
header.scrolled {
    background-color: rgba(0, 128, 0, 0.7); /* Dark green with transparency */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Optional shadow for better visibility */
    padding: 8px 15px; /* Reduce padding to decrease height */
    height: 80px; /* Set a smaller height */
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
}

/* Animation for changing part fade-in */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.changing-part {
    animation: fadeInUp 1.5s ease-in-out;
    opacity: 0; /* Hidden by default */
}

/* Style for alternating visibility of the changing part */
.changing-part.visible {
    opacity: 1;
}


/* Set the slider to a relative position for the parallax effect */
.slider {
    width: 80%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Adjust the image to start lower on the screen */
.slide.first img {
    width: auto;
    height: 30%;
    position: absolute;
    top: 50%; /* Start the image from halfway down the screen */
    left: 50%;
    right:0; /* Keep the image on the right */
    transform: translateY(0%); /* Ensure it starts centered vertically */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* Ensure the slide starts fully visible */
.parallax .slide {
    opacity: 1;
    transition: opacity 0.5s ease-out; /* Smooth fade */
}

.parallax .slide.active {
    position: absolute;
    left: 0;
    right: 0;
}




/* Style for new sections */
section {
    padding: 100px 20px;
    text-align: center;
    color: #333;
}

/* Specific styles for each section */
.about-section {
    background-color:transparent;
}

.projects-section {
    background-color: #fff;
}



/* Style the slide and image */
.slider {
    width: 110%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide.first img {
    width: auto;
    height: 83%;
    position:absolute;
    top: 0;
    right: 0; /* Image starts on the right */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* Add space for scrolling */
.projects-container {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
}

.project-item {
    width: 45%;
    background-color: #427435;
    color: white;
    padding: 20px;
    border-radius: 10px;
} 


/* About section styling */
.about-section {
    background: black;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 50px 0; /* Added padding for spacing */
    justify-content: space-around;
    align-items: flex-start;
    gap: 90px; /* Add spacing between columns */
}
    
    .services, .photos-gallery {
        width: 45%; /* Make both sections take up equal width */
    }
    
    /* Additional styling for responsive layout */
    @media (max-width: 768px) {
        .about-section {
            flex-direction: column;
            align-items: center;
        }
        .services, .photos-gallery {
            width: 100%;
            text-align: center;
        }
    }
    
/* Intro heading styling */
.about-intro h1 {
    text-align: center;
    font-family: Amita;
    font-size: 2.5em;
    color: #F2AA4CFF;
    margin-bottom: 30px;
}
/* Styling for heading and logo in About section */
.heading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between heading and logo */
}

.heading-logo h1 {
    font-family: Amita;
    font-size: 3em;
    color: #F2AA4CFF;
    margin: 0; /* Remove default margin */
}

.logo_about {
    width: 200px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

/* Content layout */
.about-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Styling for services list */
.services ul {
    font-family: Amita;
    font-weight: bold;
    font-size: 1.8em;
    padding: 0; /* Remove default padding */
    color: #F2AA4CFF;;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); /* Shadow for readability */
    display: flex;
    flex-direction: column;
    gap: 7.5px; /* Space between list items */
}
/* Align services list to the left side */
#services-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    padding-left: 20px; /* Add space from the left edge */
}

#services-container h3 {
    font-family: Amita;
    font-size: 1.5em;
    color: white;
    margin-bottom: 10px;
}

#services-list {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

/* Service items style */
#services-list {
    padding-left: 0; /* Remove default padding from the list */
    list-style-type: none; /* Remove bullets from the list */
    margin: 10px; /* Remove default margin */
}

/* Individual service item styles */
#services-list li {
    font-family: Amita;
    font-size: 1.2em;
    color: black;
    padding: 10px 15px;
    margin: 10px 0px;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px #ffffff99;
    text-transform: uppercase;
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
    display: block;
}

/* Hover effect */
#services-list li:hover {
    color: #40e20e;
    -webkit-text-stroke: 0;
}

/* Active (clicked) state */
#services-list li.active {
    color: #ffffff;
    -webkit-text-stroke: 0;
}

/* Animation for letter-by-letter fill on hover */
#services-list li:hover {
    animation: fillText 0.5s forwards;
}

/* Define the fill animation */
@keyframes fillText {
    50% { color: black; }
    80% { color: #FFF9D5; }
}
.services h3{
    font-family: Amita;
    font-size: 1.2em;
    color: white;
    margin-bottom: 10px;
    margin-left: -260px;


}



/* Styling for photo boxes */
.photo-box {
    margin: 0;
    overflow: hidden;
    box-shadow: none; /* Removed shadow if not needed */
}

.photo-box img {
    width: 40%; /* Make image fill the container */
    height: auto;
    border-radius: 20px; /* Curve the edges of images */
    transition: transform 0.5s ease;
}

.photo-box img:hover {
    transform: scale(1.05);
}

.service-description {
    margin-top: 20px;
    color: #FFF9D5; /* Same color as the other text */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: left;
    font-size: 1.3em;

}

#service-title {
    font-family: Amita;

    font-size: 1.8em;
    font-weight: bold;
    color: #427435;
}

#service-text {
    font-size: 1.3em;
}



/* Footer Section Styling */
.footer-section {
    background: linear-gradient(0deg, rgba(13,177,7,1) 50%, rgba(4,61,2,1) 90%, rgba(0,0,0,1) 100%);
    padding: 50px 0 20px;
    color: #FFF9D5;
    font-family: 'Auge', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
}

/* Contact Information */
.footer-contact {
    flex: 2;
    min-width: 300px;
    margin-bottom: 30px;
}

.footer-contact h2, .footer-social h2 {
    font-family: 'Amita', cursive;
    font-size: 1.8em;
    color: #F2AA4CFF;
    margin-bottom: 20px;
    text-align: left;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address h3, .hours h3 {
    font-family: 'Amita', cursive;
    font-size: 1.3em;
    color: #FFF9D5;
    margin-bottom: 10px;
}

.address p, .contact-details p, .hours p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* Social Media Links */
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #F2AA4C;
    font-size: 20px;
    font-weight: bold;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #F2AA4C;
    color: #000;
    box-shadow: 0 4px 12px rgba(242, 170, 76, 0.3);
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.copyright p {
    font-size: 0.9em;
    color: #FFF9D5;
}

/* Contact section: mobile-first card layout with responsive map */
.contact-us-section {
    width: 100%;
    box-sizing: border-box;
    padding: 56px 16px;
    background: #030303;
}

.contact-us-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-us-wrap h2 {
    margin: 0 0 20px;
    color: #f2aa4c;
    font-family: Amita;
    font-size: 2rem;
    text-align: left;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-card,
.map-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    padding: 18px;
    color: #fff9d5;
}

.contact-card h3 {
    margin: 0 0 12px;
    color: #f2aa4c;
    font-family: Amita;
    font-size: 1.4rem;
}

.contact-card p,
.contact-card address {
    margin: 0 0 12px;
    line-height: 1.6;
    font-style: normal;
}

.contact-card a {
    color: #77e85a;
    text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    text-decoration: underline;
}

.map-frame-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 230px;
    background: #000;
}

.map-frame-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border: 0;
    display: block;
}

.directions-btn {
    margin-top: 14px;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #0a641c;
    color: #fff9d5;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.directions-btn:hover,
.directions-btn:focus-visible {
    background: #11812a;
}

@media (min-width: 992px) {
    .contact-us-section {
        padding: 72px 24px;
    }

    .contact-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: stretch;
    }

    .map-frame-wrap,
    .map-frame-wrap iframe {
        min-height: 300px;
    }
}

/* Footer Section Styling */
.footer-section {
    background: linear-gradient(0deg, rgba(13,177,7,1) 0%, rgba(4,61,2,1) 70%, rgba(0,0,0,1) 100%);
    padding: 50px 0 20px;
    color: #FFF9D5;
    font-family: 'Auge', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 150px;
    height: auto;
}

/* Contact Information */
.footer-contact {
    flex: 2;
    min-width: 300px;
    margin-bottom: 30px;
}

.footer-contact h2, .footer-social h2 {
    font-family: 'Amita', cursive;
    font-size: 1.8em;
    color: #F2AA4CFF;
    margin-bottom: 20px;
    text-align: left;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address h3, .hours h3 {
    font-family: 'Amita', cursive;
    font-size: 1.3em;
    color: #FFF9D5;
    margin-bottom: 10px;
}

.address p, .contact-details p, .hours p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* Social Media Links */
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #F2AA4C;
    font-size: 20px;
    font-weight: bold;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #F2AA4C;
    color: #000;
    box-shadow: 0 4px 12px rgba(242, 170, 76, 0.3);
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.copyright p {
    font-size: 0.9em;
    color: #FFF9D5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .footer-logo {
        order: 1;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .footer-social {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
        align-items: flex-end;
        text-align: right;
    }

    .footer-contact {
        order: 3;
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }

    .footer-contact .location-info {
        width: 100%;
        max-width: 520px;
        align-items: center;
    }

    .footer-contact .address,
    .footer-contact .contact-details {
        width: 100%;
    }

    .footer-contact .address h3,
    .footer-contact .address p,
    .footer-contact .contact-details p {
        text-align: center;
    }
    
    .footer-map {
        order: 4;
        width: 100%;
        margin-bottom: 0;
        align-items: center;
    }

    .footer-map .map-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .footer-map .map-frame-wrap,
    .footer-map .map-frame-wrap iframe {
        min-height: 220px;
    }
    
    .footer-contact h2, .footer-social h2 {
        text-align: center;
    }
    
    .social-icons {
        justify-content: flex-end;
    }
}

/* Small-screen responsive enhancement layer (desktop remains unchanged) */
img {
    max-width: 100%;
    height: auto;
}

.hamburger {
    display: none;
}

@media (max-width: 991px) {
    header {
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        box-sizing: border-box;
    }

    .logo_2 {
        position: static;
        width: 92px;
        margin-right: 0;
    }

    .hamburger {
        display: inline-flex;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 10px;
        background: rgba(10, 100, 28, 0.85);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 130;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: #FFF9D5;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navigation {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        margin-top: 0;
        width: auto;
        max-height: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(242, 170, 76, 0.35);
        border-radius: 12px;
        box-sizing: border-box;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
        z-index: 125;
    }

    .navigation.active {
        max-height: 320px;
        padding: 10px;
        opacity: 1;
        pointer-events: auto;
    }

    .navigation a {
        margin: 0;
        width: 100%;
        border-radius: 10px;
        text-align: left;
        padding: 12px 14px;
        font-size: 1rem;
        touch-action: manipulation;
    }

    .slider {
        width: 100%;
        height: 82vh;
        margin-top: 0;
    }

    .slide.first img {
        height: 54%;
        width: auto;
        right: -10%;
        top: 2%;
    }

    .quote-container {
        width: 90%;
        top: 70%;
        left: 5%;
        font-size: 1.9rem;
        line-height: 1.2;
        flex-wrap: wrap;
    }

    section {
        width: 100%;
        padding: 72px 16px;
        box-sizing: border-box;
    }

    .about-section {
        min-height: 100vh;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .services,
    .photos-gallery {
        width: 100%;
    }

    .services ul {
        font-size: 1.35rem;
    }

    #services-list {
        margin: 0;
    }

    #services-list li {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 10px;
    }

    .photo-box img {
        width: 100%;
        max-width: 520px;
    }

    .service-description {
        text-align: center;
        font-size: 1.02rem;
    }

    h1 {
        width: auto;
        max-width: 90%;
        font-size: 2.2rem;
    }

    .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .container img {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .footer-contact,
    .footer-social,
    .footer-logo {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    header {
        padding: 10px 12px;
    }

    .logo_2 {
        width: 82px;
    }

    .quote-container {
        top: 68%;
        font-size: 1.4rem;
    }

    .slide.first img {
        height: 46%;
        right: -18%;
        top: 4%;
    }

    .services ul {
        font-size: 1.15rem;
    }

    h1 {
        font-size: 1.8rem;
        border-bottom-width: 6px;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float img {
        width: 52px;
        height: 52px;
    }
}

/* Final override layer for service alignment + reliable mobile nav */
.photos-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.photo-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.service-description {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

#service-title {
    margin: 0 0 10px;
    text-align: center;
}

#service-description {
    margin: 0;
    text-align: left;
}

@media (max-width: 991px) {
    header {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .hamburger {
        display: inline-flex !important;
    }

    .navigation {
        display: flex !important;
        flex-direction: column !important;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
    }

    .navigation.active {
        max-height: 360px;
        opacity: 1;
        pointer-events: auto;
    }

    .photos-gallery {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .photo-box img {
        width: 100%;
        max-width: 460px;
    }

    .service-description {
        max-width: 100%;
        padding: 0 6px;
        box-sizing: border-box;
        text-align: center;
    }

    #service-description {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .photos-gallery {
        gap: 12px;
    }

    .photo-box img {
        max-width: 100%;
    }

    .service-description {
        padding: 0 2px;
    }

    #service-title {
        font-size: 1.35rem;
    }

    #service-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Restore previous homepage gradient and improve small-screen hero presence */
body {
    background: linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(3,35,1,1) 85%, #0db107 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    .slider {
        height: 92vh;
    }

    .slide.first img {
        height: 66%;
        right: -6%;
        top: 2%;
    }

    .quote-container {
        width: 92%;
        top: 66%;
        left: 4%;
        font-size: 2.2rem;
        line-height: 1.15;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 94vh;
    }

    .slide.first img {
        height: 64%;
        right: -10%;
        top: 3%;
    }

    .quote-container {
        top: 64%;
        left: 4%;
        width: 92%;
        font-size: 1.85rem;
        line-height: 1.15;
    }
}

/* Existing footer Contact Us layout: details + map */
.footer-map .map-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.footer-map .map-frame-wrap {
    min-height: 220px;
}

.footer-map .directions-btn {
    min-height: 48px;
}

@media (min-width: 992px) {
    .footer-map .map-frame-wrap,
    .footer-map .map-frame-wrap iframe {
        min-height: 270px;
    }
}

/* Final footer spacing + icon visibility overrides */
.footer-container {
    gap: 28px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    order: 1;
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: 20px;
    flex-basis: 100%;
    display: flex;
    align-items: flex-start;
}

.footer-social {
    order: 2;
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact {
    order: 3;
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-map {
    order: 4;
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-social h2 {
    margin-bottom: 24px;
}

.social-icons {
    gap: 18px;
    flex-wrap: wrap;
}

.location-icon,
.phone-icon,
.email-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #F2AA4C;
    font-size: 12px;
    vertical-align: middle;
    font-style: normal;
}

.location-icon::before {
    content: "\1F4CD";
}

.phone-icon::before {
    content: "\260E";
}

.email-icon::before {
    content: "\2709";
}

@media (max-width: 768px) {
    .footer-social {
        align-self: center;
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .footer-social h2 {
        margin-top: 6px;
        margin-bottom: 16px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact {
        align-self: center;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-contact h2 {
        text-align: center;
    }

    .footer-contact .location-info {
        align-items: center;
    }

    .footer-contact .address,
    .footer-contact .contact-details {
        text-align: center;
    }

    .footer-contact .address h3,
    .footer-contact .address p,
    .footer-contact .contact-details p {
        text-align: center;
    }
}
