body {
    margin: 0;
    background-color: white;
}

.navbar {
    display: flex;
    align-items: center;
    background: #333;
    padding-right: 5%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.logo {
    padding: 20px;
    border-radius: 70px;
    margin-left: 5%;
}

.logo-img{
    border-radius: 70px;
}

.navbar-links ul{
    padding: 0;
    display: flex ;
}

.navbar-links li{
   list-style: none;
   letter-spacing: 3px;
 }

 .navbar-links li a{
    text-decoration: none;
    padding: 1rem;
 }
 
 .navbar ul li a{
    font-size: 18px;
    text-transform: none;
    display: block;
    padding: 30px;
 }

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar a:hover {
    color: black;
}

.CALL{
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: 3%;
}

.phone-img{
    border-radius: 70px;
}

.CALL h3{
    margin-left: 20px;
}

.background-container {
    width: 100%;
    height: 100vh;
    background-image: url('background1.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay-text {
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    font-size: 300%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white; 
    background: rgba(171, 170, 170, 0.5);
    padding-right: 3%;
    padding-left: 3%;
    position: relative;
}

.overlay-text h2, .overlay-text p, .overlay-text h3 {
    opacity: 0;
    transform: translateX(+100%);
}

.overlay-text h2 {
    animation: slideIn 1.5s forwards, fadeIn 0.5s forwards;
}

.overlay-text p {
    animation: slideIn 1.5s forwards 0.25s, fadeIn 0.5s forwards 0.25s;
}

.overlay-text h3 {
    animation: slideIn 1.5s forwards 0.5s, fadeIn 0.5s forwards 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateX(+100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-container {
    padding-top: 5%;
    padding-bottom: 5%;
    overflow: hidden;
    background-color: white;
    display: flex;
    justify-content: center;
}

#navimages {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.image-box {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid black;
    text-align: center;
    width: 30%;
}

.image-box img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-box h4 {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 10px;
    transition: transform 0.3s ease;
    transform: translateY(0);
    text-align: center;
}

.image-box:hover {
    transform: scale(1.1);
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

.container h1, p {
    margin: 0 0 20px 0;
}

.container p {
    line-height: 1.6;
    font-size: 18px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b0b0b0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: gray;
}

.toggle-button{
    position: absolute;
    top: 5rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 50px;
}

.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    padding-right: 10%;
    padding-left: 10%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 350px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    display: inline;
    margin-right: 20px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a {
    text-decoration: none;
    font-style: none;
    color: white;
    font-size: 150%;
}

.footer-contact h3 {
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-contact {
        margin-bottom: 20px;
    }

    .footer-links {
        display: none;
    }

    .footer-contact a {
        text-decoration: none;
        font-style: none;
    }
}

@media (max-width: 1200px) {
    .navbar {
        background-color: #333;
        margin: 0;
        padding: 0;
    }

    .CALL h3 {
        color: white;
    }

    .toggle-button {
        display: flex;
        padding-right: 0;
    }

    .toggle-button .bar {
        background-color: white;
    }

    .logo {
        margin-left: 2%;
    }

    .logo-img {
        float: left;
        left: 6%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
    }

    .navbar-links li {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .navbar-links ul li {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-bottom: 1px solid gray;
    }

    .navbar-links.active {
        display: flex;
        align-items: center;
        text-align: center;
        background-color: white;
    }

    .CALL {
        display: none;
    }
    .navbar a {
        color: black;
        text-decoration: none;
    }


.overlay-text {
    font-size: 250%;
}
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
    }

    #navimages {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .image-box {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .CALL {
        display: none;
        align-items: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }
}
