/* Base container styles */
.profile-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Layout styling */
.profile-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Profile image styling */
.profile-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.03);
}

/* Profile content styling */
.profile-content {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.section-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.content-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.profile-section {
    margin-bottom: 30px;
}

/* Animation keyframes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.reveal-element {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-element.animated {
    opacity: 1;
}

[data-animation="fadeInLeft"] {
    transform: translateX(-30px);
}

[data-animation="fadeInLeft"].animated {
    animation: fadeInLeft 0.8s forwards;
}

[data-animation="fadeInRight"] {
    transform: translateX(30px);
}

[data-animation="fadeInRight"].animated {
    animation: fadeInRight 0.8s forwards;
}

/* Responsive design */
@media (max-width: 992px) {
    .profile-layout {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .profile-layout {
        flex-direction: column;
    }

    .profile-image,
    .profile-content {
        width: 100%;
    }

    .profile-content {
        padding: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
