  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .nav-bar
  {
    width:100%;
    height: 60px;
    background-color: rgb(10, 0, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; 
    
  }
  h1{
    color: #fff;
    margin-left:10px;
    font-size: 26px;
    padding: 4px 8px;
    font-family: aria;
  }
  ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 20px;
    color: #fff;
    font-size: 22px;  
    font-family: aria;
  }
  .hm{
    text-decoration: none;
    color: #fff;
    margin-right: 10px;
    font-family: aira;
  } 
  ul li:hover{
    text-decoration: underline;
  }
  .menubtn{
    font-size: 24px;
    display: none;
    color: #fff;
    position: absolute;
    right: 20px;
  }
  @media only screen and (max-width:700px){
    ul{
      display: none;
    }
    ul li{
      display: block;
      margin:10px;
    }
    .menubtn{
      display: block;
    }
    h3{
      font-size: 24px;
    }
    #menu{
      position:absolute;
      top:60px;
      right:0;
      background-color: rgb(47, 4, 4);
      width: 100%;
      text-align: center;

    }
    
  }
  #home {
    width: 100%;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    padding: 80px 20px;
    box-sizing: border-box;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    color: white;
  }

  .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .text-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .text-content .btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: white;
    color: #ff5e62;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
  }

  .text-content .btn:hover {
    background-color: #222;
    color: white;
  }

  .image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
  }

  .image-content img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  }
  #about {
    background-color: #f5f5f5;
    padding: 80px 20px;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .about-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }

  .about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
  }

  .about-text h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ff5e62;
    position: absolute;
    left: 0;
    bottom: -10px;
  }

  .about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .about-text strong {
    color: #ff5e62;
  }

  .about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
  }

  .about-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .about-image img:hover {
    transform: scale(1.05);
  }
#projects {
  background-color: #fff8f2;
  padding: 80px 20px;
}
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#projects h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
#projects h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ff5e62;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card h3 {
  font-size: 1.5rem;
  color: #ff5e62;
  margin-bottom: 15px;
}
.project-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.project-card .btn{
      display: inline-block;
    padding: 10px 25px;
    background-color: white;
    color: #ff5e62;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;

}
#skills {
  background-color: #f0f8ff;
  padding: 80px 20px;
}
.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#skills h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
#skills h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ff5e62;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.skill-card {
  background: white;
  padding: 20px 30px;
  font-size: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #ff5e62;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.skill-card:hover {
  background: #ff5e62;
  color: white;
  transform: scale(1.05);
}
/* Contact Section Styling */
#Contact {
  padding: 40px 20px;
  background: #f9f9f9;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}





footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.footer-container p {
  margin: 10px 0;
  font-size: 16px;
}

.social-icon a img{
  width:50px;
  height: 50px;
}