/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sci-Fi Color Palette */
    --cyber-cyan: #00FFFF;
    --electric-blue: #0080FF;
    --neon-purple: #8B00FF;
    --neon-pink: #FF1493;
    --lime-green: #32CD32;
    --cyber-gold: #FFD700;
    --space-dark: #0A0A0A;
    --charcoal: #1A1A1A;
    --red: #FF4444;
    
    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 255, 255, 0.2);
    
    /* Typography */
    --font-orbitron: 'Orbitron', monospace;
    --font-exo: 'Exo 2', sans-serif;
    --font-space: 'Space Mono', monospace;
}

body {
    font-family: var(--font-exo);
    background: linear-gradient(135deg, #0a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--cyber-cyan);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Particle Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 26, 46, 0.95);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

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

.logo-text {
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.logo-highlight {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-cyan);
    text-shadow: 0 0 5px var(--cyber-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-cyan);
    transition: width 0.3s ease;
}

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

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--cyber-cyan);
    margin: 3px 0;
    transition: 0.3s;
}

/* Status Indicators */
.status-indicator {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    z-index: 10;
}

.status-online {
    background: #32CD32;
    box-shadow: 0 0 10px #32CD32;
    animation: pulse-online 2s infinite;
}

.status-verified {
    background: #0080FF;
    box-shadow: 0 0 10px #0080FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

@keyframes pulse-online {
    0%, 100% {
        box-shadow: 0 0 10px #32CD32, 0 0 20px #32CD32;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px #32CD32, 0 0 30px #32CD32, 0 0 40px #32CD32;
        transform: scale(1.1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.profile-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple), 0 0 60px rgba(139, 0, 255, 0.3);
    animation: profileGlow 3s ease-in-out infinite alternate;
}

@keyframes profileGlow {
    0% { box-shadow: 0 0 30px var(--neon-purple), 0 0 60px rgba(139, 0, 255, 0.3); }
    100% { box-shadow: 0 0 50px var(--neon-purple), 0 0 100px rgba(139, 0, 255, 0.5); }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.2);
}

.hero-title h1 {
    font-family: var(--font-orbitron);
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title h1 {
    color: var(--cyber-cyan);
    text-shadow: 0 0 30px var(--cyber-cyan);
}

.title-red {
    color: var(--red);
    text-shadow: 0 0 30px var(--red);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.badge-purple {
    background: linear-gradient(45deg, var(--neon-purple), #aa00ff);
    color: white;
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.5);
}

.badge-green {
    background: linear-gradient(45deg, var(--lime-green), #00ff00);
    color: white;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    width: 100%;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-orbitron);
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px currentColor;
}

.stat-number.cyan { color: var(--cyber-cyan); }
.stat-number.green { color: var(--lime-green); }
.stat-number.purple { color: var(--neon-purple); }
.stat-number.yellow { color: var(--cyber-gold); }

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-services {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-btn.cyan {
    border-color: var(--cyber-cyan);
    color: var(--cyber-cyan);
}

.service-btn.purple {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.service-btn.green {
    border-color: var(--lime-green);
    color: var(--lime-green);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px currentColor;
    background: currentColor;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid;
}

.action-btn.primary {
    background: linear-gradient(45deg, var(--cyber-cyan), var(--electric-blue));
    border-color: var(--cyber-cyan);
    color: white;
}

.action-btn.secondary {
    background: transparent;
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-orbitron);
    font-size: 3rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    text-shadow: 0 0 20px var(--cyber-cyan);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Advanced Sci-Fi Text Effects */
.glitch {
    position: relative;
    animation: glitch-anim 3s infinite linear alternate-reverse;
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim-1 0.15s infinite linear alternate-reverse;
    color: #ff0040;
    z-index: -1;
    text-shadow: 2px 0 #ff0040;
}

.glitch::after {
    animation: glitch-anim-2 0.15s infinite linear alternate-reverse;
    color: #00ffff;
    z-index: -2;
    text-shadow: -2px 0 #00ffff;
}

/* Hologram Effect */
.hologram {
    position: relative;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: hologram-scan 2s infinite linear;
    text-shadow: 
        0 0 10px var(--cyber-cyan),
        0 0 20px var(--cyber-cyan),
        0 0 30px var(--cyber-cyan);
}

@keyframes hologram-scan {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Matrix Effect */
.matrix {
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    background-size: 200% 100%;
    animation: matrix-flow 1.5s infinite linear;
    color: #00FF41;
    text-shadow: 
        0 0 5px #00FF41,
        0 0 10px #00FF41,
        0 0 15px #00FF41;
}

@keyframes matrix-flow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Neon Pulse Effect */
.neon-pulse {
    animation: neon-pulse 2s infinite ease-in-out alternate;
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor,
        0 0 20px currentColor,
        0 0 35px currentColor,
        0 0 40px currentColor;
}

@keyframes neon-pulse {
    0% {
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor,
            0 0 20px currentColor,
            0 0 35px currentColor,
            0 0 40px currentColor;
    }
    100% {
        text-shadow: 
            0 0 2px currentColor,
            0 0 5px currentColor,
            0 0 8px currentColor,
            0 0 12px currentColor,
            0 0 18px currentColor,
            0 0 25px currentColor;
    }
}

/* Cyber Scan Effect */
.cyber-scan {
    position: relative;
    overflow: hidden;
}

.cyber-scan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
    animation: cyber-scan-line 3s infinite linear;
    z-index: 1;
}

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

/* Digital Flicker */
.digital-flicker {
    animation: digital-flicker 0.5s infinite linear alternate;
}

@keyframes digital-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor;
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.7;
    }
}

@keyframes glitch-anim {
    0% { clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%); transform: translate3d(-20px, 0, 0) scale3d(-1, -1, 1); }
    5% { clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%); transform: translate3d(20px, 0, 0); }
    10% { clip-path: polygon(0 43%, 100% 43%, 100% 44%, 0 44%); transform: translate3d(-20px, 0, 0); }
}

@keyframes glitch-anim-1 {
    0% { clip-path: polygon(0 0%, 100% 0%, 100% 5%, 0 5%); transform: translate3d(20px, -20px, 0); }
    5% { clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%); transform: translate3d(-20px, 20px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: polygon(0 40%, 100% 40%, 100% 80%, 0 80%); transform: translate3d(-20px, 20px, 0); }
    5% { clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); transform: translate3d(20px, -20px, 0); }
}

/* Glass Panel Effect */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.glass-panel:hover::before {
    left: 100%;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.about-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
    margin-bottom: 1rem;
}

.profile-card h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    margin-bottom: 0.5rem;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.profile-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px currentColor;
}

.stat-num.cyan { color: var(--cyber-cyan); }
.stat-num.green { color: var(--lime-green); }

.stat-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.info-card h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    flex: 1;
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--cyber-cyan);
}

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

.tech-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

.roadmap-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.roadmap-card h3 {
    color: var(--cyber-gold);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.roadmap-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.roadmap-icon.cyan { background: var(--cyber-cyan); }
.roadmap-icon.purple { background: var(--neon-purple); }
.roadmap-icon.green { background: var(--lime-green); }
.roadmap-icon.yellow { background: var(--cyber-gold); }

.roadmap-content h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.roadmap-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--electric-blue));
    color: white;
    font-size: 2rem;
}

.service-icon.purple {
    background: linear-gradient(45deg, var(--neon-purple), #aa00ff);
}

.service-icon.green {
    background: linear-gradient(45deg, var(--lime-green), #00ff00);
}

.service-card h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: var(--lime-green);
    font-size: 0.8rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.portfolio-video {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--charcoal);
}

.portfolio-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--cyber-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--cyber-cyan);
}

.portfolio-tags {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag.cyan { 
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
}

.tag.green { 
    background: rgba(50, 205, 50, 0.1);
    color: var(--lime-green);
    border-color: var(--lime-green);
}

.tag.purple { 
    background: rgba(139, 0, 255, 0.1);
    color: var(--neon-purple);
    border-color: var(--neon-purple);
}

.tag.yellow { 
    background: rgba(255, 215, 0, 0.1);
    color: var(--cyber-gold);
    border-color: var(--cyber-gold);
}

.tag.orange { 
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border-color: #FFA500;
}

.portfolio-footer {
    text-align: center;
}

.show-more-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-more-btn:hover {
    background: var(--neon-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.3);
}

/* Skills Section */
.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mastery-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.mastery-card h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: white;
    font-weight: 600;
}

.skill-percentage {
    color: var(--cyber-cyan);
    font-weight: 700;
    font-family: var(--font-orbitron);
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    width: 0;
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.skill-progress.cyan {
    background: linear-gradient(90deg, var(--cyber-cyan), var(--electric-blue));
    box-shadow: 0 0 10px var(--cyber-cyan);
}

.skill-progress.purple {
    background: linear-gradient(90deg, var(--neon-purple), #aa00ff);
    box-shadow: 0 0 10px var(--neon-purple);
}

.skill-progress.green {
    background: linear-gradient(90deg, var(--lime-green), #00ff00);
    box-shadow: 0 0 10px var(--lime-green);
}

.skill-progress.yellow {
    background: linear-gradient(90deg, var(--cyber-gold), #ffff00);
    box-shadow: 0 0 10px var(--cyber-gold);
}

.arsenal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.arsenal-card h3 {
    color: var(--lime-green);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arsenal-category {
    margin-bottom: 2rem;
}

.arsenal-category h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.arsenal-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.arsenal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.arsenal-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.arsenal-item span {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.skill-mini-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    flex-shrink: 0;
}

.skill-mini-bar.cyan { background: var(--cyber-cyan); }
.skill-mini-bar.purple { background: var(--neon-purple); }
.skill-mini-bar.green { background: var(--lime-green); }
.skill-mini-bar.yellow { background: var(--cyber-gold); }

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.testimonial-video {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--charcoal);
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-author {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyber-cyan);
}

.author-info h4 {
    color: var(--cyber-cyan);
    margin-bottom: 0.25rem;
    font-family: var(--font-orbitron);
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--cyber-gold);
    font-size: 0.8rem;
}

.testimonial-tags {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonials-footer {
    text-align: center;
}

/* Freelance Section */
.freelance-profile {
    text-align: center;
    margin-bottom: 4rem;
}

.freelance-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cyber-cyan);
    box-shadow: 0 0 20px var(--cyber-cyan);
    margin-bottom: 1rem;
}

.profile-center h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.profile-description {
    max-width: 600px;
    margin: 0 auto;
}

.profile-description p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.freelance-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.platform-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

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

.platform-header i {
    font-size: 2rem;
}

.platform-card.fiverr .platform-header i {
    color: #1DBF73;
}

.platform-card.upwork .platform-header i {
    color: #14A800;
}

.platform-header h4 {
    color: white;
    font-family: var(--font-orbitron);
    font-size: 1.5rem;
}

.platform-badge {
    background: linear-gradient(45deg, var(--cyber-gold), #ffff00);
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-stat {
    text-align: center;
}

.platform-stat .stat-number {
    font-family: var(--font-orbitron);
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
}

.platform-stat .stat-number.green { color: #1DBF73; }
.platform-stat .stat-number.purple { color: var(--neon-purple); }
.platform-stat .stat-number.cyan { color: var(--cyber-cyan); }

.platform-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.platform-metrics {
    margin-bottom: 2rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-weight: 600;
}

.metric-value.green { color: #1DBF73; }

.platform-specialties h5 {
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-orbitron);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.specialty-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

.specialty-tag.yellow {
    background: rgba(255, 215, 0, 0.1);
    color: var(--cyber-gold);
    border-color: var(--cyber-gold);
}

.platform-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid;
    background: transparent;
}

.fiverr-btn {
    border-color: #1DBF73;
    color: #1DBF73;
}

.fiverr-btn:hover {
    background: #1DBF73;
    color: white;
}

.upwork-btn {
    border-color: #14A800;
    color: #14A800;
}

.upwork-btn:hover {
    background: #14A800;
    color: white;
}

/* Brands Section */
.brands-container {
    text-align: center;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.brand-item i {
    font-size: 3rem;
}

.brand-item:nth-child(1) i { color: #4285F4; }
.brand-item:nth-child(2) i { color: #00A1F1; }
.brand-item:nth-child(3) i { color: #A3AAAE; }
.brand-item:nth-child(4) i { color: #FF9900; }
.brand-item:nth-child(5) i { color: #1877F2; }
.brand-item:nth-child(6) i { color: #1ED760; }

.brand-item span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.brands-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.brands-text .highlight {
    color: var(--cyber-cyan);
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-card h3 {
    color: var(--lime-green);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cyber-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-info h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-family: var(--font-orbitron);
}

.method-info a,
.method-info span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.method-info a:hover {
    color: var(--cyber-cyan);
}

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

.contact-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

.social-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.social-card h3 {
    color: var(--neon-purple);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    background: transparent;
    border: 2px solid;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.social-btn.linkedin {
    border-color: #0077B5;
    color: #0077B5;
}

.social-btn.linkedin:hover {
    background: #0077B5;
    color: white;
}

.social-btn.github {
    border-color: #333;
    color: #333;
}

.social-btn.github:hover {
    background: #333;
    color: white;
}

.social-btn.youtube {
    border-color: #FF0000;
    color: #FF0000;
}

.social-btn.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-btn.instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.social-btn.instagram:hover {
    background: #E4405F;
    color: white;
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-btn-large {
    background: transparent;
    border: 2px solid;
    border-radius: 50px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.platform-btn-large.fiverr {
    border-color: #1DBF73;
    color: #1DBF73;
}

.platform-btn-large.fiverr:hover {
    background: #1DBF73;
    color: white;
}

.platform-btn-large.upwork {
    border-color: #14A800;
    color: #14A800;
}

.platform-btn-large.upwork:hover {
    background: #14A800;
    color: white;
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.form-card h3 {
    color: var(--cyber-cyan);
    font-family: var(--font-orbitron);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(45deg, var(--cyber-cyan), var(--electric-blue));
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: rgba(10, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-orbitron);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px var(--cyber-cyan);
    margin-bottom: 1rem;
}

.brand-highlight {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-badge {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

.footer-colors {
    display: flex;
    gap: 0.5rem;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.color-dot.cyan { background: var(--cyber-cyan); }
.color-dot.purple { background: var(--neon-purple); }
.color-dot.green { background: var(--lime-green); }

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: white;
    font-family: var(--font-orbitron);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--cyber-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .highlight {
    color: var(--cyber-cyan);
}

.footer-bottom i {
    color: var(--red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-content {
        grid-template-columns: 1fr;
    }
    
    .freelance-platforms {
        grid-template-columns: 1fr;
    }
    
    .brand-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 26, 46, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }
    
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .platform-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .platform-stat .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-services {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-logos {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
--------------------------------------------------------------------------------------------
.footer-bottom {
    display: flex;
    justify-content: space-between; /* This pushes the new links to the left and the credit to the right */
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Adds a separator line */
    margin-top: 40px;
}

.footer-terms a {
    color: var(--text-color-light); /* Assuming this is your light gray text color */
    text-decoration: none;
    margin-right: 20px; /* Spacing between the links */
    transition: color 0.3s ease;
}

.footer-terms a:hover {
    color: var(--highlight-color); /* The color you use for highlighted text */
}

.footer-credit {
    text-align: right; /* Ensures the credit text is aligned to the right */
}

----------------------------------------------------------------------------------------------
/* Ensure all elements scale and don't cause horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Make images and brand logos responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Force the container to respect the screen size */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Responsive Layout for All Sections --- */
/* This media query targets screens smaller than 768px (common for tablets and phones) */
@media (max-width: 768px) {
    /* Adjust padding on all sections for better spacing on mobile */
    section {
        padding: 40px 15px;
    }

    /* Adjust the header and mobile menu alignment */
    #navbar .container,
    .footer .container {
        padding: 0 15px; 
    }
    
    #nav-toggle {
        right: 15px; 
    }

    /* Make sure flex containers wrap on mobile */
    .footer-content,
    .brand-logos {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Style for the Top Brands section */
    .brands-container .brand-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 10px;
    }
    
    .brands-container .brand-logos .brand-item {
        flex: 1 1 auto;
        max-width: 150px; /* Controls the maximum size of brand logos */
    }

    /* Adjust spacing for footer content */
    .footer-brand,
    .footer-links,
    .footer-bottom {
        margin-bottom: 20px;
    }

    /* Ensure the footer links and credit are stacked on mobile */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-terms {
        margin-bottom: 10px;
    }

    .footer-terms a {
        margin: 0 10px;
    }
}

/* See More Button Styles */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--electric-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
    text-decoration: none;
    color: white;
}

/* Website Portfolio Section */
.website-portfolio-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0a1a2e 100%);
    position: relative;
}

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

.website-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.website-item:nth-child(1) { animation-delay: 0.1s; }
.website-item:nth-child(2) { animation-delay: 0.2s; }
.website-item:nth-child(3) { animation-delay: 0.3s; }

.website-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.website-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--cyber-cyan);
}

.website-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.website-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.website-card:hover .website-screenshot {
    transform: scale(1.05);
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.9), rgba(139, 0, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content h4 {
    font-family: var(--font-orbitron);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.website-tech {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.website-tech span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.website-tags {
    padding: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

/* Enhanced Footer Styles */
.highlight-bright {
    color: var(--cyber-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.pulse-heart {
    color: var(--red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        color: var(--red);
    }
    50% {
        transform: scale(1.2);
        color: #ff6b6b;
        text-shadow: 0 0 10px var(--red);
    }
}

.footer-link-enhanced {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 0.5rem;
    background: rgba(0, 255, 255, 0.05);
}

.footer-link-enhanced:hover {
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
    background: rgba(0, 255, 255, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.footer-credit {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

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

/* Additional Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .website-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .website-image {
        height: 200px;
    }
    
    .see-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .website-tags {
        padding: 1rem;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .website-tech span {
        font-size: 0.7rem;
    }
    
    .footer-link-enhanced {
        margin: 0.2rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-credit {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .website-grid {
        gap: 1rem;
    }
    
    .website-image {
        height: 180px;
    }
    
    .see-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .website-tags {
        padding: 0.8rem;
        gap: 0.3rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .footer-terms {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-link-enhanced {
        margin: 0.1rem;
        width: 150px;
        text-align: center;
    }
}

