/* CR Webdesign - Modern & Geil Edition */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --neon-blue: #00d4ff;
    --neon-pink: #ff4081;
    --neon-green: #4caf50;
    --deep-purple: #6a0572;
    --electric-blue: #2196f3;
    --cyber-black: #0f0f23;
    --glass-white: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Glassmorphism Elements */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Neon Glow Effects */
.neon-glow {
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px rgba(0, 212, 255, 0.5);
    color: var(--text-primary);
}

.neon-border {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue), inset 0 0 20px rgba(0, 245, 255, 0.1);
}

/* Hero Section - Sick AF */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-section .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300f5ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300f5ff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 1;
    transform: translateX(0);
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateX(0);
    font-weight: 500;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

/* Navigation - Enhanced Beautiful Design */
.navbar {
    background: rgba(15, 15, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2, #4facfe, #00f2fe);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    text-decoration: none;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.4s ease;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    margin: 0 0.25rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-white);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary) !important;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav-link.active {
    color: var(--neon-blue) !important;
    background: var(--glass-white);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.navbar-brand i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.nav-link i {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px currentColor);
}

/* Service Cards - Futuristic */
.service-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    color: var(--text-primary);
}

.service-card h5 {
    color: var(--text-primary) !important;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary) !important;
}

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Portfolio Items - Image Based Design */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.90) 0%, 
        rgba(138, 43, 226, 0.90) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.portfolio-overlay h5 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-height: 180px;
    overflow-y: auto;
}

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

/* Responsive Portfolio Adjustments */
@media (max-width: 768px) {
    .portfolio-item {
        height: 450px;
    }
    
    .portfolio-overlay {
        padding: 2rem;
    }
    
    .portfolio-overlay h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.8rem;
        max-height: 150px;
    }
}

/* Buttons - Neon Style */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--neon-blue) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-outline-primary:hover {
    background: var(--neon-blue);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-primary::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.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Form - Cyberpunk */
.contact-form {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Skill Badges - Glowing */
.skill-badge {
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.4);
    border-color: var(--neon-pink);
}

/* Stats */
.stat-item {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Cards */
.card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 245, 255, 0.175) !important;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
}

.card-body {
    color: #fff;
}

/* Footer - Sleek */
footer {
    background: var(--dark-gradient) !important;
    border-top: 1px solid var(--neon-blue);
}

.social-links a {
    transition: all 0.3s ease;
    color: #fff !important;
}

.social-links a:hover {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 15px var(--neon-blue);
    transform: scale(1.2);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

/* Mobile Navigation Enhancements */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: var(--glass-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--glass-border);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--glass-white);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--glass-border);
    }
    
    .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cyber-black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Custom Alert Styles */
.alert {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: #fff;
}

.alert-success {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(143, 255, 0, 0.3);
}

.alert-danger {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

/* Display Classes */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process Section */
.process-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 320px;
    text-align: center;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(0, 191, 255, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-item:hover::before {
    opacity: 1;
}

.process-item:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);
}

.process-number {
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 2rem auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.process-item h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
}

.process-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* Technology Stack Cards */
.tech-stack-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-stack-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

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

/* Process Steps for Services Page */
.process-step {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    border: 3px solid var(--cyber-black);
}

.step-number span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step .card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    padding-top: 3rem;
    margin-top: 30px;
}

.process-step .card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.process-step .card-title {
    color: #ffffff;
    font-size: 1.1rem;
}

.process-step .card-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

/* Portfolio Project Cards with Hover Preview */
.portfolio-project-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.9) 0%, 
        rgba(138, 43, 226, 0.9) 100%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-project-card:hover .project-preview-image {
    opacity: 0.3;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    z-index: 3;
}

.project-info {
    color: white;
}

.project-year {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-action {
    align-self: flex-end;
    width: 100%;
}

.project-action .btn {
    width: 100%;
    background: var(--cyber-black);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-action .btn:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.portfolio-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

/* Portfolio Hero Visual */
.portfolio-hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--neon-blue);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

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

.floating-card:hover {
    transform: scale(1.1);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Stat Boxes for Hero */
.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

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

.stat-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Styles */
.about-hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-highlight {
    text-align: center;
}

.years-badge {
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    animation: pulse 2s infinite;
}

.years-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.years-badge .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.spec-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.spec-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
}

.contact-quick-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--neon-blue);
    font-size: 1.1rem;
    width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-blue);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-blue), var(--electric-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cyber-black);
    border: 3px solid var(--electric-blue);
    z-index: 2;
}

.timeline-marker.current {
    background: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    animation: pulse 2s infinite;
}

.timeline-marker.education {
    border-color: var(--neon-green);
    background: var(--neon-green);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.timeline-period {
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-role {
    color: var(--electric-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.timeline-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Certifications */
.certification-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.cert-year {
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 60px;
}

.cert-details h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cert-badge {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Skills */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Project Highlights */
.project-highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.project-highlight-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.project-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.project-status {
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-status.active {
    background: rgba(76, 175, 80, 0.2);
    color: var(--neon-green);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.project-status.completed {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

/* Engagement Cards */
.engagement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.engagement-icon i {
    font-size: 2rem;
    color: white;
}

.engagement-card h5 {
    color: white;
    margin-bottom: 1rem;
}

/* Enhanced About Page Styles */
.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    animation: pulse 2s infinite;
}

.profile-showcase {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--neon-blue), var(--electric-blue)) 1;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.avatar-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.avatar-content i {
    font-size: 6rem;
    color: var(--neon-blue);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
    filter: brightness(1.2) contrast(1.2);
}

.floating-skills {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.skill-orb {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    animation: orbit 20s linear infinite;
    animation-delay: var(--delay);
    transform-origin: 50% 50%;
}

.skill-orb:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--neon-blue);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    z-index: 10;
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(var(--radius)) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(var(--radius)) rotate(-360deg);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact Page Styles */
.contact-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    animation: contactFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.contact-floating-card:nth-child(1) {
    top: 10%;
    left: 20%;
}

.contact-floating-card:nth-child(2) {
    top: 50%;
    right: 10%;
}

.contact-floating-card:nth-child(3) {
    bottom: 15%;
    left: 35%;
}

.contact-floating-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--neon-blue);
}

.contact-floating-card span {
    font-weight: 600;
    font-size: 1rem;
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.contact-floating-card:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-info h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.method-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

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

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: fit-content;
    backdrop-filter: blur(20px);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--neon-blue);
}

.info-content h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.cta-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.cta-box h5 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Laravel Showcase Styles */
.showcase-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-tech-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    animation: techFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-floating-card:nth-child(1) {
    top: 10%;
    left: 15%;
}

.tech-floating-card:nth-child(2) {
    top: 20%;
    right: 20%;
}

.tech-floating-card:nth-child(3) {
    bottom: 30%;
    left: 10%;
}

.tech-floating-card:nth-child(4) {
    bottom: 10%;
    right: 15%;
}

.tech-floating-card:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
}

.tech-floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(2deg) scale(1.05); }
    50% { transform: translateY(-5px) rotate(-1deg) scale(0.95); }
    75% { transform: translateY(-20px) rotate(1deg) scale(1.02); }
}

.tech-floating-card:hover {
    transform: scale(1.15) translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    z-index: 10;
}

/* Feature Showcase Cards */
.feature-showcase-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--neon-blue);
}

.feature-actions {
    display: flex;
    gap: 1rem;
}

.feature-actions .btn {
    flex: 1;
}

/* Demo Terminal Styles */
.demo-terminal {
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: rgba(40, 40, 50, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27ca3f; }

.terminal-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 200px;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: var(--neon-blue);
    font-weight: bold;
}

.command {
    color: #50fa7b;
}

.output {
    color: rgba(255, 255, 255, 0.8);
}

.output.success {
    color: #50fa7b;
}

.cursor {
    background: var(--neon-blue);
    width: 10px;
    height: 18px;
    animation: blink 1s infinite;
}

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

.typing-animation {
    overflow: hidden;
    border-right: 2px solid var(--neon-blue);
    white-space: nowrap;
    animation: typing 3s steps(30, end) infinite;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

/* Demo Features */
.demo-features {
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* CTA Showcase */
.cta-showcase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4rem 3rem;
    backdrop-filter: blur(20px);
}

/* Background Gradient */
.bg-dark-gradient {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 55, 0.95));
}

/* WOW Hero Section Styles */
.wow-hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 255, 198, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wow-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.holographic-text {
    position: relative;
    margin-bottom: 3rem;
}

.mega-title {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    line-height: 0.8;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hologram-layer {
    display: block;
    background: linear-gradient(
        45deg,
        #00d4ff 0%,
        #ff0080 25%,
        #00d4ff 50%,
        #8a2be2 75%,
        #00d4ff 100%
    );
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hologramShift 3s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(255, 0, 128, 0.3),
        0 0 90px rgba(138, 43, 226, 0.2);
    position: relative;
}

.hologram-layer:nth-child(2) {
    animation-delay: 0.5s;
}

.hologram-layer:nth-child(3) {
    animation-delay: 1s;
}

@keyframes hologramShift {
    0%, 100% {
        background-position: 0% 50%;
        transform: perspective(1000px) rotateX(0deg);
    }
    25% {
        background-position: 100% 50%;
        transform: perspective(1000px) rotateX(5deg);
    }
    50% {
        background-position: 100% 100%;
        transform: perspective(1000px) rotateX(0deg);
    }
    75% {
        background-position: 0% 100%;
        transform: perspective(1000px) rotateX(-5deg);
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 8s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 70%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 80%; animation-delay: 1.5s; animation-duration: 6s; }
.particle:nth-child(6) { left: 90%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 50%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(8) { left: 60%; animation-delay: 3.5s; animation-duration: 9s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        #00d4ff,
        transparent
    );
    animation: matrixDrop 4s linear infinite;
}

.matrix-column:nth-child(1) { left: 15%; animation-delay: 0s; }
.matrix-column:nth-child(2) { left: 35%; animation-delay: 1s; }
.matrix-column:nth-child(3) { left: 55%; animation-delay: 2s; }
.matrix-column:nth-child(4) { left: 75%; animation-delay: 0.5s; }
.matrix-column:nth-child(5) { left: 85%; animation-delay: 1.5s; }

@keyframes matrixDrop {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.wow-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    from {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(255, 0, 128, 0.3);
    }
}

.btn-hologram {
    background: transparent;
    border: none;
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hologram:hover {
    color: #ff0080;
    transform: scale(1.05);
}

.hologram-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00d4ff;
    background: linear-gradient(
        45deg,
        rgba(0, 212, 255, 0.1),
        rgba(255, 0, 128, 0.1),
        rgba(0, 212, 255, 0.1)
    );
    background-size: 400% 400%;
    animation: hologramBorder 2s ease-in-out infinite;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
}

@keyframes hologramBorder {
    0%, 100% {
        background-position: 0% 50%;
        border-color: #00d4ff;
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.5),
            inset 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        background-position: 100% 50%;
        border-color: #ff0080;
        box-shadow: 
            0 0 20px rgba(255, 0, 128, 0.5),
            inset 0 0 20px rgba(255, 0, 128, 0.1);
    }
}

/* Enhanced Demo Styles */
.pulse-badge {
    animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.update-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--neon-blue);
}

.crypto-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--neon-blue);
}

.crypto-item {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.crypto-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.min-vh-50 {
    min-height: 50vh;
}

/* Responsive Typography Fixes */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .navbar-brand {
        font-size: 1.4rem !important;
        word-break: keep-all;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .navbar-brand {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}