/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-description {
    margin-bottom: 2rem;
    color: #888;
}

.feature-list-wrapper {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--back_color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-info .contact-label {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
}

.contact-info .contact-number {
    font-weight: 600;
    margin: 0;
}

.image-wrapper {
    position: relative;
}

.image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--back_color);
}

.image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--button_text_color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

.image-wrapper .experience-badge h3 {
    color: var(--button_text_color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Media Queries for About Section
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .about-title {
        font-size: 2rem;
    }
    
    .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
    
    .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
    
    .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .image-wrapper .main-image {
        margin-left: 0;
    }
    
    .section_about div.about {
        display: none;
    }
    
    .section_about .image-wrapper {
        margin: 0;
    }
}