body.experience-page {
    background: #1a1a1a; /* Match index page solid background */
    color: #00ff33; /* Brighter green text */
    min-height: 100vh;
    position: relative;
    /* Remove any background-image or overlay here */
}

.experience-page .page-container {
    background: transparent;
    position: relative;
    isolation: isolate;
    z-index: 1;
}

.experience-page .content-wrap {
    background: transparent;
    position: relative;
    z-index: 5;
}

/* Enhanced background gradient effect with more vibrant colors */
.experience-page .content-wrap::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(74, 158, 255, 0.25), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(159, 122, 234, 0.25), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(72, 187, 120, 0.25), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(237, 100, 166, 0.25), transparent 50%);
    /* Remove: background-color: rgba(26, 26, 26, 0.35); */
    z-index: 0;
    animation: gradientFlow 20s ease-in-out infinite alternate;
    margin-top: -200px;
}

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

/* Revert header styling to match other pages */
.experience-page .page-header {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.7) 0%, 
        rgba(44, 62, 80, 0.7) 50%, 
        rgba(52, 152, 219, 0.7) 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(74, 158, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Standard header overlay animation */
.experience-page .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 60%),
        linear-gradient(to right, rgba(74, 158, 255, 0.05) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(to bottom, rgba(74, 158, 255, 0.05) 1px, transparent 1px) 0 0 / 40px 40px;
    animation: pulse 10s infinite;
    z-index: -1;
    opacity: 0.7;
}

/* Standard header text styling */
.experience-page .page-header h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.experience-page .page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: 3px;
}

/* Standard lead text color */
.experience-page .page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Timeline Card Styles */
.timeline .card {
    background: rgba(0, 30, 0, 0.8);
    border: 1px solid #00ff33;
    box-shadow: 0 0 20px rgba(0, 255, 33, 0.2);
    position: relative;
    overflow: visible;
    margin-left: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline .card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 33, 0.4);
    border-color: #00ff33;
    background: rgba(0, 40, 0, 0.85);
}

/* Enhanced arrow indicator */
.timeline .card::before {
    content: '>';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff33;
    font-family: monospace;
    font-size: 24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 0 15px rgba(0, 255, 33, 0.7);
    background: none;
    border: none;
}

.timeline .card:hover::before {
    opacity: 1;
    left: -20px;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% { text-shadow: 0 0 15px rgba(0, 255, 33, 0.7); }
    50% { text-shadow: 0 0 25px rgba(0, 255, 33, 0.9); }
}

/* Enhanced Card Content Styles */
.timeline .card h4,
.timeline .card h6,
.timeline .card p,
.timeline .card li {
    color: #00ff33;
    font-family: 'Consolas', monospace;
    text-shadow: 0 0 8px rgba(0, 255, 33, 0.6);
}

.timeline .card .text-muted {
    color: #33cc33 !important;
}

/* Enhanced text glow effect */
.timeline .card:hover h4,
.timeline .card:hover h6,
.timeline .card:hover p,
.timeline .card:hover li {
    text-shadow: 0 0 12px rgba(0, 255, 33, 0.8);
}

/* Enhanced Service Items */
.service-item {
    background: rgba(0, 30, 0, 0.4);
    border: 1px solid rgba(0, 255, 33, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    background: rgba(0, 30, 0, 0.5);
    border: 1px solid rgba(0, 255, 33, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 255, 33, 0.15);
}

/* Enhanced service item underline effect */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff33, transparent);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item:hover::before {
    background: linear-gradient(90deg, #00ff33, #00ff33);
    opacity: 1.0;
    box-shadow: 0 0 15px rgba(0, 255, 33, 0.5);
    animation: pulse 2s infinite;
}

/* Add background glow effect on hover */
.service-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 255, 33, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item h5,
.service-item p {
    color: rgba(0, 255, 33, 0.9);
    text-shadow: 0 0 5px rgba(0, 255, 33, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover h5,
.service-item:hover p {
    color: rgba(0, 255, 33, 1);
    text-shadow: 0 0 8px rgba(0, 255, 33, 0.5);
}

.service-item .text-muted {
    color: rgba(0, 255, 33, 0.6) !important;
}

/* Enhanced Skill Tags */
.skills-tags .badge {
    background: rgba(0, 30, 0, 0.85);
    border: 1px solid #00ff33;
    color: #00ff33;
    font-family: 'Consolas', monospace;
    margin: 2px;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.skills-tags .badge:hover {
    background: #00ff33;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 33, 0.6);
    transform: translateY(-3px);
}

/* Add subtle pulsing effect to badges */
.skills-tags .badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(0, 255, 33, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.skills-tags .badge:hover::after {
    box-shadow: 0 0 0 8px rgba(0, 255, 33, 0);
    opacity: 1;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 33, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 33, 0); }
}

/* Enhanced scanning line effect */
.content-wrap::before {
    content: "";
    position: fixed;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 33, 0.5); /* Brighter line */
    animation: experienceScanning 8s linear 1 forwards;
    pointer-events: none;
    z-index: 2;
    will-change: transform, opacity;
    box-shadow: 0 0 10px rgba(0, 255, 33, 0.7); /* Add glow to line */
}

@keyframes experienceScanning {
    0% { 
        transform: translateY(-100vh);
        opacity: 0.7;
    }
    80% { 
        transform: translateY(80vh);
        opacity: 0.7;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Enhanced CRT flicker effect */
.page-container::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: flicker 0.15s infinite;
    opacity: 0.3;
    z-index: -3;
    mix-blend-mode: overlay; /* Add blend mode for better integration */
}

@keyframes flicker {
    0% { opacity: 0.25; }
    50% { opacity: 0.35; }
    100% { opacity: 0.25; }
}

/* Enhanced timeline card text effects */
.timeline .card h4 {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.timeline .card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff33;
    box-shadow: 0 0 8px rgba(0, 255, 33, 0.6);
    transition: width 0.4s steps(20, end);
}

.timeline .card:hover h4::after {
    width: 100%;
}

.timeline .card h4::before {
    content: '|';
    position: absolute;
    bottom: -5px;
    left: 0;
    color: #00ff33;
    opacity: 0;
    text-shadow: 0 0 8px rgba(0, 255, 33, 0.6);
    transition: opacity 0.3s ease, left 0.4s steps(20, end);
}

.timeline .card:hover h4::before {
    opacity: 1;
    left: 100%;
    animation: blink 1s infinite;
}

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

/* Enhanced pulsing animation for service items */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Enhanced button hover effect */
.btn-outline-primary:hover {
    background: #4a9eff;
    color: white;
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
    transform: translateY(-2px);
}

/* Apply proper z-indexing for all elements */
.experience-page .content-wrap::after {
    z-index: -1;
}

.experience-page .page-container::after {
    z-index: -3;
}

.experience-page .content-wrap::before {
    z-index: 2;
}

.experience-page .page-header {
    z-index: 1;
}

.experience-page .page-header::before {
    z-index: -1;
}
