/* Profile Section */
.profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}
.profile-details {
    flex: 1;
    min-width: 20rem;
    background-color: var(--box);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: var(--gradient);
}
.profile-details .profile-name {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.profile-details .profile-name::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 3rem;
    height: 0.15rem;
    background: var(--primary);
}
.profile-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
}
.profile-info {
    list-style: none;
}
.profile-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.profile-info li:hover {
    transform: translateX(0.5rem);
}
.profile-info li i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.profile-info li:hover i {
    transform: scale(1.2);
}
.profile-info li a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 0.25rem;
}
.profile-info li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.profile-info li a:hover {
    color: var(--primary);
}
.profile-info li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* Statement Section */
.statement-section {
    background-color: var(--box);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.statement-section:hover {
    transform: translateY(-0.5rem);
}
.section-title {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}
.section-title i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
.section-title:hover i {
    transform: rotate(15deg);
}
.statement-text {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 2.5rem;
    letter-spacing: 0.02rem;
}
.statement-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.5;
    font-family: serif;
}
/* Certifications */
.certifications-section {
    background-color: var(--box);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.cert-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.cert-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    border: 0.1rem solid rgba(255, 255, 255, 0.05);
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--gradient);
}
.cert-card:hover {
    transform: translateY(-0.75rem) scale(1.03);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.cert-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.cert-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 0.1rem;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.cert-card:hover .cert-title::after {
    width: 100%;
}
.cert-score {
    display: inline-block;
    background: var(--gradient);
    color: var(--box);
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.cert-card:hover .cert-score {
    transform: scale(1.05);
}
.cert-provider {
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
}
.cert-provider i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.cert-card:hover .cert-provider i {
    transform: rotate(15deg);
}
.cert-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 0.125rem solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.25rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.cert-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}
.cert-btn:hover {
    color: var(--box);
}
.cert-btn:hover::before {
    width: 100%;
}
.cert-btn i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}
.cert-btn:hover i {
    transform: translateX(0.25rem);
}
/* Interests */
.interests-section {
    background-color: var(--box);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}
.interests-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.interest-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    border: 0.1rem solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.interest-card:hover {
    transform: translateY(-0.75rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}
.interest-icon {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all 0.5s ease;
    position: relative;
}
.interest-icon::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.1rem;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.interest-card:hover .interest-icon {
    transform: translateY(-0.5rem);
}
.interest-card:hover .interest-icon::after {
    width: 5rem;
}
.interest-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.interest-card:hover .interest-title {
    color: var(--primary);
}
.interest-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.interest-card:hover .interest-desc {
    opacity: 1;
}
/* Animations */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(2rem); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}
@keyframes fadeInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-2rem); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}
@keyframes fadeInRight {
    from { 
        opacity: 0; 
        transform: translateX(2rem); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}
@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-0.5rem); }
    100% { transform: translateY(0); }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}
.profile-section { 
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}
.statement-section { 
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}
.timeline-section { 
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.certifications-section { 
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
.interests-section { 
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}
.timeline-item {
    animation: fadeInLeft 0.6s ease forwards;
    opacity: 0;
}
.timeline-item:nth-child(1) { animation-delay: 0.8s; }
.timeline-item:nth-child(2) { animation-delay: 1s; }
.timeline-item:nth-child(3) { animation-delay: 1.2s; }
.cert-card {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}
.cert-card:nth-child(1) { animation-delay: 1s; }
.cert-card:nth-child(2) { animation-delay: 1.2s; }
.interest-card {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}
.interest-card:nth-child(1) { animation-delay: 1.2s; }
.interest-card:nth-child(2) { animation-delay: 1.3s; }
.interest-card:nth-child(3) { animation-delay: 1.4s; }
.interest-card:nth-child(4) { animation-delay: 1.5s; }
/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .profile-title {
        font-size: 1.2rem;
    }
    .statement-text {
        font-size: 1.1rem;
        padding-left: 2rem;
    }
    .cert-container, .interests-container {
        grid-template-columns: 1fr;
    }
    .profile-details::before {
    width: 0.25rem;
}
}
@media (max-width: 480px) {
    .profile-details, .statement-section, .timeline-section,
    .certifications-section, .interests-section {
        padding: 1.5rem;
    }
}