/*--------------------------------------------------------------
    # About Section
--------------------------------------------------------------*/

#passport {
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
}

#passport h3 {
    margin-bottom: 25px;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 25px;
    text-align: justify;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-list li:hover {
    padding-left: 5px;
    border-bottom-color: var(--accent-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--accent-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.info-list li:hover i {
    transform: rotate(90deg);
}

/*--------------------------------------------------------------
    # Illustration Styles
--------------------------------------------------------------*/
.illustration-container {
    padding: 20px;
    text-align: center;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    max-height: 250px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/*--------------------------------------------------------------
    # Skills Section
--------------------------------------------------------------*/
.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-info .skill {
    font-weight: 600;
    color: var(--heading-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.skill-info .val {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

#skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

#skills .progress-bar {
    height: 10px;
    transition: 1.5s ease-in-out;
    background-color: var(--accent-color);
    border-radius: 5px;
    position: relative;
}

#skills .progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/*--------------------------------------------------------------
    # Feature List
--------------------------------------------------------------*/
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 25px;
}

/*--------------------------------------------------------------
    # Achievements
--------------------------------------------------------------*/
.achievement-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.achievement-list li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.achievement-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

/*--------------------------------------------------------------
    # Philosophy
--------------------------------------------------------------*/
.philosophy-quote {
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 0 8px 8px 0;
    margin: 0;
    font-style: italic;
    position: relative;
}

.philosophy-quote:before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.05);
    font-family: Georgia, serif;
}

.philosophy-quote p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--heading-color);
}

/*--------------------------------------------------------------
    # CTA Section
--------------------------------------------------------------*/
.cta-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-button {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-img {
        max-height: 200px;
        margin-bottom: 30px;
    }
    
    .philosophy-quote {
        padding: 20px;
    }
    
    .achievement-list li {
        padding: 12px 15px;
    }
}
