/* ==================== CSS RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk Color Palette */
    --cyber-black: #0a0e14;
    --cyber-dark: #0d1117;
    --cyber-darker: #010409;
    --neon-pink: #ff006e;
    --neon-cyan: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0080ff;
    --neon-green: #00ff9f;
    --neon-yellow: #ffff00;
    --neon-orange: #ff3d00;
    --electric-pink: #ff1744;
    --electric-blue: #00e5ff;
    --text-color: #e0e7ff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --white: #ffffff;
    
    /* Cyberpunk Gradients */
    --gradient-cyber: linear-gradient(135deg, #ff006e 0%, #bf00ff 50%, #00f5ff 100%);
    --gradient-neon: linear-gradient(135deg, #00f5ff 0%, #0080ff 50%, #bf00ff 100%);
    --gradient-electric: linear-gradient(135deg, #ff1744 0%, #ff006e 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e14 0%, #0d1117 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(191, 0, 255, 0.2) 100%);
    
    /* Enhanced Shadows & Glows */
    --shadow-cyan: 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.3);
    --shadow-pink: 0 0 20px rgba(255, 0, 110, 0.6), 0 0 40px rgba(255, 0, 110, 0.3);
    --shadow-purple: 0 0 20px rgba(191, 0, 255, 0.6), 0 0 40px rgba(191, 0, 255, 0.3);
    --shadow-multi: 0 0 10px rgba(0, 245, 255, 0.5), 0 0 20px rgba(255, 0, 110, 0.3), 0 0 30px rgba(191, 0, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 245, 255, 0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Rajdhani', 'Orbitron', 'Segoe UI', sans-serif;
    background-color: var(--cyber-black);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Cyberpunk Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.05) 2px, transparent 2px),
        linear-gradient(rgba(255, 0, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 110, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    pointer-events: none;
    z-index: 0;
    animation: gridScroll 20s linear infinite;
}

/* Glowing Orbs Background */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(191, 0, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 15s ease-in-out infinite;
}

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

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

body > * {
    position: relative;
    z-index: 1;
}

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

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-neon) 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 245, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.4);
    animation: glitchText 5s infinite;
    font-family: 'Orbitron', sans-serif;
}

@keyframes glitchText {
    0%, 90%, 100% { text-shadow: 0 0 20px rgba(0, 245, 255, 0.8), 0 0 40px rgba(0, 245, 255, 0.4); }
    91% { text-shadow: 2px 0 20px rgba(255, 0, 110, 0.8), -2px 0 40px rgba(191, 0, 255, 0.4); }
    93% { text-shadow: -2px 0 20px rgba(0, 245, 255, 0.8), 2px 0 40px rgba(255, 0, 110, 0.4); }
    95% { text-shadow: 0 0 20px rgba(0, 245, 255, 0.8), 0 0 40px rgba(0, 245, 255, 0.4); }
}

.logo span {
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8),
                 0 0 40px rgba(255, 0, 110, 0.4);
}

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

.nav-menu a {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-neon);
    transition: var(--transition);
    box-shadow: var(--shadow-cyan);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    transition: var(--transition);
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: var(--white);
    box-shadow: var(--shadow-pink);
    border: 2px solid var(--neon-pink);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8),
                0 0 60px rgba(255, 0, 110, 0.4),
                inset 0 0 20px rgba(255, 0, 110, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--neon-cyan);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.1);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.btn-secondary::after {
    background: var(--gradient-neon);
    opacity: 0.1;
}

.btn-secondary:hover::after {
    opacity: 0.2;
}

.btn-full {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 8rem 0 6rem;
    background: var(--gradient-dark);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.8))
                drop-shadow(0 0 30px rgba(255, 0, 110, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 245, 255, 1))
                drop-shadow(0 0 50px rgba(255, 0, 110, 0.7));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
    letter-spacing: 1px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-tag {
    background: rgba(0, 245, 255, 0.05);
    color: var(--neon-cyan);
    padding: 0.6rem 1.3rem;
    border-radius: 0;
    font-size: 0.9rem;
    border: 2px solid var(--neon-cyan);
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0.2;
    transition: var(--transition);
}

.hero-tag:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5),
                inset 0 0 20px rgba(0, 245, 255, 0.1);
    transform: translateY(-2px);
}

.hero-tag:hover::before {
    left: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.hero-cta-text {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 380px;
    height: 380px;
    background: var(--gradient-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-multi);
    border: 3px solid var(--neon-cyan);
    position: relative;
    overflow: hidden;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        rgba(0, 245, 255, 0.3) 90deg 180deg,
        transparent 180deg 270deg,
        rgba(255, 0, 110, 0.3) 270deg 360deg
    );
    animation: rotateBorder 4s linear infinite;
}

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

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--cyber-dark);
    clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--neon-cyan);
    z-index: 1;
    text-shadow: var(--shadow-cyan);
    animation: float 3s ease-in-out infinite;
}

/* Profile Picture Styling */
.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

/* Fallback when image doesn't load */
.image-placeholder:has(.profile-pic[src=""]) i,
.image-placeholder:has(.profile-pic:not([src*="."])) i {
    display: block;
}

.image-placeholder:has(.profile-pic[src*="."]) i {
    display: none;
}

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

.hero-cta-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.0625rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--neon-cyan);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--neon-cyan);
    z-index: 1;
}
    z-index: 1;
    opacity: 0.1;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-title::after {
    display: none;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--primary-color);
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-enhanced h3 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-enhanced strong {
    color: var(--white);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-img-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary-color);
    position: relative;
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-item i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.about-img-item p {
    color: var(--text-secondary);
    text-align: center;
}

/* ==================== TECH QUOTES ==================== */
.tech-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--secondary-color);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tech-quote i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.tech-quote blockquote {
    font-size: 1.25rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.tech-quote-large blockquote {
    font-size: 1.5rem !important;
}

.tech-quote .quote-author {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* ==================== PHILOSOPHY SECTION ==================== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--text-secondary);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    position: relative;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4),
                inset 0 0 20px rgba(0, 245, 255, 0.1);
}

.philosophy-icon i {
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8),
                 0 0 30px rgba(0, 245, 255, 0.5);
    z-index: 1;
}

.philosophy-card:hover .philosophy-icon {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6),
                inset 0 0 20px rgba(255, 0, 110, 0.1);
}

.philosophy-card:hover .philosophy-icon i {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8),
                 0 0 30px rgba(255, 0, 110, 0.5);
}

.philosophy-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ==================== TIMELINE ENHANCEMENTS ==================== */
.timeline-company-logo {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.timeline-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 4px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tags span {
    background: rgba(0, 245, 255, 0.05);
    color: var(--neon-cyan);
    padding: 0.4rem 0.9rem;
    border-radius: 0;
    font-size: 0.8125rem;
    border: 2px solid var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.tech-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0.1;
    transition: var(--transition);
}

.tech-tags span:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4),
                inset 0 0 20px rgba(0, 245, 255, 0.05);
    transform: translateY(-2px);
}

.tech-tags span:hover::before {
    left: 0;
    opacity: 0.2;
}

/* ==================== SKILLS SECTION ==================== */
.skills {
    background: var(--primary-color);
}

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

.skill-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    display: none;
}

.skill-card:hover::before {
    display: none;
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--text-secondary);
}

.skill-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8),
                 0 0 30px rgba(0, 245, 255, 0.5);
}

.skill-card:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8),
                 0 0 30px rgba(255, 0, 110, 0.5);
}

.skill-card h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-card p {
    color: var(--text-secondary);
}

/* ==================== TIMELINE ==================== */
.experience-highlight {
    background: var(--secondary-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(0, 212, 255, 0.2);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px var(--primary-color);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

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

.timeline-content {
    width: 45%;
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content h4 {
    color: var(--neon-cyan);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-content .date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ==================== ACHIEVEMENTS ==================== */
.achievements {
    background: var(--primary-color);
}

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

.achievement-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.achievement-card::after {
    display: none;
}

.achievement-card:hover::after {
    display: none;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--text-secondary);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8),
                 0 0 30px rgba(0, 245, 255, 0.5);
}

.achievement-card:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8),
                 0 0 30px rgba(255, 0, 110, 0.5);
}

.achievement-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-secondary);
}

/* ==================== BLOGS SECTION ==================== */
.blogs-section {
    background: var(--primary-color);
    padding: 6rem 0;
}

/* Blog Detail Page */
.blog-detail-section {
    background: var(--primary-color);
    padding: 6rem 0;
    min-height: 100vh;
}

.blog-detail-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--white);
    transform: translateX(-4px);
}

.blog-category-badge {
    display: inline-block;
    background: var(--neon-cyan);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.blog-detail-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -1px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.blog-detail-meta i {
    color: var(--neon-cyan);
    margin-right: 0.5rem;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--primary-color);
    padding: 0;
    border-radius: 0;
    border: none;
}

.blog-detail-content h2 {
    color: var(--white);
    font-size: 1.875rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-detail-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-detail-content pre {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.blog-detail-content code {
    color: var(--neon-cyan);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 0.9375rem;
}

.blog-detail-tags {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-detail-tags h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.blog-tag {
    background: var(--neon-cyan);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-weight: 500;
}

.blog-navigation {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-content {
        padding: 0;
    }
    
    .blog-navigation {
        flex-direction: column;
    }
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--secondary-color);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9375rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-cyan);
    color: var(--white);
    border-color: var(--neon-cyan);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--text-secondary);
}

.blog-image {
    position: relative;
    height: 200px;
    background: var(--gradient-dark);
    border-bottom: 2px solid var(--neon-cyan);
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image-placeholder i {
    font-size: 4rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.5);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}
    opacity: 0.5;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-cyan);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-read-more {
    color: var(--text-secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.blog-read-more:hover {
    color: var(--white);
}

.newsletter-section {
    margin-top: 4rem;
}

.newsletter-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.newsletter-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.5);
}

.newsletter-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9375rem;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.newsletter-form button {
    transition: var(--transition);
}

.newsletter-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.newsletter-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success {
    background: rgba(59, 130, 246, 0.1);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background: var(--primary-color);
    padding: 6rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.gallery-image {
    position: relative;
    height: 300px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder::before {
    opacity: 1;
}

.gallery-placeholder i {
    font-size: 5rem;
    color: var(--neon-cyan);
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-info {
    text-align: center;
    padding: 1rem;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.story-section,
.quote-section {
    margin-top: 4rem;
}

.story-card,
.quote-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.story-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.story-icon i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
}

.story-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.story-card p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-card {
    text-align: center;
}

.quote-card i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.quote-card blockquote {
    font-size: 1.25rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.quote-author {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    background: var(--secondary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.lightbox-close:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.lightbox-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.lightbox-image {
    width: 100%;
    height: 400px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.lightbox-image i {
    font-size: 4rem;
    color: var(--neon-cyan);
    opacity: 0.5;
}

.lightbox-info {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.lightbox-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lightbox-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--neon-cyan);
}

.lightbox-story {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lightbox-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.story-tag {
    background: var(--neon-cyan);
    color: var(--text-secondary);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-weight: 500;
}

.read-story-btn {
    background: var(--neon-cyan);
    color: var(--white);
    border: 1px solid var(--neon-cyan);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 0.75rem;
}

.read-story-btn:hover {
    background: var(--neon-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ==================== RESUME SECTION ==================== */
.resume-section {
    background: var(--primary-color);
    padding: 6rem 0;
}

.resume-header {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resume-actions {
    margin-left: 2rem;
    flex-shrink: 0;
}

.resume-profile {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4),
                0 0 40px rgba(0, 245, 255, 0.2);
    border: 3px solid var(--neon-cyan);
    overflow: hidden;
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        rgba(0, 245, 255, 0.2) 90deg 180deg,
        transparent 180deg 270deg,
        rgba(255, 0, 110, 0.2) 270deg 360deg
    );
    animation: rotateBorder 4s linear infinite;
}

.profile-image i {
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
    z-index: 1;
}

.resume-profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.profile-info h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.profile-info h2 {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-info span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--neon-cyan);
}

.resume-section-content {
    margin-bottom: 3rem;
}

.resume-section-title {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.resume-section-title i {
    color: var(--neon-cyan);
}

.resume-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.resume-box p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.skills-category {
    margin-bottom: 1.5rem;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: rgba(0, 245, 255, 0.05);
    color: var(--neon-cyan);
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    font-size: 0.875rem;
    border: 2px solid var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0.1;
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4),
                inset 0 0 20px rgba(0, 245, 255, 0.05);
    transform: translateY(-2px);
}

.skill-tag:hover::before {
    left: 0;
    opacity: 0.2;
}

.experience-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-header h4 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 500;
}

.date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    white-space: nowrap;
}

.experience-list {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.experience-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    padding-left: 1rem;
}

.tech-stack {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-style: italic;
}

.achievements-list {
    list-style-position: inside;
}

.achievements-list li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    padding-left: 1rem;
}

.achievements-list strong {
    color: var(--white);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--primary-color);
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container h2,
.contact-info-card h2 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-info-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.info-item h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-item p,
.info-item a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.social-connect h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 0;
    transition: var(--transition);
    border: 2px solid var(--neon-cyan);
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0.1;
    transition: var(--transition);
    z-index: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5),
                0 0 40px rgba(0, 245, 255, 0.2);
    border-color: var(--neon-pink);
}

.social-link:hover::before {
    left: 0;
    opacity: 0.2;
}

.social-link i {
    font-size: 1.5rem;
    z-index: 1;
}

.social-link.linkedin i {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.social-link.github i {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.social-link.twitter i {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.8);
}

.social-link.email i {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.8);
}

.social-link span {
    color: var(--text-color);
    font-weight: 600;
    z-index: 1;
}

.social-link:hover span {
    color: var(--white);
}

.availability-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.availability-card i {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.availability-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.availability-card ul {
    list-style: none;
    text-align: left;
}

.availability-card li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.availability-card li i {
    font-size: 0.875rem;
    color: #10b981;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--text-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8),
                 0 0 30px rgba(0, 245, 255, 0.5);
}

.stat-card:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8),
                 0 0 30px rgba(255, 0, 110, 0.5);
}

.stat-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card p {
    color: var(--text-secondary);
}

.contact-cta {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--neon-cyan);
    position: relative;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    opacity: 0;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(0, 245, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.6),
                0 0 40px rgba(0, 245, 255, 0.3);
}

.social-links a:hover::before {
    opacity: 0.2;
}

.social-links i {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.social-links a:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }

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

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

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 5rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-dot {
        left: 0;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .blogs-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .resume-header {
        flex-direction: column;
        text-align: center;
    }

    .resume-profile {
        flex-direction: column;
        text-align: center;
    }

    .experience-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .lightbox-image {
        width: 100%;
        height: 400px;
    }
}

@media print {
    /* CRITICAL: Override ALL color variables for print */
    :root {
        --cyber-black: #ffffff !important;
        --cyber-dark: #ffffff !important;
        --cyber-darker: #ffffff !important;
        --secondary-color: #ffffff !important;
        --neon-cyan: #000000 !important;
        --neon-pink: #000000 !important;
        --text-color: #000000 !important;
    }

    /* Hide navigation, footer, and download button */
    .navbar,
    .footer,
    .resume-actions {
        display: none !important;
    }

    /* Force visibility and proper colors for all resume elements */
    .resume-section,
    .resume-section *,
    .container,
    .resume-header,
    .resume-profile,
    .resume-section-content,
    .resume-box,
    .experience-item,
    .experience-header,
    .experience-list,
    .achievements-list,
    .skills-category,
    h1, h2, h3, h4, h5, h6,
    p, span, div, ul, li {
        background: white !important;
        color: #000 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Reset page styling for print */
    body {
        background: white !important;
        color: #000000 !important;
        font-size: 12pt;
        line-height: 1.4;
    }

    body::before,
    body::after {
        display: none !important;
    }

    /* Page setup */
    @page {
        size: A4;
        margin: 0.75in;
    }

    /* Resume section */
    .resume-section {
        padding: 0 !important;
        background: white !important;
        min-height: auto !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
        background: white !important;
    }

    /* Resume header */
    .resume-header {
        background: white !important;
        padding: 0 0 20px 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-bottom: 3px solid #000 !important;
        margin-bottom: 20px !important;
        page-break-after: avoid;
        display: block !important;
    }

    .resume-profile {
        display: flex;
        gap: 20px;
    }

    .profile-image {
        width: 80px !important;
        height: 80px !important;
        background: #f0f0f0 !important;
        border-radius: 50% !important;
        border: 2px solid #000 !important;
        box-shadow: none !important;
        clip-path: none !important;
    }

    .profile-image::before {
        display: none !important;
    }

    .resume-profile-pic {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        display: block !important;
    }

    .profile-image i {
        color: #000 !important;
        font-size: 2.5rem !important;
        text-shadow: none !important;
        animation: none !important;
    }

    .profile-info h1 {
        color: #000 !important;
        font-size: 28pt !important;
        margin-bottom: 5px !important;
        text-shadow: none !important;
        font-family: Arial, sans-serif !important;
        letter-spacing: 0 !important;
    }

    .profile-info h2 {
        color: #333 !important;
        font-size: 14pt !important;
        margin-bottom: 10px !important;
        text-shadow: none !important;
        font-weight: 600 !important;
    }

    .contact-info {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px 20px !important;
        font-size: 10pt !important;
    }

    .contact-info span {
        color: #000 !important;
    }

    .contact-info i {
        color: #000 !important;
        text-shadow: none !important;
        margin-right: 5px;
    }

    .contact-info a {
        color: #0066cc !important;
        text-decoration: none;
    }

    /* Section titles */
    .resume-section-title {
        color: #000 !important;
        font-size: 16pt !important;
        margin: 20px 0 10px 0 !important;
        padding-bottom: 5px !important;
        border-bottom: 2px solid #000 !important;
        text-shadow: none !important;
        font-family: Arial, sans-serif !important;
        page-break-after: avoid;
    }

    .resume-section-title i {
        color: #000 !important;
        text-shadow: none !important;
        margin-right: 10px;
    }

    .resume-section-content {
        margin-bottom: 20px !important;
        page-break-inside: avoid;
        display: block !important;
        background: white !important;
    }

    /* Resume boxes */
    .resume-box {
        background: white !important;
        padding: 10px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        display: block !important;
    }

    .resume-box p {
        color: #000 !important;
        font-size: 11pt !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        display: block !important;
    }

    .resume-box p strong {
        color: #000 !important;
        font-weight: bold !important;
    }

    /* Skills */
    .skills-category {
        margin-bottom: 15px !important;
        page-break-inside: avoid;
    }

    .skills-category h4 {
        color: #000 !important;
        font-size: 12pt !important;
        margin-bottom: 8px !important;
        font-weight: bold !important;
    }

    .skill-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .skill-tag {
        background: #f0f0f0 !important;
        color: #000 !important;
        padding: 4px 10px !important;
        border: 1px solid #ccc !important;
        border-radius: 4px !important;
        font-size: 10pt !important;
        box-shadow: none !important;
        clip-path: none !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }

    .skill-tag::before {
        display: none !important;
    }

    /* Experience items */
    .experience-item {
        background: white !important;
        padding: 15px 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-bottom: 1px solid #ddd !important;
        margin-bottom: 15px !important;
        page-break-inside: avoid;
        display: block !important;
    }

    .experience-header {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 10px !important;
        background: white !important;
    }

    .experience-header > div {
        display: block !important;
    }

    .experience-header h4 {
        color: #000 !important;
        font-size: 13pt !important;
        margin-bottom: 3px !important;
        font-weight: bold !important;
        display: block !important;
    }

    .experience-header p {
        display: block !important;
        color: #333 !important;
    }

    .company {
        color: #333 !important;
        font-size: 11pt !important;
        font-style: italic !important;
        display: block !important;
    }

    .date {
        color: #666 !important;
        font-size: 10pt !important;
        white-space: nowrap !important;
        display: block !important;
    }

    .experience-list {
        margin: 10px 0 10px 20px !important;
        padding: 0 !important;
        list-style-type: disc !important;
        display: block !important;
    }

    .experience-list li {
        color: #000 !important;
        font-size: 11pt !important;
        margin-bottom: 6px !important;
        line-height: 1.4 !important;
        padding-left: 0 !important;
        display: list-item !important;
    }

    .tech-stack {
        color: #333 !important;
        font-size: 10pt !important;
        margin-top: 8px !important;
        font-style: normal !important;
        display: block !important;
    }

    .tech-stack strong {
        color: #000 !important;
        font-weight: bold !important;
    }

    /* Achievements */
    .achievements-list {
        margin: 10px 0 10px 20px !important;
        padding: 0 !important;
        list-style-type: disc !important;
        display: block !important;
    }

    .achievements-list li {
        color: #000 !important;
        font-size: 11pt !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
        padding-left: 0 !important;
        display: list-item !important;
    }

    .achievements-list strong {
        color: #000 !important;
        font-weight: bold !important;
    }

    /* Remove all animations and transitions */
    * {
        animation: none !important;
        transition: none !important;
    }

    /* Remove all background images and gradients */
    *::before,
    *::after {
        display: none !important;
    }

    /* Ensure proper page breaks */
    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    ul, ol {
        page-break-inside: avoid;
    }
}

