.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.profile-image {
    margin-bottom: 30px;
}

.profile-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    margin-bottom: 15px;
    color: #212529;
}

.about-content .lead {
    color: #6c757d;
    margin-bottom: 20px;
}

.social-links-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    font-size: 1.5rem;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #2c2c2c;
    transform: translateY(-2px);
}

.resume-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #2c2c2c;
}

.resume-btn:hover {
    background-color: transparent;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: #2c2c2c;
    margin: 1.5rem auto;
}

.magic-text {
    position: relative;
    font-weight: 500;
    background: linear-gradient(120deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 4px;
}

.magic-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #34495e, transparent);
    animation: shimmer 2s infinite;
}

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

@media (max-width: 991px) {
    .about-content {
        text-align: center;
        margin-top: 30px;
    }
}

/* Timeline Styles */
.timeline {
    border-left: 2px solid #2c2c2c;
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
}

.timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #2c2c2c;
    border-radius: 50%;
    position: absolute;
    left: -26px;
    top: 5px;
    transition: transform 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    background: #000;
}

.timeline-date {
    font-weight: bold;
    color: #2c2c2c;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-date {
    color: #000;
}

.timeline-content {
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid #e0e0e0;
}

/* Interests Section Styles */
.interests-section {
    margin-top: 50px;
}

.tab-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #2c2c2c #f0f0f0;
}

.tab-content::-webkit-scrollbar {
    width: 8px;
}

.tab-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.tab-content::-webkit-scrollbar-thumb {
    background-color: #2c2c2c;
    border-radius: 4px;
}

.tab-pane {
    padding: 20px 0;
}

.interest-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.nav-pills .nav-link {
    color: #495057;
    background-color: transparent;
    border: 1px solid #dee2e6;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: #2c2c2c;
    border-color: #2c2c2c;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f0f0f0;
    border-color: #2c2c2c;
}

.interest-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.interest-card:hover {
    transform: translateY(-5px);
    border-color: #2c2c2c;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.interest-card-header {
    margin-bottom: 15px;
}

.interest-card h4 {
    margin-bottom: 5px;
    color: #212529;
}

.genre-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #e9ecef;
    border-radius: 15px;
    font-size: 0.8em;
    color: #6c757d;
}

.interest-description {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 0;
}

/* Skills Section Styles */
.skills-list {
    list-style: none;
    padding: 0;
}

.skill-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.skill-name {
    font-weight: 500;
    color: #212529;
}

.skill-level {
    float: right;
    color: #2c2c2c;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9em;
}

.btn-primary {
    background-color: #2c2c2c;
    border-color: #2c2c2c;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}
