/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    background: #ffffff;
    padding: 80px 20px;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

/* Left Side - Image */
.about-image-section {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-wrapper:hover .profile-img {
    transform: scale(1.05);
}

/* Right Side - Content */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    background: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.8rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #667eea;
    font-weight: 600;
}
