body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #dcdcdc; /* Light gray background */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #007BFF;
}

.gallery-section {
    padding: 40px;
    display: flex;
    justify-content: center; /* Center the gallery section */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; /* Increased gap for spacing between images */
    padding: 20px; /* Padding around the entire grid */
    max-width: 1200px; /* Limiting the maximum width of the grid */
    width: 100%;
    box-sizing: border-box; /* Include padding in the width calculation */
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.lightbox-arrow {
    background-color: transparent;
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 36px;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    position: fixed; /* Fix the footer to the bottom of the screen */
    bottom: 0;
    width: 100%; /* Ensure it spans the entire width */
    z-index: 10; /* Ensure it's on top of content */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-left p,
.footer-right p {
    margin: 5px 0;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
    margin-right: 30px; /* Slightly moves the phone numbers to the left */
}

.footer-logo {
    max-width: 100px;
    height: auto;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul li {
    margin: 5px 0;
}

.footer-right a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

.footer-right a:hover {
    text-decoration: underline;
}
