  *{
    margin:0;
    padding:0;
    box-sizing: border-box;
  } 

.font-open-sans{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;

}
.logo h2{
  font-size: 45px;
}
.color-orange{
  color:#FD6E0A;
  font-weight: 900;
}
.btn{
  background-color: #FD6E0A;
  border:none;
  padding:18px 35px;
  border-radius: 5px;
  font-size: 20px;
  font-weight:bold;
  color: white;
  cursor: pointer;

}
.section-heading{
  max-width: 827px;
  text-align: center;
  margin:0 auto;
}
.section-heading h2{
  font-size: 35px;
  margin-bottom: 30px;

}
.section-heading p{
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 30px;
  color:#757575
}

/*main style*/
header{
  background-color:#FFF8F3;
  background:url("../images/developer.png"),url("../images/header_bg.png"),#FFF8F3;
  background-position:top left, bottom right ;
  background-repeat: no-repeat;
  padding-top: 50px;
} 

nav{
  width:71%;
  max-width:1140px;
  margin:0px auto;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
nav .menu{
  display:flex;
  list-style-type: none;
  gap:51px;
  align-items: center;
   

}
nav .menu a{
  font-size: 20px;
  color:#474747;
  text-decoration:none;

}
#banner {
     /*border:1px solid red;*/
     margin:47px 38px 0 230px;
     display:flex;
     justify-content: space-between;
     align-items:center;
     text-decoration: none;
}
#banner .banner-content{
  max-width: 585px; ;
}
#banner .banner-content h2{
  font-size: 45px;
  font-weight: 600;
  color:#474747;
  margin-bottom:5px;
  text-decoration: none;
  

}
#banner .banner-content h1{
  font-size: 85px;
  font-weight: bold;
  color:#181818;
  margin-bottom:20px;

}
#banner .banner-content p{
  font-size: 18px;
  color: #757575;
  line-height:30px; 
  margin-bottom: 30px;
}
#banner .banner-image img{
 max-width:585px ;
 vertical-align:middle;
}
#about{
    padding-top: 130px;
}
#about .about-container{
  width:71%;
  max-width: 1140px;
  margin:0 auto;
  text-align: center;
  background-color: #FFF8F3;
  padding: 131px;
}
#about .about-container .about-info{
  display:flex;
  justify-content: space-around;
}
.about-info .info-card p {
  font-size: 20px;
  
  line-height: 30px;
  color: #757575;
}
.about-info .info-card h4 {
  font-size: 20px;

}

#skills, #resume {
    padding-top: 130px;
}

#skills .skills-container{
  width:71%;
  max-width:1140px;
  margin:0 auto;

}

/* Skills container */
#skills .skills-container{
  width: 71%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center; /* heading is centered */
}

/* Grid for skill cards */
.skill-grid{
  display: flex;         /* Make cards side by side */
  gap: 24px;             /* Space between cards */
  flex-wrap: wrap;       /* Wrap to next line on small screens */
  justify-content: center; /* Center the row */
  margin-top: 50px;      /* Space below heading */
}

/* Individual skill card box */
.skill-box{
  width: 250px;          /* Fixed width for all cards */
}

/* Card styling */
.skill-card{
  padding: 30px;
   box-shadow: 0 6px 50px 0 #00000062;
  border-radius: 10px;
  background: white;
  text-align: center;
}

.skill-card img{
  max-width: 44px;
  margin-bottom: 20px;
}

.skill-card h3{
  font-size: 20px;
  color: #181818;
  margin-bottom: 15px;
}

.skill-card p{
  font-size: 16px;
  color: #757575;
  line-height: 28px;
}

#resume .resume-container{
  width:71%;
  max-width: 1140px;
  margin:113px auto 0;
  display:flex;
  gap:24px;
}
.resume-container .section-title{
  color:#474747;
  font-size: 30px;
  margin-bottom: 30px;
}

.resume-card{
  max-width: 511px;
  margin-right: 47px;
}
.resume-card .card-title{
  font-size: 25px;
  font-weight:bold;
  margin-bottom: 10px;
  color:#474747;
}
.resume-card .card-info{
  font-size: 20px;
  font-weight:600;
  margin-bottom: 20px;
  color:#757575;
}
.resume-card .card-text{
  font-size: 16x;
  line-height: 28px;
  margin-bottom: 10px;
  color:#757575;
}
.resume-container hr{
  margin: 30px 0;
  
}
.text-center{
  text-align: center;
}
footer{
  margin-top:130px;
  background-color: #FFF8F3;
  padding: 130px;

}
footer .footer-container{
  width:71%;
  max-width: 1140px;
  margin:0 auto;
  display:flex;
  gap: 116px;


}
.footer-container .social{
    max-width: 562px;
}
.footer-container .social p{
  color:#474747;
  line-height: 28px;
  font-size: 16px;
  margin-bottom: 20px;

}
.footer-container h2{
  color:#181818;
  font-size: 35px;
  margin-bottom: 20px;
}
.footer-container .icons a{
  margin-right: 24px;
}
.footer-container form input[ type="text"] ,.footer-container form textarea {
  width: 461px;
  padding:18px 31px;
  margin-bottom: 24px;
  border:none;
  border-radius: 5px;
  color:#757575
}