section {
    min-height: 100vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
  
.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* About Section */
.about {
    position: relative;
    text-align: center;
    background: transparent;
    padding: 80px 5%;
}
  
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.3s;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.image-decoration {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px solid var(--accent-alt);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.image-decoration:nth-child(2) {
    width: 320px;
    height: 320px;
    border-color: var(--accent);
    animation-delay: 3s;
    animation-direction: reverse;
}

@media (max-width: 768px) {
    .about-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .about-content {
      order: 1;
    }
  
    .about-image {
      order: 2;
      justify-content: center;
    }
  
    .about-title {
      text-align: center;
    }
  
    .about-text {
      text-align: center;
    }
  }