*{
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
  --brown-light: #d2b48c;  
  --brown-dark: #835d40;
  --black: #1a1a1a;      
  --white: #ffffff;      
  --gray-light: #f5f5f5; 
}


/* navbar responsive */

.bars{
    position: absolute;
    right: 40px;
    font-size: 30px;
    color: #fff;
    display: none !important;
    cursor: pointer;
}



.fa-xmark{
    cursor: pointer;
    display: none !important;
    font-size: 25px;
    color: #fff !important;
}



@media (max-width:711px){

    .logo>img{
        margin-left: -20px ;
    }
    .bars{
        display: block !important;
    }

    .list{
        display: none !important;
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        height: 100vh;
        background-color: #0b175afa;
    }
    

    .list>ul>li{
        font-size: 19px;
    }




    .li{
        display: block !important;
    }


    .list>ul{
        line-height: 3;
        position: relative;
        top: 20%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .fa-xmark{
        top: 10px;
        position: absolute;
        left: 85%;
        display: block !important;
    }
}

/* navbar */
nav{
    z-index: 11;
    position: sticky;
    top: 0px;
    transition: 0.5s ease-in-out;
}

.navlink{
    background-color: #000;
}

.navbar{
    padding: 10px 90px;
    background-color: #0a197c71;
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
}

.list>ul{
    color: #fff;
    font-size: 17px;
    font-family: sans-serif;
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.list>ul>li>a{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: 0.5s ease-in-out;
}


.list>ul>li>a:hover{
    border-bottom: 1px solid #fff;
}

.logo>img{
    width: 80px;
}


.video>video{
    z-index: -1;
    position: absolute;
    top: 0px;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}


/* main */


.overlay{
    height: 86.4vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.534));
}

main{
    position: absolute;
    top: 46%;
    left: 30%;
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    font-family: sans-serif;
    transform: translate(-50px, -50px);
    align-content: center;
    color:#fff;
    text-align: center;
}


.emai::placeholder{
    text-transform:capitalize;
}



main>h1{
    font-size: 50px;
    margin-bottom: 20px;
}

main>p{
    line-height: 1.5;
}


.btn>button{
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #0b175afa;
    color: #fff;
    border: 1px solid #0b175afa;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}


.btn>button:hover{
    background-color: #0b175ab4;
}


.btn>button:hover{
    border-bottom: 1px solid #0b175afa;
}



/* responsive main */


@media (max-width: 1295px) {
  main {
    width: 90%;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
  }

  main > h1 {
    font-size: 36px;
  }

  main > p {
    font-size: 16px;
  }

  .btn > button {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* 📱 For mobile screens */
@media (max-width: 600px) {
  main {
    width: 95%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  main > h1 {
    font-size: 28px;
  }

  main > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .btn > button {
    padding: 10px 16px;
    font-size: 13px;
  }
}



/* about us */

.about>h1{
    margin-top: 60px;
    text-align: center;
    font-size: 40px;
    color: #0b175afa;
    font-family: sans-serif;
}


.abb{
    justify-content: center;
    display: flex;
    gap: 30px;
    margin: 50px 30px;
}


.left-abb>h1{
    margin-bottom: 20px;
    font-family: sans-serif;
    color: #0b175afa;
}



.left-abb>p{
    margin-bottom: 20px;
    font-size: 17px;
}


.right-abb>img{
    width: 400px;
}


.left-abb{
    width: 700px;
}



.left-abb>h2{
    color: #0b175afa;
    font-family: sans-serif;
    margin-bottom: 10px;
}


.left-abb>ul{
    list-style-type: circle;
    font-family: sans-serif;
}


.left-abb>p{
    color: #2c2c2c;
    line-height: 1.5;
}

.left-abb>ul>li{
    margin: 10px;
}





/* about section rsponsive code */



@media (max-width: 1150px) {
  .abb {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .left-abb > ul {
    padding-left: 20px;
    text-align: left; 
  }

  .left-abb {
    width: 90%;
  }

  .right-abb > img {
    width: 70%;
  }

  .left-abb > h1 {
    font-size: 28px;
  }

  .left-abb > p {
    font-size: 15px;
  }
}

/* 📱 Mobile screens */
@media (max-width: 600px) {
  .abb {
    gap: 20px;
    margin: 30px 15px;
  }

  .left-abb {
    width: 100%;
  }

  .right-abb > img {
    width: 100%;
    max-width: 350px;
  }

  .about > h1 {
    font-size: 30px;
  }

  .left-abb > h1 {
    font-size: 24px;
  }

  .left-abb > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .left-abb > ul {
    padding-left: 20px;
    text-align: left; 
  }
}



/* services */


.services{
    margin: 100px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.divider{
    width: 70px;
    height: 3px;
    background-color: #0b175afa;
    border: none;
}

.hr{
    display: flex;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.hr>hr{
    width: 60px;
    background-color: #0b175afa;
}


.serv>h1{
    color: #0b175afa;
    font-family: sans-serif;
    text-align: center;
    font-size: 40px;
    margin-top: 150px;
}

.ser{
    position: relative;
    bottom: 0px;
    transition: 0.5s ease-in-out;
    width: 420px;
    background-color: #fffffffa;
    color: #0b175afa;
    box-shadow: 2px 1px 5px grey;
    border: 2px solid #f5f5f5;
    padding: 20px 30px;
    border-radius: 20px;
    font-family: sans-serif;
}



.ser:hover{
    position: relative;
    bottom: 30px;
}

.ser>h1{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    font-size: 18px;
    margin-bottom: 20px;
}

.i{
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 2;
}

.i>p{
    width: 100%;
    font-size: 15px;
}



.i>i{
    font-size: 10px;
}





/* responsive code of services */




/* how we work */

.work>h1{
    text-align: center;
    color: #0b175afa;
    margin-top: 160px;
    font-family: sans-serif;
}

.planing{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 20px;
}

.plan{
    padding: 20px;
    font-family: sans-serif;
    width: 250px;
    text-align: center;
    transition: 0.5s ease-in-out;
}


.plan>p:nth-of-type(2){
    color: #525252;
    line-height: 1.5;
}

.plan:hover{
    box-shadow: 2px 2px 10px #0b175afa;
    border-radius: 30px;
}

.num>h1{
    display: inline;
    background-color: transparent;
    border: 1px solid #0b175afa;
    padding: 15px 25px;
    font-size: 17px;
    font-family: sans-serif;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
    color: #0b175afa;
}



.num>h1:hover{
    background-color: #0b175afa;
    color: #fff;
}

.num{
    margin: 40px 0px;
}

.pp{
    margin-bottom: 10px;
   font-size: 25px; 
   color: #0b175afa;
}










/* contact */



.ccc>h1{
    margin-top: 30px;
    color: #0b175afa;
    font-size: 40px;
    font-family: sans-serif;
    text-align: center;
}



.pone{
    margin: 40px 10px;
    display: flex; gap: 10px;
}


.con{
    justify-content: center;
    gap: 20px;
    padding: 60px 30px;
    font-family: sans-serif;
    
    display: flex;
}

.left-con{
    line-height: 1.5;
    padding: 60px 20px;
    width: 600px;
    background-color: #fff;
    box-shadow: 2px 2px 10px grey;
    border-radius: 20px;
    color: #0b175afa;
}


.contact{
    background-color: #0b175afa;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}





.add{
    width: 500px;
}



.email{
    flex-wrap: wrap;
}

.pone a{
    color: #0b175afa;
}


.pone a:hover{
    color: red;
}



.input>input{
    height: 30px;
    border-radius: 10px;
    padding-left: 10px;
    border: 1px solid #0b175ab4;
    width: 300px;
}

.input>select{
    width: 310px;
    height: 40px;
    border-radius: 10px;
}

.input{
    line-height: 1.7;
    margin-top: 10px;

}

.input>textarea{
    border-radius: 10px;
    width: 267px;
    height: 120px;
    padding: 20px;
}


.btnn>button{
    border: 1px solid #0b175afa;
    background-color: #0b175afa;
    border-radius: 10px;
    padding: 10px 25px;
}

.btnn>button>a{
    color: #fff;
}


.bb>button{
    background-color: #fff;
    border: 1px solid #fff;
    padding: 10px 25px;
    border-radius: 10px;
}


.bb{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}


.bb>button>a{
    color: #0b175afa;
}






/* responsive contact */


@media (max-width: 1108px) {
  .con {
    flex-direction: column;
    margin: 50px;
    align-items: center;
  }

  .left-con,
  .contact {
    width: 100%;
    max-width: 650px;
  }

  .left-con {
    padding: 30px 20px;
  }

  .add {
    width: 100%;
  }

  .input>textarea{
    width: 95%;
    /* margin: 30px; */
  }

  .input > input,
  .input > select{
    width: 100%;
    max-width: 100%;
  }
 
  .contact {
    margin-top: 30px;
  }
}

/* 📱 Extra small (phones) */
@media (max-width: 600px) {
  .left-con,
  .contact {
    padding: 20px;
    border-radius: 15px;
  }


  .con{
    margin: 20px;
  }

  .pone {
    flex-direction: column;
    margin: 20px 0;
  }

  .input > input,
  .input > select {
    font-size: 14px;
  }


  .input > textarea{
    width: 90%;
  }

  .btnn button,
  .bb button {
    width: 100%;
  }
}


/* footer */

.footer{
    flex-wrap: wrap;
    padding: 120px 20px;
    background-color: #0b175afa;
    display: flex;
    gap: 60px;
    justify-content: center;
}


.foo:nth-child(1){
    width: 400px;
}


.foo{
    color: #fff;
    font-family: sans-serif;
}


.foo>h2{
    display: inline;
    border-bottom: 2px solid #fff;
    font-size: 19px;
    margin-bottom: 20px;
}


.foo a{
    color: #fff;
    transition: 0.5s ease-in-out;
}


.foo a:hover{
    color: red;
}


.foo>ul>li:hover{
    text-decoration: underline;
}


.foo:nth-child(1) >p{
    line-height: 1.6;
}



.foo{
    margin-bottom: 50px;
    width: 200px;
}


.foo>ul>li{
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.foo>ul{
    margin-top: 20px;
    line-height: 1.7;
    list-style-type: none;
}

@media (max-width: 1125px) {
    .footer {
        justify-content: center;
        text-align: center;
    }

    .foo {
        flex: 1 1 100%;
        min-width: 180px;
    }

    .foo:nth-child(1) {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .foo ul {
        padding: 0;
    }
}



/* footer */

footer{
    text-align: center;
    padding: 30px;
    background-color: #fff;
    color: #0b175afa;
    font-family: sans-serif;
}