/* About Section Scoped Styles */
.about_section {
  --primary-color: #00bbf0;
  --text-dark: #222;
  --text-muted: #666;
  --bg-light: #f9f9f9;
  
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Container & Heading */
.about_section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.about_section .heading_container {
  margin-bottom: 50px;
  text-align: center;
  align-items: center; /* Overriding your global flex-start */
}

.about_section h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image Styling */
.about_section .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about_section .img-box img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px; /* Soft modern corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Floating effect */
  transition: transform 0.3s ease;
}

.about_section .img-box img:hover {
  transform: translateY(-5px);
}

/* Content Details */
.about_section .detail-box {
  padding: 20px;
}

.about_section .detail-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about_section .detail-box p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* Modern GitHub Button */
.about_section .detail-box a {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 187, 240, 0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .about_section .row {
    flex-direction: column-reverse; /* Text first, image second on mobile */
  }
}