.navi{
    list-style: none;
    display: flex;
    grid-gap:10px;
    padding-top: 20px ;
    

}
#navi-continer{
    background-image:url("image/billboard.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;

}
.bar{
    display: flex;
    justify-content: flex-start;
    gap: 800px;
    background-color:rgba(216, 203, 197,0.6);
    padding: 0px ;
}
a{
    text-decoration: none;
    color:black;
}
.image{
    width:1250px;
    height: 500px;
}
.img{
    position: relative;
    top: 72%;
    
}
.contact{
    background-color:rgba(216, 203, 197,0.6);
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.contact-button{
    background-color: aqua;
    /* border-radius: 10px; */
    width:300px;
    padding:5px;
    /* align-content: center; */
    margin-right:  50px;
    
}
.passage{
    text-align: center;
    margin: 50px;
}
.stuff-continer{
    text-align: center;
    margin-left: 40px;
}
.sep-img{
    margin-top: -50px;
    width: 820px;
    margin-right: 64px;
}
.img-continer{
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.conti{
    background-color: aliceblue;
    padding: 0.625rem;
}
.group-img{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    width: 100%;
}
.mix-img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.client-heading{
    text-align: center;
    margin-top: 3rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.clients{
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    object-fit: cover;
}
.client-continer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.john{
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-transform: capitalize;
    margin: 0.5rem 0;
}
.cli{
    background-color: aliceblue;
    padding-top:20px ;
}

.brand-logo{
    display: flex;
    justify-content: space-around;
    padding-top: 23px;padding-bottom: 20px;
    
    

}
.touch-button{
    display: flex;
    justify-content: space-between;
    margin: 0px 300px 10px 300px;
    background-color:rgb(0,0,0,0.3);
    padding:5px 10px 5px 10px
    
}
.contact-2{
    background-color:aqua;
    
    padding:7px 24px;
    /* margin:5px 5px */
}
.area-continer{
    display:grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap:90px ;
    margin: 10px 200px 10px 200px;
}
.black{
    background-color:rgb(35, 35, 35);
    color: azure;
}
.reserved{
    text-align: center;
    font-size: 7px;
}
.zoheb{
    font-size: 15px;
}

/* Media Queries for additional responsiveness */

/* Mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .bar {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .navi {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .contact {
        flex-direction: column;
        text-align: center;
    }
    
    .touch-button {
        flex-direction: column;
        text-align: center;
        margin: 0 1rem 1rem;
    }
    
    .contact-button, .contact-2 {
        width: 100%;
        max-width: 300px;
    }
    
    .sep-img {
        margin-top: -1rem;
    }
    
    .img-continer {
        grid-template-columns: 1fr;
    }
    
    .client-continer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .area-continer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Tablet devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .bar {
        gap: 2rem;
        padding: 1rem;
    }
    
    .contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .touch-button {
        margin: 0 2rem 1rem;
    }
    
    .area-continer {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 1rem;
    }
    
    .img-continer {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .client-continer {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Large tablets and small laptops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .bar {
        gap: 4rem;
    }
    
    .touch-button {
        margin: 0 3rem 1rem;
    }
    
    .area-continer {
        margin: 0 2rem;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure text doesn't overflow */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure buttons are easily clickable on mobile */
button, .contact-button, .contact-2 {
    min-height: 44px;
    touch-action: manipulation;
}

/* Improve readability on smaller screens */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
}