* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
}
.about{
    width: 100%;
    min-height: 50vh;
    display: flex;
    text-align: center;
    line-height: 1.6;
    justify-content: center;
    align-items: center;
     background: linear-gradient(to right, black 0%, black 30%, #f2a65a 100%);
}
.about .fa-solid{
    font-size: 30px;
    color: black;
  margin-left: 10px;
  margin-right: 10px;
}
.bio{
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  text-align: left;
  line-height: 1.6;
}
.profile-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: radial-gradient(circle, #111 0%, #000 100%);
  overflow: hidden;
  perspective: 1000px;
}

.profile-image {
  width: 280px;
  transition: transform 0.8s ease, box-shadow 0.6s ease;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.5)); /* gold shadow */
  border-radius: 12px;
}

.profile-image:hover {
  transform: scale(1.05) rotateY(10deg);
  filter: drop-shadow(0 20px 30px rgba(255, 215, 0, 0.8));
}

.bio .biot{
  max-width: 500px;
}
.bio .biot p{
  padding-top: 20px;
  font-weight: bold;
}
#limit{
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
#limit .litext{
   line-height: 1.6;
   font-weight: bold;
  max-width: 1200px;}
  #limit .litext p{
    margin: 10px;
  }
.skills-section {
  max-width: 1200px; /* Increase container width */
  margin: auto;
  padding: 2rem;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  justify-content: space-between;
}

.skill {
  flex: 1 1 45%; /* Two per row with wider bars */
  min-width: 300px;
}

.bar-bg {
  background-color: #333;
  height: 18px; /* Slightly thicker */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 5px #000;
}

.bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #000, gold);
  border-radius: 12px;
  transition: width 1.5s ease-in-out;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
  .bio {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }

  .profile-wrapper {
    min-height: 40vh;
  }

  .bio .biot {
    max-width: 90%;
  }

  .skills-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about h1, .about h3 {
    font-size: 1.5rem;
  }

  .bio {
    gap: 20px;
  }

  .profile-image {
    width: 200px;
  }

  .skills-section h2 {
    font-size: 1.5rem;
  }

  .skills-container {
    flex-direction: column;
    align-items: center;
  }

  .skill {
    width: 90%;
  }

  #limit .litext {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .about h1 {
    font-size: 1.3rem;
  }

  .about h3 {
    font-size: 1rem;
  }

  .bio .biot h1 {
    font-size: 1.5rem;
  }

  .bio .biot p,
  #limit .litext p {
    font-size: 0.9rem;
  }

  .profile-image {
    width: 150px;
  }

  .skills-section {
    padding: 1rem;
  }
}
