body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 25%, #4d0099 50%, #6600cc 75%, #7700ff 100%);
    color: #FFFFFF;
    scroll-behavior: smooth;
    margin: 0;
    overflow-x: hidden;
}
        
.hero {
    background: linear-gradient(rgba(102, 0, 204, 0.7), rgba(51, 0, 102, 0.8)), url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
        
.floating {
    animation: floating 3s ease-in-out infinite;
}
        
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
        
.glow {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.7);
}
        
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(26, 0, 51, 0.8);
    backdrop-filter: blur(10px);
}
        
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}
        
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.2), transparent);
    transition: left 0.5s;
}
        
.project-card:hover::before {
    left: 100%;
}
        
.progress-bar {
    transition: width 1.5s ease-in-out;
}
        
.circuit-bg {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}
        
.circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 0, 204, 0.9), rgba(51, 0, 102, 0.9));
}
        
.pulse {
    animation: pulse 2s infinite;
}
        
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(147, 51, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(147, 51, 234, 0); }
}
        
.gradient-text {
    background: linear-gradient(to right, #a855f7, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
        
.nav-link {
    position: relative;
}
        
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #a855f7, #7c3aed);
    transition: width 0.3s ease;
}
        
.nav-link:hover::after {
    width: 100%;
}
        
.nav-link.active::after {
    width: 100%;
}
        
.tech-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    background: rgba(26, 0, 51, 0.8);
    backdrop-filter: blur(10px);
}
        
.tech-icon:hover {
    transform: scale(1.2);
    color: #a855f7;
}
        
.timeline-dot {
    position: relative;
}
        
.timeline-dot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #a855f7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;    
}
        
.timeline-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #a855f7, #7c3aed);
    left: 50%;
    transform: translateX(-50%);
}
        
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
        
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    opacity: 0.5;
}
        
@keyframes float-up {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}
        
.glass-effect {
    background: rgba(26, 0, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
}
        
.section-bg {
    background: rgba(26, 0, 51, 0.4);
    backdrop-filter: blur(5px);
}
        
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}
        
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
        
.parallax {
    transition: transform 0.5s ease-out;
}
        
.filter-btn {
    transition: all 0.3s ease;
}
        
.filter-btn.active {
    background: linear-gradient(to right, #a855f7, #7c3aed);
    color: white;
}
        
.testimonial-card {
    transition: transform 0.3s ease;
}
        
.testimonial-card:hover {
    transform: translateY(-5px);
}
        
.service-card {
    transition: all 0.3s ease;
}
        
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}
        
.blog-card {
    transition: all 0.3s ease;
}
        
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}
        
.counter {
    transition: all 0.5s ease;
}
        
.dark-mode {
    background: linear-gradient(135deg, #0a001a 0%, #1a0033 25%, #2d0052 50%, #400080 75%, #5500cc 100%);
}
        
.light-mode {
    background: linear-gradient(135deg, #f0e6ff 0%, #e6ccff 25%, #d9b3ff 50%, #cc99ff 75%, #bf80ff 100%);
    color: #1a0033;
}
        
.light-mode .glass-effect {
    background: rgba(255, 255, 255, 0.7);
    color: #1a0033;
}
        
.light-mode .text-gray-300 {
    color: #4a0080;
}
        
.light-mode .text-gray-400 {
    color: #6600cc;
}
        
.light-mode .gradient-text {
    background: linear-gradient(to right, #6600cc, #4d0099, #330066);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}