    
	    /* Mobile-first styling */
    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    .fusion-gallery .social-icons, 
.fusion-gallery .social-links {
    display: none !important;
}
.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item {
    flex: 1 1 calc(33.33% - 10px);
    box-sizing: border-box;
}
/* Lightbox Modal Styles */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.8); */
    justify-content: center;
    align-items: center;
}

#lightbox-modal img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}


.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: red;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}


    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #fff;
        border-bottom: 1px solid #ccc;
    }

    bold, strong {
        font-weight: bolder;
        font-size: 28px;
    }
    /* Logo styling */
    .logo img {
        max-width: 100px;
        height: auto;
    }

    /* Phone number styling */
.phone-number {
    font-size: 10px;
    color: #333;
    font-weight: bold;
}

.phone-number a {
    color: #333;
    text-decoration: none;
}

/* Optional: Add hover effect for phone number */
.phone-number a:hover {
    color: #007BFF;
}
    nav {
    display: none; /* Hidden by default for mobile */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff; /* Default background color */
    border-top: 1px solid #ccc;
    z-index: 1001; /* Make sure menu is above other elements */
    padding: 10px 0;
    justify-content: center;
    
}

/* Overlay background that covers the rest of the page */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 1000; /* Ensure overlay is below the menu */
}

/* Optional: Add transition for smooth background color change */
nav {
    transition: background-color 0.3s ease;
}

    nav a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        padding: 10px 20px;
        display: block;
    }

    /* Hamburger menu styling */
    .hamburger {
        cursor: pointer;
        font-size: 24px;
    }

    /* Icons */
    .icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .icons img {
        width: 20px;
        height: auto;
    }

    @media screen and (max-width: 640px) {
        .logo img {
        max-width: 100px;
        height: auto;
        margin-left: -8rem;
    }
    .phone-number{
            display: none;
        }
        .lightbox-close {
            position: absolute;
            top: 236px;
            right: 20px;
            color: red;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            user-select: none;
        }
    }
    
    /* Desktop view */
    @media (min-width: 768px) {
        nav {
            display: flex;
            flex-direction: row;
            position: static;
            gap: 20px;
        }


        .hamburger {
            display: none; /* Hide hamburger menu on desktop */
        }
    }
