

.project-link {
    text-decoration: none;
}

/* Section Styling */
.section {
    margin-bottom: 25px;
    position: relative;
    padding: 0 10px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a2d4a;
}

.section-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 4px;
    line-height: 1.6;
}

/* Content List Styling */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.content-item {
    background: rgba(42, 45, 74, 0.4);
    padding: 20px 25px;
    border-left: 3px solid #6366f1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.content-item:hover {
    background: rgba(42, 45, 74, 0.6);
    border-left-color: #818cf8;
    transform: translateX(5px);
}

.content-item:hover::before {
    width: 100%;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 4px;
    color: #818cf8;
}

.item-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

.item-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 8px;
}

/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #6366f1;
    color: #818cf8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.view-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.view-more-btn:hover::after {
    transform: translateX(5px);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    align-items: stretch;
}

.project-block {
    background: rgba(42, 45, 74, 0.4);
    padding: 25px;
    border-top: 3px solid #8b5cf6;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-block:hover {
    background: rgba(42, 45, 74, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.project-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.project-tech {
    font-size: 0.85rem;
    color: #a78bfa;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Milestones Timeline */
.milestones-timeline {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
}

.milestone-item {
    position: relative;
    margin-bottom: 30px;
}

.milestone-item::before {
    content: '🚀';
    position: absolute;
    left: -33px;
    top: 0;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.6));
}

.milestone-date {
    font-size: 0.85rem;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 5px;
}

.milestone-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.milestone-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}