/* === About Section === */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
    border: 5px solid var(--white);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.about-text .intro {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* === Mobile Optimizations === */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-wrapper {
        order: -1;
    }

    .experience-badge {
        bottom: 10px;
        right: 10px;
        width: 110px;
        height: 110px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-image img {
        height: 350px;
    }

    .about-text .intro {
        font-size: 1.05rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .about-image img {
        height: 280px;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        bottom: 5px;
        right: 5px;
        padding: 0.75rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.65rem;
        margin-top: 0.15rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-image-wrapper {
        position: relative;
        margin-bottom: 1rem;
    }

    .about-image img {
        height: 250px;
    }

    .about-text .intro {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: 0;
        right: 0;
    }

    .experience-badge .years {
        font-size: 1.3rem;
    }
}