.background {
    position: absolute;
    width: 100%;
    height: 550px;
    left: 0;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing {
    z-index: 5;
    position: relative;
    margin-top: 150px;
}

.landing h1 {
    color: #eee;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700
}
        
.landing .landing-content {
    width: 50%;
}

    .landing .landing-content .cta {
        padding: 5px 20px;
        background-color: #219ebc;
        font-weight: 600;
        color: #eee;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color .3s ease-in-out;
        margin-top: 20px;
        display: inline-block;
    }

.map {
    background-color: #ddd;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.5);
}

    .map img {
        width: 100%;
    }

    .map h2 {
        font-weight: bold;
        color: #1d1d1d;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 3px solid #1d1d1d;
    }

.welcome-content {
    margin-top: 200px;
}

    .welcome-content h2 {
        font-weight: bold;
        color: #1d1d1d;
        margin-bottom: 2rem;
    }

    .welcome-content .cta {
        padding: 5px 20px;
        background-color: #219ebc;
        font-weight: 600;
        color: #eee;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color .3s ease-in-out;
        display: inline-block;
    }

.service-grid {
    width: 100%;
    height: 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item:nth-child(1) {
    grid-area: 1 / 3 / 5 / 5;
}

.service-item:nth-child(2) {
    grid-area: 1 / 1 / 3 / 3;
}

.service-item:nth-child(3) {
    grid-area: 3 / 1 / 5 / 3;
}

.carousel-inner {
    border-radius: 15px;
}

.services-area h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1d1d1d;
}

.services-area ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .services-area ul li {
        background-color: #ddd;
        color: #1d1d1d;
        padding: 10px 20px;
        border-radius: 5px;
    }

.banner {
    background-color: #ddd;
    margin-top: 5rem;
    width: 100%;
    display: flex;
    padding: 2rem 0;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.3);
}

.banner .socials{
    width: 40%;
    color: #1d1d1d;
}

.banner h3 {
    font-weight: bold;
}

.banner a:hover {
    text-decoration: underline;
}

.banner .socials a {
    color: #1d1d1d;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
}

.banner .contact-us {
    color: #1d1d1d;
    width: 40%;
}

.banner .contact-us .buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.banner .contact-us a {
    color: #1d1d1d;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner .banner-wrapper {
    display: flex;
    justify-content: space-between;
}

.testimonials h3 {
    text-align: center;
    font-weight: bold;
    color: #1d1d1d;
}

#carouselTestimonials{
    margin: 2rem 0;
}

.testimonial-item {
    background-color: #ddd;
    width: 80%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #1d1d1d;
    border-radius: 15px;
}

.testimonials .carousel-control-prev {
    background-color: #000;
    padding: 5px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

.testimonials .carousel-control-next {
    background-color: #000;
    padding: 5px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

@media (max-width: 1000px){
    .landing .landing-content {
        width: 100%;
    }

    .welcome-content {
        margin-top: 250px;
    }
}

@media (max-width: 600px) {
    .landing-content h1 {
        font-size: 2rem;
    }
    .welcome-content {
        margin-top: 300px;
    }
    .banner .banner-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .banner .banner-wrapper .socials,.contact-us {
        width: 100% !important;
    }
}