/* ================= About Section Styles ================= */
#about {
  background: var(--bg-light);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  position: relative;
}

.rounded-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  color: var(--primary-color);
  border-left: 5px solid var(--secondary-color);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.circle-check {
  color: var(--secondary-color);
  background: rgba(0, 210, 211, 0.1);
  padding: 6px;
  border-radius: 50%;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}
