/* Global overflow fix */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    padding-top: 80px; /* Account for fixed header */
}

/* Modern Header & Menu */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(30,41,59,0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.12);
    border-bottom: 1.5px solid rgba(100,255,218,0.08);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.header-text {
    flex: 1;
    position: relative;
}

.welcome-text {
    color: #64ffda;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
    opacity: 1;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.welcome-text.scrolled {
    transform: scale(0.95);
}

.menu-bar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid rgba(100, 255, 218, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(8px);
    min-width: 60px;
    min-height: 50px;
}

/* Menu toggle button - always visible */
.menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    width: 30px;
    height: 30px;
}

.menu-icon {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    position: relative;
}

.menu-icon .bar {
    display: block !important;
    width: 100%;
    height: 8px;
    background: #64ffda !important;
    border-radius: 3px;
    transition: all 0.3s ease;
    opacity: 1 !important;
    box-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
}

/* Mobile navigation menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    max-width: 350px;
    height: 100vh;
    background: rgba(30,41,59,0.97);
    box-shadow: -2px 0 24px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    transform: translateX(100%);
    visibility: hidden;
}
.mobile-nav.open {
    right: 0;
    transform: translateX(0);
    visibility: visible;
}
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(100,255,218,0.2);
}
.close-menu {
    background: none;
    border: none;
    color: #64ffda;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}
.close-menu:hover {
    color: #ffffff;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
}
.mobile-nav .nav-link {
    font-size: 1.2rem;
    color: #e0e7ef;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s;
}
.mobile-nav .nav-link.active,
.mobile-nav .nav-link:hover {
    color: #64ffda;
    background: rgba(100,255,218,0.08);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(ellipse at bottom, #1e293b 0%, #0f172a 40%, #020617 100%);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #64ffda, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fbbf24, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 90px, #a78bfa, transparent),
        radial-gradient(2px 2px at 240px 50px, #ffffff, transparent),
        radial-gradient(1px 1px at 280px 10px, #60a5fa, transparent),
        radial-gradient(1px 1px at 320px 70px, #ffffff, transparent),
        radial-gradient(2px 2px at 360px 40px, #f472b6, transparent),
        radial-gradient(1px 1px at 400px 80px, #ffffff, transparent),
        radial-gradient(1px 1px at 440px 20px, #34d399, transparent),
        radial-gradient(2px 2px at 480px 60px, #ffffff, transparent),
        radial-gradient(1px 1px at 520px 90px, #fbbf24, transparent),
        radial-gradient(1px 1px at 560px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 600px 70px, #64ffda, transparent);
    background-repeat: repeat;
    background-size: 650px 100px;
    pointer-events: none;
    z-index: -1;
    animation: starsMove 120s linear infinite;
}

@keyframes starsMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Shooting Stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #64ffda, transparent);
    border-radius: 50%;
    box-shadow: 0 0 6px #64ffda;
    animation: shootingStar 3s linear infinite;
    z-index: -1;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #64ffda, transparent);
    left: -300px;
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}

html {
    scroll-behavior: smooth;
}

/* Night Sky Elements */
.night-sky-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.constellation {
    position: absolute;
    width: 200px;
    height: 200px;
}

.constellation-1 {
    top: 10%;
    right: 10%;
    animation: constellationTwinkle 8s ease-in-out infinite;
}

.constellation-2 {
    bottom: 20%;
    left: 15%;
    animation: constellationTwinkle 10s ease-in-out infinite reverse;
}

.constellation .star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #64ffda;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
    animation: starTwinkle 3s ease-in-out infinite;
}

.constellation-1 .star:nth-child(1) { top: 20px; left: 50px; animation-delay: 0s; }
.constellation-1 .star:nth-child(2) { top: 80px; left: 30px; animation-delay: 0.5s; }
.constellation-1 .star:nth-child(3) { top: 120px; left: 80px; animation-delay: 1s; }
.constellation-1 .star:nth-child(4) { top: 60px; left: 120px; animation-delay: 1.5s; }
.constellation-1 .star:nth-child(5) { top: 40px; left: 90px; animation-delay: 2s; }

.constellation-2 .star:nth-child(1) { top: 30px; left: 40px; animation-delay: 0.2s; }
.constellation-2 .star:nth-child(2) { top: 70px; left: 70px; animation-delay: 0.7s; }
.constellation-2 .star:nth-child(3) { top: 100px; left: 20px; animation-delay: 1.2s; }
.constellation-2 .star:nth-child(4) { top: 50px; left: 100px; animation-delay: 1.7s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes constellationTwinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.moon {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #64ffda 0%, #0f172a 50%, #020617 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(248, 250, 252, 0.3), inset -5px -5px 10px rgba(0, 0, 0, 0.1);
    animation: moonGlow 6s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(248, 250, 252, 0.3), inset -5px -5px 10px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 0 50px rgba(248, 250, 252, 0.5), inset -5px -5px 10px rgba(0, 0, 0, 0.1); }
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: nebulaFloat 15s ease-in-out infinite;
}

.nebula-1 {
    top: 15%;
    right: 30%;
    width: 150px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(100, 255, 218, 0.2) 0%, rgba(100, 255, 218, 0.1) 50%, transparent 100%);
    animation-delay: 0s;
}

.nebula-2 {
    bottom: 25%;
    right: 60%;
    width: 120px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.1) 50%, transparent 100%);
    animation-delay: 3s;
}

@keyframes nebulaFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    33% { transform: translateY(-10px) scale(1.1); opacity: 0.5; }
    66% { transform: translateY(5px) scale(0.9); opacity: 0.4; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(30,41,59,0.97) 0%, rgba(15,23,42,0.97) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #64ffda 25%, 
        #ffffff 50%, 
        #a78bfa 75%, 
        transparent 100%
    );
    animation: navGradientShift 8s ease-in-out infinite;
}

@keyframes navGradientShift {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    text-decoration: none;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-shadow: none;
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64ffda;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: none;
    filter: none;
}

.nav-link:hover {
    color: #6c63ff;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>'),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    background-size: cover, 400px 400px, 300px 300px;
    animation: heroBackgroundFloat 25s ease-in-out infinite;
}

@keyframes heroBackgroundFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    33% {
        transform: translateX(20px) translateY(-15px);
    }
    66% {
        transform: translateX(-15px) translateY(10px);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    color: #64ffda;
    text-shadow: none;
    filter: none;
}

.highlight {
    color: #ffffff;
    text-shadow: none;
    filter: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: #64ffda;
    text-shadow: none;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: #e0e7ef;
    text-shadow: none;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    display: inline-block;
    cursor: pointer;
    background: linear-gradient(90deg, #64ffda 0%, #6c63ff 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(100,255,218,0.18);
    backdrop-filter: blur(8px);
}

.btn-primary {
    background: linear-gradient(90deg, #64ffda 0%, #6c63ff 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #6c63ff 0%, #64ffda 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(108,99,255,0.18);
    transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
    background: rgba(30,41,59,0.85);
    color: #64ffda;
    border: 2px solid #64ffda;
    box-shadow: 0 2px 8px rgba(100,255,218,0.12);
}

.btn-secondary:hover {
    background: linear-gradient(90deg, #6c63ff 0%, #64ffda 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(108,99,255,0.18);
    transform: translateY(-2px) scale(1.04);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.profile-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #64ffda;
    position: relative;
    text-shadow: none;
    filter: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #6c63ff;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(108,99,255,0.03)" cx="200" cy="200" r="100"/><circle fill="rgba(108,99,255,0.05)" cx="800" cy="300" r="150"/><circle fill="rgba(108,99,255,0.02)" cx="500" cy="800" r="200"/></svg>');
    background-size: cover;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(69, 183, 209, 0.04) 0%, transparent 50%);
    animation: aboutBgShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aboutBgShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.7;
    }
    33% { 
        transform: translateX(-20px) translateY(-10px) scale(1.05);
        opacity: 0.9;
    }
    66% { 
        transform: translateX(15px) translateY(20px) scale(0.95);
        opacity: 0.8;
    }
}

.about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    width: 100%;
    margin-bottom: 3rem;
}

.about-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(100, 255, 218, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    max-width: 100%;
    margin: 0 auto;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #006a4e, #6c63ff);
    border-radius: 25px 25px 0 0;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.05), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(108, 99, 255, 0.1);
}

.about-card:hover::after {
    width: 500px;
    height: 500px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64ffda, #a78bfa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #020617;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3), 0 0 20px rgba(100, 255, 218, 0.2);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

.about-header h3 {
    font-size: 1.8rem;
    color: #64ffda;
    margin: 0;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    text-shadow: none;
    filter: none;
}

.about-header h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c63ff, #ff6b6b, #45b7d1);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.about-card:hover .about-header h3::before {
    width: 100%;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

.about-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-card:hover p {
    color: #64ffda;
}

.passion-tags {
    margin-top: 2.5rem;
}

.passion-tags h4 {
    font-size: 1.4rem;
    color: #64ffda;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.passion-tags h4::before {
    content: '💫';
    font-size: 1.3rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.passion-tag {
    background: linear-gradient(135deg, #64ffda, #a78bfa);
    color: #020617;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.passion-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.passion-tag:hover::before {
    left: 100%;
}

.passion-tag:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.35);
    background: linear-gradient(135deg, #ff6b6b, #6c63ff);
}

.passion-tag i {
    animation: tagIconSpin 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.passion-tag:hover i {
    transform: scale(1.2);
}

@keyframes tagIconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    min-width: 150px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, rgba(108, 99, 255, 0.08), rgba(255, 107, 107, 0.08), rgba(69, 183, 209, 0.08), rgba(108, 99, 255, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: statBorderRotate 8s linear infinite;
}

@keyframes statBorderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(108, 99, 255, 0.1);
}

.stat:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #64ffda, #a78bfa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #020617;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.25), 0 0 20px rgba(100, 255, 218, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat:hover .stat-icon {
    background: linear-gradient(135deg, #ff6b6b, #6c63ff);
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.35);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64ffda;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-decoration {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(108, 99, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    filter: brightness(1) saturate(1);
    border: 3px solid transparent;
    background: linear-gradient(#f8f9fa, #f8f9fa) padding-box,
                linear-gradient(135deg, #6c63ff, #ff6b6b, #45b7d1, #ffd700) border-box;
}

.about-image:hover img {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(108, 99, 255, 0.2);
    filter: brightness(1.05) saturate(1.1);
}

.image-decoration::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.1) 0%,
        rgba(255, 107, 107, 0.1) 25%,
        rgba(69, 183, 209, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 75%,
        rgba(108, 99, 255, 0.1) 100%
    );
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
    animation: subtleGlow 8s ease-in-out infinite;
}

.image-decoration:hover::before {
    opacity: 0.6;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

@keyframes subtleGlow {
    0%, 100% { 
        transform: scale(1);
        filter: blur(15px);
    }
    50% { 
        transform: scale(1.02);
        filter: blur(20px);
    }
}

.image-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -2;
}

/* About Section Decorative Particles */
.decorative-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #6c63ff, #ff6b6b);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #6c63ff, #5a52d5);
}

.particle-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
}

.particle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(45deg, #45b7d1, #4ecdc4);
}

.particle-4 {
    top: 40%;
    right: 5%;
    animation-delay: 6s;
    background: linear-gradient(45deg, #ffd700, #ff9500);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.9;
    }
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    color: #e2e8f0;
    padding: 2rem;
    border-radius: 0 0 25px 25px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

.image-decoration:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.overlay-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: radial-gradient(ellipse at bottom, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

/* Skills Background Decoration */
.skills-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.skill-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05), transparent);
    animation: skillOrbFloat 15s ease-in-out infinite;
}

.skill-orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.skill-orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05), transparent);
}

.skill-orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(69, 183, 209, 0.1), rgba(69, 183, 209, 0.05), transparent);
}

@keyframes skillOrbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.skill-category {
    background: linear-gradient(135deg, rgba(30,41,59,0.97) 0%, rgba(15,23,42,0.97) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #5a52d5, #2a5298);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #64ffda;
    text-align: center;
    position: relative;
    text-shadow: none;
    filter: none;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #6c63ff;
    transition: width 0.3s ease;
}

.skill-category:hover h3::after {
    width: 60px;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(30,41,59,0.97) 0%, rgba(15,23,42,0.97) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.skill-item:hover::before {
    width: 200px;
    height: 200px;
}

.skill-item:hover {
    background: #6c63ff;
    color: #e2e8f0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.skill-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #6c63ff;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.skill-item:hover i {
    color: #e2e8f0;
    transform: scale(1.2) rotate(360deg);
}

.skill-item span {
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
    color: #64ffda;
}

.skill-item:hover span {
    font-weight: 600;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

/* Projects Background Decoration */
.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-code {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: rgba(108, 99, 255, 0.15);
    font-family: 'Courier New', monospace;
    animation: codeFloat 12s ease-in-out infinite;
}

.floating-code-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-code-2 {
    top: 25%;
    right: 15%;
    animation-delay: 3s;
    color: rgba(255, 107, 107, 0.15);
}

.floating-code-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    color: rgba(69, 183, 209, 0.15);
}

.floating-code-4 {
    top: 60%;
    right: 10%;
    animation-delay: 9s;
    color: rgba(255, 215, 0, 0.15);
}

@keyframes codeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

.tech-constellation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tech-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6c63ff;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.tech-star-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.tech-star-2 {
    top: 40%;
    right: 40%;
    animation-delay: 0.6s;
}

.tech-star-3 {
    bottom: 35%;
    left: 60%;
    animation-delay: 1.2s;
}

.tech-star-4 {
    top: 70%;
    left: 25%;
    animation-delay: 1.8s;
}

.tech-star-5 {
    bottom: 20%;
    right: 30%;
    animation-delay: 2.4s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-content: center;
}


.project-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(100, 255, 218, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

/* Cybersecurity Project Theme */
.project-card.cyber {
    background: linear-gradient(135deg, #232526, #414345);
    box-shadow: 0 0 30px rgba(76, 220, 196, 0.2);
    border: 2px solid #4ecdc4;
}
.project-card.cyber .project-content h3 {
    color: #4ecdc4;
}
.project-card.cyber .project-content p {
    color: #e0e0e0;
}
.project-card.cyber .project-image::after {
    background: linear-gradient(45deg, rgba(76, 220, 196, 0.2), rgba(42, 82, 152, 0.1));
}

/* Entrepreneur Project Theme */
.project-card.entrepreneur {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
}
.project-card.entrepreneur .project-content h3 {
    color: #ff6b6b;
}
.project-card.entrepreneur .project-content p {
    color: #333;
}
.project-card.entrepreneur .project-image::after {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.1));
}

/* Peace Project Theme */
.project-card.peace {
    background: linear-gradient(135deg, #45b7d1, #6c63ff);
    box-shadow: 0 0 30px rgba(69, 183, 209, 0.2);
    border: 2px solid #45b7d1;
}
.project-card.peace .project-content h3 {
    color: #6c63ff;
}
.project-card.peace .project-content p {
    color: #333;
}
.project-card.peace .project-image::after {
    background: linear-gradient(45deg, rgba(69, 183, 209, 0.2), rgba(108, 99, 255, 0.1));
}

/* Add animated icon overlays for each theme */
.project-card.cyber .project-image::before {
    content: '\f3ed'; /* FontAwesome shield-alt */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #4ecdc4;
    opacity: 0.15;
    z-index: 2;
}
.project-card.entrepreneur .project-image::before {
    content: '\f0b1'; /* FontAwesome briefcase */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #ffd700;
    opacity: 0.15;
    z-index: 2;
    animation: entrepreneurBounce 2s infinite;
}
@keyframes entrepreneurBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-card.peace .project-image::before {
    content: '\f4fc'; /* FontAwesome dove */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #45b7d1;
    opacity: 0.15;
    z-index: 2;
    animation: peaceFloat 3s infinite;
}
@keyframes peaceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    border-color: #6c63ff;
}
.project-card.cyber:hover {
    box-shadow: 0 0 50px rgba(76, 220, 196, 0.4);
    border-color: #4ecdc4;
}
.project-card.entrepreneur:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}
.project-card.peace:hover {
    box-shadow: 0 0 50px rgba(69, 183, 209, 0.4);
    border-color: #45b7d1;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.1), rgba(42, 82, 152, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-image img,
.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 99, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: #1a202e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64ffda;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 2px solid #64ffda;
    position: relative;
    z-index: 11;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #64ffda;
    text-shadow: none;
}

.project-content p {
    color: #e0e7ef;
    margin-bottom: 1.5rem;
    text-shadow: none;
    line-height: 1.7;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #e9ecef;
    color: #6c63ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mystery Project Styles */
.mystery-project {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border: 2px solid #6c63ff;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
}

.mystery-project .project-overlay {
    background: rgba(15, 34, 64, 0.92);
    backdrop-filter: blur(6px);
}

.mystery-overlay {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mystery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.2), transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.mystery-content {
    text-align: center;
    color: #e2e8f0;
    z-index: 1;
    position: relative;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c63ff;
    animation: loading 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.mystery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.mystery-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.mystery-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mystery-icons i {
    font-size: 1.5rem;
    color: #6c63ff;
    animation: float 3s ease-in-out infinite;
}

.mystery-icons i:nth-child(2) {
    animation-delay: 0.5s;
}

.mystery-icons i:nth-child(3) {
    animation-delay: 1s;
}

.mystery-icons i:nth-child(4) {
    animation-delay: 1.5s;
}

.mystery-project .project-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #e2e8f0;
}

.mystery-project .project-content h3 {
    color: #ffd700;
}

.mystery-project .project-content p {
    color: #e0e0e0;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.mystery-tag {
    background: linear-gradient(135deg, #6c63ff, #5a52d5) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    text-align: center;
}

.coming-soon p {
    margin: 0;
    font-weight: 600;
    color: #ffd700;
}

.countdown {
    color: #6c63ff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

/* Experience Background Decoration */
.experience-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.timeline-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.timeline-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(108, 99, 255, 0.2);
    animation: timelineCircleGrow 10s ease-in-out infinite;
}

.timeline-circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.timeline-circle-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 15%;
    animation-delay: 3s;
    border-color: rgba(255, 107, 107, 0.2);
}

.timeline-circle-3 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    border-color: rgba(69, 183, 209, 0.2);
}

@keyframes timelineCircleGrow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.experience-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wave {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(108, 99, 255, 0.1);
    animation: waveExpand 8s ease-out infinite;
}

.wave-1 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.wave-2 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.wave-3 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes waveExpand {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(2);
        opacity: 0;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #6c63ff, #4ecdc4, #ff6b6b);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 5px rgba(108, 99, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(108, 99, 255, 0.8); }
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    animation: timelineSlideIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

@keyframes timelineSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #1e293b;
    border: 4px solid #6c63ff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-item.highlight::after {
    border-color: #64ffda;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
}

.timeline-content {
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(108, 99, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease;
    .timeline-item.highlight .timeline-content {
        border: 1px solid rgba(100, 255, 218, 0.5);
        box-shadow: 0 25px 45px rgba(100, 255, 218, 0.25), 0 0 25px rgba(100, 255, 218, 0.2);
    }

    .timeline-highlights {
        list-style: none;
        margin: 1.25rem 0 0;
        padding: 0;
        display: grid;
        gap: 0.75rem;
    }

    .timeline-highlights li {
        position: relative;
        padding-left: 1.6rem;
        color: #e2e8f0;
        line-height: 1.6;
    }

    .timeline-highlights li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0.15rem;
        color: #64ffda;
    }

}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.timeline-date {
    font-size: 0.9rem;
    color: #6c63ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #64ffda;
    text-shadow: none;
}

.timeline-content p {
    color: #e0e7ef;
    line-height: 1.6;
    text-shadow: none;
}

.testanix-logo {
    object-fit: contain !important;
    padding: 1.5rem;
    background: radial-gradient(circle at center, rgba(108, 99, 255, 0.25), transparent 60%);
    border-radius: 12px 12px 0 0;
}

.inline-link {
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

.project-highlights {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
}

.project-highlights h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #ffd700;
    letter-spacing: 0.02em;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.project-highlights li {
    position: relative;
    padding-left: 1.5rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.project-highlights li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #64ffda;
}

.project-links {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, #64ffda, #5eead4);
    color: #0f172a;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(94, 234, 212, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(94, 234, 212, 0.35);
}

.project-cta i {
    font-size: 1rem;
}

.project-status {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
    font-weight: 500;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: radial-gradient(ellipse at bottom, #1e293b 0%, #0f172a 50%, #020617 100%);
    position: relative;
    overflow: hidden;
}

/* Certifications Background Decoration */
.certifications-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.achievement-burst {
    position: absolute;
    width: 100px;
    height: 100px;
}

.achievement-burst-1 {
    top: 20%;
    left: 15%;
    animation: burstRotate 15s linear infinite;
}

.achievement-burst-2 {
    bottom: 30%;
    right: 10%;
    animation: burstRotate 15s linear infinite reverse;
}

.burst-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: linear-gradient(to top, transparent, rgba(255, 215, 0, 0.6), transparent);
    transform-origin: bottom;
}

.burst-ray:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.burst-ray:nth-child(2) { transform: translate(-50%, -100%) rotate(60deg); }
.burst-ray:nth-child(3) { transform: translate(-50%, -100%) rotate(120deg); }
.burst-ray:nth-child(4) { transform: translate(-50%, -100%) rotate(180deg); }
.burst-ray:nth-child(5) { transform: translate(-50%, -100%) rotate(240deg); }
.burst-ray:nth-child(6) { transform: translate(-50%, -100%) rotate(300deg); }

@keyframes burstRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-medals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.medal {
    position: absolute;
    font-size: 2rem;
    animation: medalFloat 12s ease-in-out infinite;
}

.medal-1 {
    top: 25%;
    right: 20%;
    animation-delay: 0s;
}

.medal-2 {
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

.medal-3 {
    bottom: 20%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes medalFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 1;
    }
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(100, 255, 218, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(100, 255, 218, 0.2);
    background-clip: padding-box;
    backdrop-filter: blur(10px);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, #6c63ff, #ff6b6b, #4ecdc4, #45b7d1, #6c63ff);
    border-radius: 22px;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c63ff, #5a52d5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotateGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card:hover .cert-icon::before {
    opacity: 1;
}

.cert-card:hover .cert-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #ff6b6b, #6c63ff);
}

.cert-icon i {
    font-size: 2rem;
    color: #020617;
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #64ffda;
    text-shadow: none;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Contact Background Decoration */
.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.communication-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.comm-wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: commWaveExpand 6s ease-out infinite;
}

.comm-wave-1 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.comm-wave-2 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.comm-wave-3 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

@keyframes commWaveExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-particle {
    position: absolute;
    font-size: 1.5rem;
    animation: contactParticleFloat 10s ease-in-out infinite;
}

.contact-particle-1 {
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.contact-particle-2 {
    top: 60%;
    left: 10%;
    animation-delay: 2.5s;
}

.contact-particle-3 {
    bottom: 25%;
    right: 25%;
    animation-delay: 5s;
}

.contact-particle-4 {
    top: 40%;
    left: 80%;
    animation-delay: 7.5s;
}

@keyframes contactParticleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(360deg);
        opacity: 1;
    }
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: #ffd700;
}

.contact-content-single {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-center {
    text-align: center;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.1);
}

.contact-info-center h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #64ffda;
    text-shadow: none;
    filter: none;
}

.contact-info-center p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.contact-items {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-item i {
    width: 20px;
    color: #ffd700;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 60px;
    height: 60px;
    background: #ffd700;
    color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: #64ffda;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

/* Footer */
.footer {
    background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #6c63ff 0%, 
        #ff6b6b 25%, 
        #45b7d1 50%, 
        #ffd700 75%, 
        #6c63ff 100%
    );
    animation: footerGradientMove 6s ease-in-out infinite;
}

@keyframes footerGradientMove {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(248, 249, 250, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-text {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .about-card {
        padding: 2rem;
        margin: 0 auto;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        max-width: 100%;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .contact-content-single {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-info-center {
        padding: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline responsive */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 22px;
        background-color: #f8f9fa;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
}
