body {
    background-color: rgba(20, 20, 20);
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
}

.top-container {
    display: flex;
    background-color: #000000;
    color: #ffffff;

}

.top {
    flex-basis: 50%;
    margin-top: 40px;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    flex-basis: 100%;
    padding: 40px;
    height: 300px;
    text-align: center;
    color: white;
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.navbar a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-tab {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgba(30, 30, 30);
    border-style: solid;
    border-width: 1px;
    border-color: #bebebe76;
    border-radius: 20%;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    z-index: 2;
}

.contact-tab:hover {
    transform: scale(1.1);
}

.contact-options {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 1;
}

.contact-options a {
    display: inline-block;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.contact-options a:hover {
    transform: scale(1.1);
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 40px;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-box {
    flex-basis: calc(30% - 20px);
    margin: 10px;
    box-sizing: border-box;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    cursor: pointer;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/*=============== FOOTER ===============*/
.footer_container {
    display: block;
    margin: 1.5rem 0 0.25rem;
    text-align: center;
    font-size: var(--smaller-font-size);
    color: black;
    background-image: url("../img/bg.jpg");
  }

@media (max-width: 768px) {
    .service-box {
        flex-basis: calc(50% - 20px);
    }

    .top-container {
        flex-wrap: wrap;
    }

    .top,
    .container,
    .service-box {
        flex-basis: 100%;
    }

    .container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .service-box {
        flex-basis: calc(100% - 20px);
    }

    .top-container {
        flex-wrap: wrap;
        margin-top: -60px;
    }

    .top,
    .container,
    .service-box {
        flex-basis: 100%;
    }

    .container {
        height: 200px;
    }
    h1 {
        font-size: 36px;
    }
    h3 {
        font-size: 18px;
    }
    
    h1,h2,h3 {
        text-align: center;
    }
}