@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

/* Shared Styles */
.dark2{
    color: #474747;
    font-size: 15px;
}
.dark2-plus{
    color: #474747;
    font-size: 15px;
    font-weight: 500;
    
}
.dark2-h4{
    font-size: 25px;
    font-weight: 600;
    color: #474747;
}
.dark2-h5{
    font-size: 18px;
    font-weight: 600;
    color: #474747;
}
.btn{
    background-color: #fd6e0a;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    color: aliceblue;
    font-weight: 700;

}
.btn-seccondery{
    background-color: white;
    padding: 12px 25px;
    border: 1px solid #fd6e0a;
    border-radius: 5px;
    font-size: 15px;
    color: black;
    font-weight: 700;
    margin-top: 20px;
}
.space{
    margin: 20px auto;
}
.section-header-title{
    font-size: 65px;
    font-weight: 700;
}
.section-title{
    font-size: 30px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}
.section-sub-title{
    font-size: 35px;
    font-weight: 600;
}
.section-description{
    color: #757575;
    font-size: 15px;
    padding-top: 10px;

}
.section-description-2{
    color: #757575;
    font-size: 13px;
    padding-top: 10px;

}
/* .form input{
    padding: 20px 40px;

} */

/* Header section styles */
.header{
    margin: 0 auto;
    background: #fff8f3FF;
    background-image: url('../images/developer.png'), url('../images/header_bg.png');
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-size: contain, auto;
    padding-top: 20px;

}
nav{
    display: flex;
    justify-content: space-between;
}
.nav-bar, .header-content{
    margin: 0 150px;

}
.logo-name, .spn1{
    font-size: 35px;
    font-weight: 800;
}
.spn1{
    color: #fd6e0a;
}
.nav-ul{
    display: flex;
    flex-direction: row;

    align-items: center;
    gap: 20px;

}
.nav-ul li{
    list-style: none;
}
.nav-ul li a{
    text-decoration: none;
}

.header-content{
    display: flex;
    align-items: center;
    gap: 50px;
}
.profile-image{
    width: 50%;
}
/* About me section styles */
.about-section{
    border-radius: 10px;
    margin: 100px 170px;
    padding: 90px 110px;
    text-align: center;
    background-color: #fff8f3;
}
.about-me-info{
    display: flex;
    flex-direction: row;
    gap: 25px;
}
.about-me-info p,h4{
    margin: 3px;
}
.gap{
    margin-bottom: 0;
}
/* Skills Sections Styles */
.skills-section{
    margin: 90px 170px;
    text-align: center; 
}
.skill-cards{
    display: flex;
    gap: 20px;
    margin-top: 20px;

}
.skill-cards div{
    width: fit-content;
}
.card{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    box-shadow: 0px 6px 50px 0px #0000000F;
    padding: 20px;
    border-radius: 10px;

}
.card img{
    height: fit-content;
    width: fit-content;
}
/* Resume section styles */
.resume-section{
    margin: 20px 170px;
    text-align: center; 
}
.resume-container{
    display: flex;
    gap: 40px;
    text-align: left;
    
}
hr{
    margin:5px 0 15px 0;
}
.resume-card{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    
}
.card-style{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.resume-card-parent{
    margin: 20px 0 20px 0;
}
.my-h4{
    margin-left: 0;

}
/* Footer Styles */
.footer-container{
    background-color: #fff8f3;
    padding: 90px 170px;
    display: flex;
    justify-content: space-around;
    gap: 50px;
    justify-content: center;
    align-items: center;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;

}
.form input, textarea{
    padding: 10px 30px;
    border: none;
    border-radius: 10px;
}
.foot-icon{
    display: flex;
    gap: 20px;
    justify-items: center;
    margin-top: 30px;
}
.foot-icon img{
    width: auto;
    height: auto;
}
.footer-right button{
    margin-top: 20px;
}