body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1e293b;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.project-card {
    transition: transform 0.3s ease;
    background-color: #1e293b;
}

.project-card:hover {
    transform: translateY(-5px);
}

.skill-pill {
    transition: all 0.3s ease;
}

.skill-pill:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #8b5cf6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.active::after {
    width: 100%;
}

.brain-animation {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.glow {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.section-alt {
    background-color: #111827;
}

.profile-pic {
    background: linear-gradient(45deg, #4338ca, #8b5cf6);
    position: relative;
    overflow: hidden;
}

.profile-pic svg {
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #8b5cf6, #4338ca);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 10px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #8b5cf6;
    box-shadow: 0 0 8px #8b5cf6;
}

.skill-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #1e293b, #1a1f2e);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: #334155;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #8b5cf6, #4338ca);
    transition: width 1s ease-in-out;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.section-title {
    color: #f8fafc;
}

.date-badge {
    background-color: #312e81;
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.skill-tag {
    background-color: #312e81;
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.icon-color {
    color: #8b5cf6;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #4338ca);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca, #8b5cf6);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
}

.card-container {
    background-color: #1e293b;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.company-name {
    color: #8b5cf6;
    font-weight: 500;
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8b5cf6, transparent, #4338ca);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.glow-effect:hover::after {
    opacity: 0.4;
}
