/* ===== ABOUT SECTION ===== */
.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.about__title {
  margin-bottom: 1rem;
}

.about__img {
  max-width: 300px;
  width: 100%;
}

.about__img img {
  width: 100%;
  height: auto;
  border-radius: 50px 10px 50px 10px;  padding: 5px;
  background: linear-gradient(135deg, #0fffc1, #3f5efb, #fc466b);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(63, 94, 251, 0.3),
    inset 0 0 6px rgba(255, 255, 255, 0.1);
  outline: 2px solid rgba(255, 255, 255, 0.05);
  outline-offset: 3px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about__img img:hover {
  transform: scale(1.030);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.4),
    0 12px 32px rgba(63, 94, 251, 0.45),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
}

#about-para:hover{
 color: #39ff14;
}

/* For medium and larger screens */
@media screen and (min-width: 768px) {
  .about__container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }

  .about__img {
    flex: 1;
    max-width: 350px;
  }

  .about__img img {
   margin-top: 1rem;
  }
  .about__content {
    flex: 2;
  }
}
