/* Halaman About Fiqram */
main {
  padding-top: 74px; 
}
.about-section {
  background: linear-gradient(rgba(69, 105, 144, 0.9), rgba(69, 105, 144, 0.85)), url('img/image.png') no-repeat center/cover;
  min-height: 90vh;
  padding: 120px 0 80px 0; 
  position: relative;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Foto Profil Fiqram */
.about-image-container {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ikon Sosmed */
.about-social {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-5px);
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp {
  background: #25D366;
}

.email {
  background: #D44638;
}

.linkedin {
  background: #0077B5;
}

/* About Text Styling */
.about-text {
  flex: 1;
  color: #fff;
}

.about-header {
  margin-bottom: 25px;
  position: relative;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.decorative-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #fff, transparent);
  margin-top: 10px;
}

.about-bio p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

.call-to-action {
  margin: 30px 0;
  font-size: 18px;
  font-weight: 600;
}

.rocket-icon {
  display: inline-block;
  animation: rocketFly 2s infinite alternate ease-in-out;
}

@keyframes rocketFly {
  0% {
      transform: translateY(0) rotate(0deg);
  }
  100% {
      transform: translateY(-10px) rotate(10deg);
  }
}

/* Skills Section */
.skills-section {
  margin: 40px 0;
}

.skills-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.skills-section h2:after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #fff, transparent);
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.skill-item {
  margin-bottom: 15px;
}

.skill-name {
  font-weight: 500;
  margin-bottom: 8px;
}

.skill-bar {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(to right, #6a8bff, #a778ff);
  border-radius: 5px;
  transition: width 1.5s ease-in-out;
}

.skill-progress.animate {
  animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
  from {
      width: 0%;
  }
}

/* Interests Section */
.interests-section {
  margin: 40px 0;
}

.interests-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.interests-section h2:after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #fff, transparent);
}

.interests-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interest-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: default;
}

.interest-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
      flex-direction: column;
  }
  
  .about-image-container {
      margin-bottom: 40px;
      align-items: center;
  }
  
  .about-image {
      width: 220px;
      height: 220px;
  }
  
  .skills-container {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-section {
      padding: 60px 0;
  }
  
  .about-header h1 {
      font-size: 32px;
  }
  
  .about-bio p {
      font-size: 15px;
  }
  
  .interests-container {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-image {
      width: 180px;
      height: 180px;
  }
  
  .about-social {
      gap: 10px;
  }
  
  .social-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }
  
  .about-header h1 {
      font-size: 28px;
  }
  
  .skills-section h2, 
  .interests-section h2 {
      font-size: 22px;
  }
}