/* About Section */
.about-section {
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  /* border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb; */
  /* padding: 40px 0; */
}

/* Title & Text */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}

.about-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 480px;
}

/* Counter Boxes */
.about-section .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.counter-box {
  background: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  min-width: 140px;
}

.counter-box h3 {
  margin: 0;
  font-weight: 700;
  color: #0ea5e9;
  font-size: 32px;
}

.counter-box p {
  margin: 5px 0 0;
  color: #4b5563;
  font-size: 14px;
}

/* Skill Badges */
.skill-badge {
  display: inline-block;
  background: #ffffff;
  padding: 5px 12px;
  margin: 6px 6px 0 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #0ea5e9;
  box-shadow: 0px 3px 12px rgba(14,165,233,0.15);
}

/* Download Button */
.btn-download {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-download:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* Image Wrapper Glow */
.about-img-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  z-index: 1;
}

.about-img-wrapper::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,140,255,0.25) 0%, transparent 70%);
  filter: blur(25px);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
}

/* About Image (CSS Animation Only) */
.about-img {
  width: 260px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards, floatSmooth 5s ease-in-out infinite;
  animation-delay: .4s;
}

/* Fade-In Slide-Up Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Animation */
@keyframes floatSmooth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===========================
      RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .about-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .counter-box {
    min-width: 120px;
    padding: 14px 18px;
  }
  .about-img {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .about-title { font-size: 24px; }
  .about-text { font-size: 15px; }
  .about-img { width: 180px; }
}
