/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.section-title {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  color: #000;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: rgba(106, 106, 28, 0.8);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(252, 252, 4, 0.4), #000);
  color: #000;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 5px solid rgba(255, 214, 0, 0.8);
}

.hero-section .display-4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  text-shadow: 1px 1px 3px rgba(255, 214, 0, 0.6);
}

.hero-section .lead {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.profile-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(255, 214, 0, 0.6);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.list-unstyled li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.list-unstyled strong {
  color: #000;
  min-width: 100px;
  display: inline-block;
  font-weight: 600;
}

/* Skills Section */
.skills-section {
  padding: 80px 0;
  background-color: #000;
  color: #fff;
}

.skills-section .section-title {
  color: #fff;
}

.skills-section .section-title::after {
  background: rgba(255, 214, 0, 0.8);
}

.skill-item {
  margin-bottom: 25px;
}

.skill-name {
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.skill-name span:first-child {
  color: rgba(255, 214, 0, 0.9);
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: #333;
}

.progress-bar {
  background: linear-gradient(to right, rgba(255, 214, 0, 0.8), rgba(255, 214, 0, 0.4));
  border-radius: 5px;
  transition: width 1s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
      padding: 80px 0;
  }
  
  .profile-img {
      max-width: 70%;
      margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
      padding: 60px 0;
  }
  
  .hero-section .display-4 {
      font-size: 2.5rem;
  }
  
  .profile-img {
      max-width: 80%;
  }
  
  .about-section, .skills-section {
      padding: 60px 0;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-section, .skills-section {
  animation: fadeIn 0.8s ease-out;
}

/* Additional Yellow/Black Elements */
.btn-yellow {
  background-color: rgba(255, 214, 0, 0.8);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-yellow:hover {
  background-color: rgba(255, 214, 0, 1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}