/******************** ABOUT SECTION STYLES ********************/
.about {
    padding: 100px;
    background: #0f0f0f;
    animation: fadeIn 1.5s ease;
}

.about .title {
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: rgba(0, 255, 231, 0.05);
    border: 1px solid rgba(0, 255, 231, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 231, 0.2);
    border-color: #00ffe7;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #00ffe7, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 255, 231, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: #000;
}

.about-card h3 {
    color: #00ffe7;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.expertise-tag {
    background: rgba(0, 255, 231, 0.1);
    border: 1px solid #00ffe7;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #00ffe7;
    font-weight: 500;
}

.achievement-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.achievement-list li {
    color: #ccc;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.achievement-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffe7;
    font-weight: bold;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 255, 231, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.interest-item:hover {
    background: rgba(0, 255, 231, 0.2);
    transform: scale(1.05);
}

.interest-item i {
    color: #00ffe7;
    font-size: 1.2rem;
}

.interest-item span {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 50px 15px;
    }
    
    .about-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .expertise-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}