/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a15;
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
    
}
video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

/* Aurora Background */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: 400% 400%;
    animation: aurora 15s ease infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.rounded-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #6e45e2, #89d4cf);
    filter: blur(20px);
    opacity: 0.7;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.glowing-text {
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(110, 69, 226, 0.7); }
    to { text-shadow: 0 0 15px rgba(137, 212, 207, 0.9), 0 0 20px rgba(110, 69, 226, 0.6); }
}

.highlight {
    color: #89d4cf;
    font-weight: 600;
}

.tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 1rem;
}

/* Section Styles */
section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(20, 20, 40, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #89d4cf;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h2 i {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-card {
    background: rgba(30, 30, 60, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.skill-icon {
    font-size: 2rem;
    color: #6e45e2;
    margin-bottom: 1rem;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #6e45e2, #89d4cf);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Contact Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #6e45e2, #89d4cf);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations for each section */
header.slide-up {
    animation-delay: 0.1s;
}

.about-section.slide-up {
    animation-delay: 0.3s;
}

.skills-section.slide-up {
    animation-delay: 0.5s;
}

.contact-section.slide-up {
    animation-delay: 0.7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}