/* Custom Styles */
.hero-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #0066ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.skill-bar {
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
}

.nav-blur {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
}

.project-filter {
    transition: all 0.3s ease;
}

.project-filter.active {
    background: #0066ff;
    color: white;
}

.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.3);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.form-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.tech-tag {
    background: linear-gradient(135deg, #0066ff 0%, #8b5cf6 100%);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.stats-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #0066ff;
    border-radius: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1.5rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, #0066ff, transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

.glow-effect {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.code-block {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
}
