    /* Hamburger menu styles for mobile nav */
    .nav-toggle {
        display: none;
        position: absolute;
        top: 16px;
        right: 24px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        z-index: 2001;
        cursor: pointer;
    }
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    @media (max-width: 800px) {
        nav {
            position: relative;
            min-height: 56px;
        }
        .nav-toggle {
            display: block;
        }
        .nav-links {
            display: none;
            flex-direction: column;
            background: linear-gradient(90deg, #002147 0%, #005fa3 100%);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 2px 8px rgba(0,33,71,0.08);
            z-index: 2000;
            padding: 0;
        }
        .nav-links.open {
            display: flex;
        }
        .nav-links a {
            padding: 16px 0;
            margin: 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            width: 100%;
            text-align: center;
        }
    }
    /* Diamond bullets for Why Choose Us */
    .intro-text ul {
        list-style: none;
        padding-left: 0;
    }
    .intro-text ul li {
        position: relative;
        padding-left: 1.5em;
    }
    .intro-text ul li::before {
        content: "◆";
        position: absolute;
        left: 0;
        top: 0.1em;
        font-size: 0.8em;
        color: #0070f3;
    }
    /* Contact form modal text color */
    #contact-form-modal label,
    #contact-form-modal input,
    #contact-form-modal textarea {
        color: #000 !important;
    }
    @media (max-width: 800px) {
        #contact-form-modal > div {
            margin-left: 20px !important;
            margin-right: 20px !important;
            width: calc(100vw - 40px) !important;
            max-width: none !important;
        }
    }
    .areas-cover-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-title-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 32px;
        padding-right: 32px;
    }

/* Prevent unwanted horizontal scrolling */
html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
body {
    background: #fff;
    height:100%;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 13px;
}

@media (max-width: 800px) {
    #services .section {
        margin-right: 0;
        margin-left: 0;
    }
}
@media (max-width: 800px) {
    #services.sections {
        display: flex;
        flex-direction: column;
    }
    #services .section {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        margin: 0;
        padding-left:10px;
    }
}


/* Footer styling to match services section */
.info-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: inset 0 15px 200px rgba(0, 61, 122, 1), inset 0 -15px 30px rgba(0, 61, 122, 1);
    color: #fff;
    padding: 48px 0 32px 0;
}
.footer-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
}
.footer-area, .footer-contact {
    flex: 1;
}
.footer-area {
    text-align: left;
    padding-bottom:20px;
}
.footer-contact {
    text-align: right;
}
.footer-area h4, .footer-contact h4 {
    margin-bottom: 16px;
    color: #fff;
}
.footer-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
}
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-area ul li, .footer-contact ul li {
    margin-bottom: 8px;
    color: #fff;
}
.footer-contact a {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 800px) {
    .footer-sections {
        margin-left:15px;
        flex-direction: column;
        gap: 24px;
        padding-bottom:15px;
    }
    .footer-area, .footer-contact {
        text-align: left;
    }
}
/* Introduction section layout */
.introduction {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.intro-image {
    margin-top:15px;
    width: 220px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.intro-text {
    flex: 1;
}
@media (max-width: 800px) {
    .introduction {
        flex-direction: column;
        align-items: flex-start;
        margin-left:10px;
    }
    .intro-image {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .intro-text {
        width: 100%;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}


nav {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background: linear-gradient(90deg, #002147 0%, #005fa3 100%);
    box-shadow: inset 0 15px 200px rgba(0, 61, 122, 1), inset 0 -15px 30px rgba(0, 61, 122, 1);
}
nav a {
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
    padding: 4px 0;
}
nav a:hover, nav a:focus {
    color: #ffe082;
}

.logo-section {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background-color: #000;
    margin-bottom: 20px;
}

.PictureSize {
    max-width: 500px;
    }
    .gallery-title + .custom-underline {
        width: 300px;
        margin-left: 0;
        margin-bottom: 24px;
    }
  
.intro-image {
    width: 600px;
    height: auto;
    margin-right: 20px;
}

.introduction h1, .introduction h2 {
    color: #000;
}

.introduction p {
    color: #000;
}

.introduction li {
    color: #000 !important;
}

.introduction ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    column-gap: 2px;
    row-gap: 10px;
    width: 400px;
}

.services-wrapper {
    width: 100%;
    background-color: #001f4d;
    padding: 40px 0;
    margin: 40px 0 0 0;
    border-top: 8px solid #003d7a;
    border-bottom: 8px solid #003d7a;
    box-shadow: inset 0 15px 200px rgba(0, 61, 122, 1), inset 0 -15px 30px rgba(0, 61, 122, 1);
}

.services-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.section {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    color: #333;
    text-align: center;
}

.service-image-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background-color: #001f4d;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    box-sizing: border-box;
    box-shadow: inset 0 15px 30px rgba(0, 61, 122, 1), inset 0 -15px 30px rgba(0, 61, 122, 1);
}
.service-image {
    width: 120px;
    height: 120px;
    object-fit:cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    position: relative;
    z-index: 1;
}

.section h3 {
    margin-top: 0;
    color: #333;
    text-decoration: underline;
}

.section p {
    color: #666;
}

.info-section {
    margin-top: 0;
    background-color: #000;
    color: #fff;
    padding: 20px 0 0 0;
}

.areas-cover-section, .areas-cover-section * {
    color: #000 !important;
}

.custom-underline {
    width: 100%;
    height: 6px;
    margin: 0 0 24px 0;
    background: linear-gradient(to right, #0070f3 0 50px, #e0e0e0 50px 100%);
    border-radius: 3px;
}

.areas-cover-title + .custom-underline {
    max-width: 250px;
}

.introduction .custom-underline {
    max-width: 250px;
}

.gallery-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    width: 100%;
    padding: 0 20px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 15px;
    justify-items: center;
}
.gallery-image {
    width: 100%;
    max-width: 325px;
    height: 275px;
    max-height: 275px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.2s;
}
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}
.gallery-modal.open {
    display: flex;
}
.gallery-modal-content {
    max-width: 90vw;
    max-height: 80vh;
    margin: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.gallery-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-title {
    color: #000;
}


@media (max-width: 900px) {
    .gallery-wrapper {
        max-width: 100%;
        padding: 0 8px;
    }
    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    .gallery-image {
        max-width: 100%;
        height: 180px;
    }
}
