* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }




.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 30px;
    }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.3s ease;
        }

            nav ul li a:hover {
                color: #007bff;
            }

/* Banner Styles */
.banner {
    background-image: url('banner-image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 5px;
}

.banner h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.5em;
}

/* Services Choice Styles */
.services-choice {
    padding: 80px 0;
    text-align: center;
}

    .services-choice h2 {
        margin-bottom: 40px;
    }

.choice-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0056b3;
    }

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Media Queries */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

        nav ul li {
            margin: 0 10px;
        }

    .banner h1 {
        font-size: 2em;
    }

    .banner p {
        font-size: 1.2em;
    }

    .choice-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        margin-bottom: 10px;
    }
}




#mainNavigation a {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: Montserrat;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1em;
    color: rgba(49,37,37,.9);
}


.contact-us-button {
    background-color: transparent;
    border: 2px solid #7a0b0b;
    border-radius: 300px;
    color: #fff;
    font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 1em;
    padding: 1em 1.5em !important;
    display: block;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

    .contact-us-button:hover {
        background-color: transparent;
        color: #7a0b0b;
        -moz-osx-font-smoothing: auto;
        -webkit-font-smoothing: subpixel-antialiased;
    }


#headerNav {
    display: flex;
    align-items: center;
}

#mainNavigation {
    display: flex;
    align-items: center;
}

    #mainNavigation > div {
        display: flex;
        align-items: center;
    }

    #mainNavigation a,
    #mainNavigation .folder-toggle {
        display: inline-flex;
        align-items: center;
        height: 100%;
        padding: 0 15px;
        text-decoration: none;
        font-family: Montserrat, "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        line-height: 1em;
        color: rgba(49, 37, 37, 0.9);
    }

.contact-us-button {
    display: inline-flex;
    align-items: center;
    height: 100%;
    margin-left: 15px;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #7a0b0b;
    color: #fff;
    font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}


.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner-image {
    width: 100%;
    height: 100%;
}

    #banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

    .banner-content h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    .banner-content h2 {
        font-size: 1.5em;
    }



.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner-image {
    width: 100%;
    height: 100%;
}

    #banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.services-choice {
    padding: 80px 0;
    text-align: center;
}

    .services-choice h2 {
        margin-bottom: 40px;
        font-size: 2.5em;
        color: #333;
    }

.choice-options {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.choice-option {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .choice-option:hover {
        transform: translateY(-10px);
    }

    .choice-option img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .choice-option h3 {
        font-size: 1.8em;
        margin-bottom: 15px;
        color: #007bff;
    }

    .choice-option p {
        font-size: 1em;
        color: #666;
        margin-bottom: 20px;
    }

    .choice-option .btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .choice-option .btn:hover {
            background-color: #0056b3;
        }

@media (max-width: 768px) {
    .choice-options {
        flex-direction: column;
    }

    .choice-option {
        margin-bottom: 30px;
    }
}
