body{
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100vw;
}
*{
    margin: 0px;
    padding: 0px;
    max-width: 100vw;
    
}

/*styling the navbar*/
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: brown;
    height: 58px;
    max-width: 100%;
    margin-left: 0px;
    position: relative;
    padding-left: 50px;
    background-color:#4D413A;
    flex-wrap: wrap;
}
/*styling the logo in navbar*/ 

nav .logo img{      /*logo icon*/
    width: 100px;
    cursor: pointer;
}

nav ul{
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

nav ul li{
list-style: none;
display: flex;
align-items: center;
}
 
nav ul li a{
padding-top: 18px;
text-decoration: none;
color: grey;
text-align: center;
font-size: small;
}

nav ul li a:hover{      /*hover effect in navbar*/
    color: #F26522;
}

.menuicon{  /*styling the resonsive bar icon in nav bar*/
font-size: 2rem;
color: white;
display: none;
}
.navbtn{        /*contact us btn in nav bar*/
    background:#F26522;
    border-radius: 10px;
    display: inline-flex;
    padding: 5px 10px;
}

.heading{
    padding-left: 100px;
    padding-top: 30px;
}

.heading .lined::after{
    content: "";
    display: block;
    position: absolute;
    left: 14%;
    top: 17%;
    width:200px; /* Custom underline length */
    height: 2px; /* Thickness */
    background-color: #F26522;; /* Color */
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.6);
}
.projects .row{
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    flex-wrap: wrap;
}

/* stylying the cards*/
.card{
    width:182px;
    height: 244px;
    border-radius: 15px 15px 15px 15px;
    background: #e2dedeFF;
}
.card img{
    width: 49px;
    height: 49px;
    margin-left: 32%;
    margin-top: 15px;
}
/* stylying the card title*/
.card-title{
    font-weight: 700;
    font-size: 200%;
    text-align: center;     
}
/* stylying the card text*/
.card-text{
    font-weight: 400;
    font-size: small;
    text-align: center;
}
/* stylying the card btn*/
.card .btnz{
    background-color: #f26522;
    color: white;
    text-decoration: none;
    font-size: 100%;
    padding-inline: 15px;
    padding-block: 5px;
    margin-left: 22%;
    margin-top: 2%;
    border-radius: 5px 5px 5px 5px;

}

/*styling the clients section*/
.client{
    padding: 20px;
    justify-content: center;
}
.client .client-heading{        /*styling the client headings */
    position: absolute;
    left: 8%;
    margin-top: 10px;
}

.client-img{        /*styling the image container*/
    border: 2px solid #F26522;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-left: 20%;
    flex-wrap: wrap;
}

.client-img img{        /*styling the image icon*/
    margin-top: 2px;
    height: 25px;
}

.client p.underlined::after{    /*styling the undeline*/
    content: "";
    display: block;
    width: 300px; /* Custom underline length */
    height: 2px; /* Thickness */
    background-color: #F26522;; /* Color */ 
    margin-left: 330px;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 40%;
}

.client .slideshow{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.client .slideshow p{
    text-align: center;
}

/*styling footer*/
footer{
    max-width: 100vw;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-wrap: wrap;
}
.footerhd{
    display: flex;
    justify-content: center;
    color: #4A4A4C;
}
.mfooter ul,li{
        list-style: none; 
        padding: 0;
        margin: 0;
      
}
/*styling links in footer*/
.mfooter ul li a {    
    text-decoration: none;
    color: #4A4A4C;
    gap: 0;
}
/*adding hover effect in footer*/
.mfooter ul li a:hover{     
    color: #F26522;
    text-decoration: underline;
}

/*styling the icons container in the footer*/

.logofooter{
    margin-left: 150px;
    margin-bottom: 10px;
}
/*styling the icons in the footer*/
.logofooter i{
    padding: 10px;
}

/*styling the undeline in the gheading of the footer*/

.lfooter h3::after{
        content: "";
        display: block;
        width: 70px; /* Custom underline length */
        height: 3px; /* Thickness */
        background-color: #F26522;; /* Color */    
}
.mfooter h3::after{
    content: "";
    display: block;
    width: 70px; /* Custom underline length */ 
    height: 3px; /* Thickness */
    background-color: #F26522;; /* Color */
  
}
.rfooter h3::after{
    content: "";
    display: block;
    width: 70px; /* Custom underline length */
    height: 3px; /* Thickness */
    background-color: #F26522;; /* Color */
}

/*styling the line above copyright in the footer*/

.copyfoot p::before{
    content: "";
    display: block;
    width: 950px; /* Custom underline length */
    height: 1px; /* Thickness */
    background-color: #4A4A4C;; /* Color */
    margin-left: 170px;
    margin-bottom: 20px;
}


/*responsiveness*/

@media (max-width: 600px) {

    html,body{
        overflow-x: hidden;
        overflow-y: auto;
        max-width: 100vw;
        margin: 0px;
        padding: 0px;
    }

    nav {
        flex-direction: column; /* Stack items vertically */
        align-items: center;   
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
    }

    nav .logo img{      /*logo icon*/
        width: 100px;
        cursor: pointer;
        position: absolute;
        top: 25%;
        left: 2%;
    }

    nav ul{
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: #453a34;
        display: none;
    }
    nav ul li{
        padding: 10px;
        margin-left: 150px;
    }

    nav .menuicon{   /*menu icon in nav bar*/
        display: block;   
    } 
    nav .grpbtn{
        position: absolute;
        right: 6%;
        top: 10%;
        display: flex;
        margin-right: 10px;
    }

    .heading{       /*positioning the heading of the page*/
        padding-top: 80px;
        padding-left: 40px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .heading .lined::after{
        content: "";
        display: block;
        position: absolute;
        left: 32%;
        top: 11%;
        width:200px; /* Custom underline length */
        height: 2px; /* Thickness */
        background-color: #F26522;; /* Color */
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.6);
    }    

    .projects .card{
        margin-bottom: 20px;
    }

    .client-img{        /*styling the image container*/
        margin-left: 45%;
    }

    .client p.underlined::after{    /*styling the undeline*/
        width: 80px; /* Custom underline length */
        height: 2px; /* Thickness */
        background-color: #F26522;; /* Color */ 
        margin-left: 55%;
    }

    /*styling footer*/
    .mfooter{           /*useful link column*/
        margin-top: 20px;
    }

    .mfooter ul li a:hover{
        color: #F26522;
        text-decoration: underline;
    }

    .rfooter{
        margin-top: 20px;
    }

    /*styling the icons container in the footer*/
    .logofooter{
        margin-left: 0px;
    }

    /*styling the icons in the footer*/
        .logofooter i{
            padding: 10px;
            padding-left: 0px;
        }

    /*styling the line above copyright in the footer*/

    .copyfoot p::before{
        content: "";
        display: block;
        width: 300px; /* Custom underline length */
        height: 1px; /* Thickness */
        background-color: #4A4A4C;; /* Color */
        margin-left: 10px;
        margin-bottom: 20px;
    }

    .paragraphs h3 {
        display: none;
    }

    /*styling button */

    .paragraphs a{
    text-align: center;
    }

}