html {
    scroll-behavior: smooth;
}

body {
    background: #ffff;
    font-family: 'Montserrat';
    max-width: 100%;
    margin: 0;
}

br {
    user-select: none;
}

/* Scrollbar Width */
::-webkit-scrollbar {
    width: 15px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background-color: #797979;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background-color: #c0c08b;
}

/* Scrollbar Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #a3a381;
}

.nav-bar-horizontal {
    width: 100%;
    position: fixed;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    align-items: center;
    z-index: 10;
    justify-content: space-between;
    height: 100px;
    /* Set initial height */
    transition: all 0.3s ease;
    /* Smooth transition for height change */
}

/* Add a new class for the shrunk state */
.nav-bar-horizontal.shrink {
    height: 60px;
    /* Reduced height */
    background-color: rgba(0, 0, 0, 0.75);
}

.nav-bar-horizontal.shrink .logo {
    width: 200px;
    /* Smaller logo when shrunk */
    padding: 15px;
    transition: all 0.3s ease;
    /* Smooth transition for logo */
}

.nav-bar-horizontal a,
.nav-bar-horizontal .hamburger {
    color: #f2f2f2;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    /* Changed to 'all' for smoother transitions */
    margin: 0px 3px 0px 3px;
    border-radius: 10px;
    cursor: pointer;
}

/* Reduce padding when shrunk */
.nav-bar-horizontal.shrink a,
.nav-bar-horizontal.shrink .hamburger {
    padding: 8px 12px;
    font-size: 1.3rem;
}

.nav-bar-horizontal .hamburger {
    font-size: 2.5rem;
    display: none;
}

.nav-bar-horizontal.shrink .hamburger {
    font-size: 2rem;
    /* Smaller hamburger icon */
}

.nav-bar-horizontal a:hover,
.nav-bar-horizontal .hamburger:hover {
    background-color: #3b3a52;
}

.nav-bar-horizontal a.active,
.nav-bar-vertical a.active {
    background-color: #A3A380;
    font-weight: bold;
}

.logo {
    width: 400px;
    padding: 15px;
    transition: all 0.3s ease;
    /* Smooth transition for logo */
}

@media only screen and (max-width: 1550px) {
    .nav-bar-horizontal .hamburger {
        position: absolute;
        display: block;
        right: 10px;
    }

    .nav-bar-horizontal a {
        display: none;
    }

    /* Adjust for mobile when shrunk */
    .nav-bar-horizontal.shrink {
        height: 45px;
    }

    .nav-bar-horizontal.shrink .hamburger {
        font-size: 1.8rem;
    }
}

.nav-bar-vertical {
    height: 100%;
    width: 0%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #1F1E28;
    overflow-x: hidden;
    transition: 0.5s ease;
    padding-top: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-bar-vertical a {
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #f2f2f2;
    display: block;
    transition: 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.nav-bar-vertical a:hover {
    background-color: #3b3a52;
}

.nav-bar-vertical .close-btn {
    position: absolute;
    top: 100px;
    right: 0;
    font-size: 3rem;
    margin: 10px;
    padding: 14px;
}

.light.grey {
    background: #5d5d5d;
}

.grey {
    background: #474747;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.grey .top.logo {
    width: 150px;
    position: absolute;
    bottom: 180px;
}

.grey .bottom.logo {
    width: 200px;
    opacity: 0.25;
}

.slideshow-container .lbp-logo {
    width: 150px;
    position: absolute;
    right: 0;
    top: 100px;
    margin: 10px;
}

h1 {
    color: #ffff;
    font-size: 2.4rem;
    margin: 5px 0 5px 0;
}

h2 {
    color: #ffff;
    font-size: 1.6rem;
    margin: 5px 0 5px 0;
}

p {
    font-size: 1rem;
    line-height: 1.25;
}

.button {
    padding: 10px;
    font-weight: bold;
    color: #A3A380;
    border: 2px solid #A3A380;
    border-radius: 10px;
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}

.button.light-grey-bg {
    background-color: #5d5d5d;
}

.button.grey-bg {
    background-color: #474747;
}

.button.light-bg {
    background-color: #ffff;
}

.button:hover {
    color: #ffff;
    background-color: #A3A380;
}

.div-center {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-1 {
    background-color: #474747;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.footer-2 {
    background-color: #3b3b3b;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    color: #ffff;
    padding: 20px;
}

.footer-2 .social-links svg {
    fill: white;
    margin: 0 8px 0 8px;
    transition: transform 150ms ease;
    width: 30px;
}

.footer-2 .social-links svg:hover {
    transform: scale(1.35);
}

.footer-logo {
    width: 300px;
}

.footer-lbp {
    width: 200px;
}

.contact-phone,
.contact-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0px 50px 0px 50px;
    transition: transform 150ms ease;
}

.contact-phone:hover,
.contact-email:hover {
    transform: scale(1.1);
}

.contact-phone svg,
.contact-email svg {
    fill: white;
    width: 30px;
    margin: 0 5px 0 5px;
}

.contact-phone a,
.contact-email a {
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.services-summary-2 {
    display: none;
}

.quote-header {
    position: absolute;
    max-width: 75%;
    font-style: italic;
}

@media only screen and (max-width: 1024px) {
    .services-summary-1 {
        display: none;
    }

    .services-summary-2 {
        display: block;
    }

    .grey .top.logo {
        bottom: 275px;
    }
}

@media only screen and (max-width: 900px) {
    .footer-1 {
        flex-direction: column;
    }

    .contact-container {
        width: 100%;
    }

    #what-our-clients-say {
        flex-direction: column;
    }

    #what-our-clients-say div {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .quote-header {
        max-width: 90%;
    }
}

@media only screen and (max-width: 500px) {
    .logo {
        width: 250px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .grey .top.logo {
        bottom: 260px;
    }
}

@media only screen and (max-width: 410px) {
    .logo {
        width: 225px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1em;
    }

    .grey .top.logo {
        bottom: 210px;
    }
}