*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1500px;
    /* background-color: #f19898; */
}

/* nav section */
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 230px;
    cursor: pointer;
    /* border: 1px solid black; */
}

.nav #logo h1{
    font-size: 45px;
    color: rgba(24, 24, 24, 1);
}
.nav #logo h1 span{
    color: rgba(253, 110, 10, 1);
}

.nav #list ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.nav #list ul li{
    list-style: none;
}

.nav #list ul li a{
    text-decoration: none;
    color: rgba(71,71,71,1);
    font-size: 20px
}
.nav #list ul li button{
    font-size: 20px;
    background-color: rgba(253, 110, 10, 1);
    width: 150px;
    height: 65px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* header tag image */
header{
    background-image: url(./images/developer.png), url(./images/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left 50px, right bottom;
    background-size: 85px,750px;
}

/* hero section */
.hero{
    display: flex;
    justify-content: space-between;
    /* border: 1px solid black; */
    margin-left: 230px;
}
.hero .hero-left{
    padding: 120px 0;
    width: 550px;
}
.hero .hero-left h2{
    font-size: 45px;
    font-weight: 600;
    color: #474747;
}
.hero .hero-left h1{
    font-size: 65px;
    font-weight: 900;
    color: #000000;
}
.hero .hero-left p{
    font-size: 18px;
    color: #757575;
}
.hero .hero-right img{
    width: 470px;
}
.hero .hero-left .btn-1{
    margin: 20px 10px 0 0;
    padding: 20px 40px;
    background-color: #FD6E0A;
    border: none;
    border-radius: 5px;
    color: #fff;
}
.hero .hero-left .btn-2{
    margin: 20px 10px 0 0;
    padding: 20px 40px;
    background-color: #fff;
    border: 1px solid #FD6E0A;
    border-radius: 5px;
    color: #FD6E0A;
}

/* about me */
#about-us{
    width: 1140px;
    height: 450px;
    background-color: #FFF8F3;
    margin: 100px auto;
    text-align: center;
    padding: 150px;
    border-radius: 5px;
}

#about-us h1{
    font-size: 35px;
    margin-bottom: 30px;
}
#about-us p{
    font-size: 18px;
    color: #757575;
    margin-bottom: 30px;
}
#about-us table{
    display: flex;
    justify-content: space-around;
}
#about-us table th,td{
    padding: 0 20px;

}


/* what i do */

#what-do {
    /* border: 1px solid black; */
    /* padding:0 150px; */
    margin: 10px 180px;
} 
#what-do h1{
    text-align:center ;
    font-size: 35px ;
    font-weight: bold;
    margin-bottom: 10px;
}
#what-do .text{
    text-align: center;
    font-size: 18px;
    color: #757575;
    margin-bottom: 50px;
    padding: 0 150px;
}

#all-card{
    display: flex;
    justify-content: space-between;
}
#what-do .card{
    width: 250px;
    height: 350px;
    /* border: 1px solid black; */
    border-radius: 10px;
    padding: 28px;
    box-shadow:2px 2px 2px 2px #474747;
}
#what-do .card h2{
    font-size: 20px;
    margin: 20px auto;
}
#what-do .card p{
    font-size: 20px;
    margin: 20px auto;
    text-align: start;
}
#all-summary{
    margin: 100px 180px;

}
#all-summary button{
    display: flex;

}
#all-summary  h1{
    text-align: center;
    margin-bottom: 50px;
}
.allexp{
    display: flex;
    justify-content: space-around;
    /* gap: 50px; */
    
}
.edu  h2{
    margin-bottom: 30px;
}
.exp  h2{
    margin-bottom: 30px;
}
.first{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    border-bottom: 1px solid black;
    margin-top: 20px;
}
.first p{
    margin-bottom: 20px;
}
.no-border{
    border-bottom: none;
}

.myCV{
    background-color: #FD6E0A;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    margin: 5px auto;
}

#form{
    background-color:rgba(255, 248, 243, 1);
    height: 400px;
    display: flex;
    justify-content: center;
    padding: 100px 180px 0px 180px;
}

.info h1{
    font-size: 34px;
    
}

.info p{
    font-size: 19px;
    width: 50%;
    color: #757575;
    margin: 10px 0;
    font-weight: 300;
}

.icon img{
    padding: 10xp ;
}
.formsubmit{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px;
}
 input{
    padding: 10px 20px;
    border-radius: 5px;
    border: 0.5px solid #474747;
}
textarea{
    padding: 10px 20px;
    height: 100px;
    border-radius: 5px;
    border: 0.5px solid #474747;

}
.formsubmit button{
    background-color: #FD6E0A;
    border: none;
    width: 100px;
    padding: 10px 25px;
    color: #fff;;
    border-radius: 5px;
}