
@media (max-width: 768px) {

    .navbar{
    padding: 10px 20px 10px 10px;

    }

    .logo {
  padding: 10px 0px;
            
        }
     
.logo img {
    width: 140px;
      border: 1px solid #e43c10;
    border-radius: 15px;
}
    .nav-list {
        position: absolute;
        top: 110px;
        left: -100%;
        width: 100%;
        background: #ede9e1;
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease;
    }

    .nav-list.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list li {
    margin: 20px 15px;
}





    .video-carousel-item {
        min-width: 100%; /* Show 1 item in a row on smaller screens */
    }
     .about-us-container {
        flex-direction: column; /* Change to row layout on larger screens */
        text-align: left; /* Align text to the left */
        padding: 40px 0; /* Add padding for larger screens */
    }

    .about-us-image {
        margin-right: 0px; /* Add space between image and text */
    }

    .about-us-text {
        max-width: 600px; /* Set a maximum width for the text */
        margin-top: 20px;
    padding: 0;
    }
    .about-us-image img {
    /* width: 100%; */
    max-width: 400px; /*Set a maximum width for the image */
    height: auto;
    border-radius: 10px; /* Optional: add border radius for styling */
    /* padding: 10px; */
    /* margin: 10px; */
    width: 100%;
}
.service-box {
        width: 100%; /* Full width on mobile devices */
        margin: 20px 0; /* Add space between boxes on mobile */
    }

      .review-item {
        flex: 0 0 100%; /* Show 1 review on mobile */
    }
     .contact-container {
        flex-direction: column; /* Stack form and map on mobile */
    }

    .google-map {
        margin-top: 20px; /* Add space on top of map */
    }
     .article-item {
        flex: 0 0 100%; /* Show 1 article on mobile */
    }
    .footer-container {
        flex-direction: column; /* Stack footer content on smaller screens */
        align-items: center; /* Center items */
    }

     .carousel-item {
        min-width: 100%; /* One item per view for mobile */
    }

}


@media (max-width: 768px) {
    .wrapper {
        display: flex;
        align-items: center;
        margin: 0 auto;
        justify-content: center;
    }

    .wrapper .static-txt{
        color: #e43c10;
        font-size: 25px;
        font-weight: 500;
    }

    .wrapper .dynamic-txts{
        margin-left: 15px;
        height: 45px;
        line-height: 40px;
        overflow: hidden;
    }

    .dynamic-txts li{
        list-style: none;
        color: #e43c10;
        font-size: 25px;
        font-weight: 500;
        position: relative;
        top: 0;
        animation: slide 12s steps(1) infinite;
    }

    @keyframes slide {
        100%{
            top: -180px;
        }
    }

    .dynamic-txts li span{
        position: relative;
        margin: 5px 0;
        line-height: 45px;
    }

    .dynamic-txts li span::after{
        content: "";
        position: absolute;
        left: 0;
        height: 100%;
        width: 100%;
        background: #ede9e1;
        border-left: 2px solid #e43c10;
        animation: typing 3s steps(10) infinite;
    }

    @keyframes typing {
        40%, 60%{
            left: calc(100% + 30px);
        }
        100%{
            left: 0;
        }
    }
}



@media (max-width: 768px) {
    .enquiry-container {
        flex-direction: column;
        text-align: center;
        margin: 20px;
        padding: 20px;
    }
}