/* CSS Variables */
:root {
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff9d;
    --neon-purple: #9d00ff;
    --neon-yellow: #ffcc00;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --grid-color: rgba(0, 243, 255, 0.1);
    --cyber-gray: #1a1a2e;
    --text-primary: #e0e0ff;
    --text-secondary: #a0a0c0;
    --cyber-border: 1px solid rgba(0, 243, 255, 0.3);
    --cyber-glow: 0 0 15px rgba(0, 243, 255, 0.7);
    --pink-glow: 0 0 15px rgba(255, 0, 255, 0.5);
    --green-glow: 0 0 15px rgba(0, 255, 157, 0.5);
    --card-bg: rgba(10, 10, 15, 0.85);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 2.5vw, 16px);
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

/* Animated background elements */
.cyber-bg-element {
    position: fixed;
    z-index: -1;
    opacity: 0.08;
}

.cyber-bg-element.circle {
    width: clamp(200px, 30vw, 300px);
    height: clamp(200px, 30vw, 300px);
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    top: 10%;
    right: 5%;
    animation: pulse 8s infinite alternate;
}

.cyber-bg-element.square {
    width: clamp(150px, 25vw, 200px);
    height: clamp(150px, 25vw, 200px);
    border: 2px solid var(--neon-pink);
    bottom: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.1); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Container */
.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 2rem);
    position: relative;
}

/* Header Styles */
.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    border-bottom: var(--cyber-border);
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
    position: relative;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2rem);
}

.header-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 4vw, 2rem);
    min-width: min(100%, 300px);
}

.profile-image {
    width: clamp(100px, 20vw, 160px);
    height: clamp(100px, 20vw, 160px);
    border-radius: 50%;
    border: 3px solid var(--neon-blue);
    box-shadow: var(--cyber-glow);
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.9);
}

.profile-image::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    z-index: 1;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.header-info {
    flex: 1;
    min-width: 200px;
}

.header-info h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--cyber-glow);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    word-break: break-word;
}

.header-info .title {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.header-info .title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--neon-green);
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 10px var(--neon-green);
    animation: widthPulse 3s infinite;
}

.header-info > p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    margin-top: 1rem;
}

@keyframes widthPulse {
    0%, 100% { width: 100%; }
    50% { width: 80%; }
}

.header-right {
    flex: 0 1 auto;
    text-align: right;
    min-width: min(100%, 250px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.625rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.contact-item:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateX(-5px);
}

.contact-icon {
    color: var(--neon-blue);
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

/* Main Content */
.cyber-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 3rem;
}

/* Cyber Card */
.cyber-card {
    background-color: var(--card-bg);
    border: var(--cyber-border);
    border-radius: 8px;
    padding: clamp(1rem, 4vw, 2rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.cyber-card:hover {
    box-shadow: var(--cyber-glow);
    transform: translateY(-8px);
}

.cyber-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--neon-blue);
    transition: height 0.5s ease;
}

.cyber-card:hover::before {
    height: 0;
    top: 100%;
    transition: height 0.5s ease;
}

.cyber-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: var(--neon-pink);
    transition: height 0.5s ease 0.2s;
}

.cyber-card:hover::after {
    height: 100%;
    top: 0;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    gap: 1rem;
}

.card-icon {
    color: var(--neon-blue);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cyber-card:hover .card-icon {
    background: rgba(0, 243, 255, 0.2);
    transform: rotate(10deg);
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--neon-blue);
    letter-spacing: 1px;
}

/* About Me */
.about-content {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 1rem;
}

/* Experience Section */
.experience-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--neon-pink);
    position: relative;
    transition: all 0.3s ease;
}

.experience-item:hover {
    border-left-color: var(--neon-green);
    transform: translateX(5px);
}

.experience-item::before {
    content: "◈";
    position: absolute;
    left: -12px;
    color: var(--neon-pink);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.experience-item:hover::before {
    color: var(--neon-green);
    transform: scale(1.5);
}

.experience-title {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-date {
    color: var(--neon-yellow);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    flex-shrink: 0;
}

.experience-company {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 4px;
}

.experience-item p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Personal Information Styles */
.personal-info {
    margin-bottom: 1.5rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group h4 {
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.75rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
}

.info-label {
    color: var(--neon-blue);
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.info-value {
    color: var(--text-primary);
    flex: 1;
    word-break: break-word;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    min-height: 44px;
}

.contact-detail:hover {
    background: rgba(0, 243, 255, 0.1);
}

.contact-detail i {
    color: var(--neon-blue);
    width: 20px;
    flex-shrink: 0;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.framework-item {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(157, 0, 255, 0.2);
    padding: 1rem;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-item.highlight {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--neon-green);
}

.framework-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    transform: translateY(-3px);
}

.framework-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-category {
    margin-bottom: 1rem;
}

.skill-category h4 {
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.75rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category h4 i {
    font-size: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 0.75rem);
}

.skill-tag {
    background: rgba(26, 26, 46, 0.7);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 3vw, 1rem);
    border: 1px solid rgba(157, 0, 255, 0.2);
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}

.skill-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover::before {
    left: 100%;
}

.skill-tag:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag.highlight {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--neon-green);
}

/* Data Visualization */
.data-viz {
    background: rgba(10, 10, 15, 0.9);
    border: var(--cyber-border);
    padding: clamp(1rem, 4vw, 1.5rem);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.data-viz::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.viz-title {
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    position: relative;
    display: inline-block;
    width: 100%;
}

.binary-code {
    color: var(--neon-blue);
    font-family: 'Courier New', monospace;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    white-space: normal;
    word-break: break-all;
    overflow: hidden;
    margin-bottom: 1rem;
    height: auto;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    line-height: 1.6;
}

.matrix-line {
    color: rgba(0, 255, 157, 0.7);
    font-family: 'Courier New', monospace;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    margin-bottom: 0.5rem;
    animation: matrix 20s linear infinite;
    padding-left: 0.5rem;
    position: relative;
}

.matrix-line::before {
    content: ">";
    color: var(--neon-blue);
    margin-right: 0.5rem;
}

@keyframes matrix {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Footer */
.cyber-footer {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem) 0;
    border-top: var(--cyber-border);
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    position: relative;
}

.cyber-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), transparent);
}

.footer-text {
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.footer-text::before,
.footer-text::after {
    content: "▮▮▮";
    color: var(--neon-blue);
    margin: 0 clamp(0.5rem, 2vw, 1rem);
    letter-spacing: 3px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-blue);
    animation: glitch-anim2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    100% { clip: rect(23px, 9999px, 87px, 0); }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    .cyber-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    .data-viz, .cyber-footer::before {
        display: none;
    }
}

/* Tablet and Up (600px) */
@media (min-width: 600px) {
    .cyber-main {
        grid-template-columns: 2fr 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .header-left {
        min-width: auto;
    }
    
    .header-right {
        text-align: right;
    }
    
    .contact-item {
        justify-content: flex-end;
    }

    .skill-tags {
        justify-content: flex-start;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium screens (900px) */
@media (max-width: 899px) {
    .cyber-main {
        grid-template-columns: 1fr;
    }

    .header-left {
        width: 100%;
        justify-content: flex-start;
    }

    .header-right {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    .contact-item {
        justify-content: flex-start;
    }
}

/* Mobile (tablets and small) - 600px and below */
@media (max-width: 599px) {
    .cyber-header {
        flex-direction: column;
        align-items: stretch;
    }

    .header-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .header-info {
        width: 100%;
    }

    .header-info h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .header-info .title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .header-right {
        width: 100%;
        text-align: left;
        margin-top: 1.5rem;
        display: none;
    }

    .header-right.active {
        display: block;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon {
        margin-bottom: 0;
    }

    .experience-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-date {
        align-self: flex-start;
        margin-top: 0.25rem;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-tags {
        justify-content: center;
    }

    .info-label {
        min-width: 90px;
    }

    .footer-text::before,
    .footer-text::after {
        margin: 0 clamp(0.25rem, 1vw, 0.5rem);
        letter-spacing: 2px;
    }
}

/* Small mobile (400px and below) */
@media (max-width: 399px) {
    .cyber-container {
        padding: clamp(0.75rem, 3vw, 1rem);
    }

    .cyber-card {
        padding: clamp(0.75rem, 3vw, 1.5rem);
        margin-bottom: 1rem;
    }

    .profile-image {
        width: 90px;
        height: 90px;
    }

    .header-info h1 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .card-title {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .experience-title {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .skill-tag {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }

    .skill-tags {
        gap: 0.4rem;
    }

    .framework-grid {
        grid-template-columns: 1fr;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-label {
        min-width: 100%;
        margin-bottom: 0.25rem;
    }

    .header-left {
        gap: 1rem;
    }

    .footer-text::before,
    .footer-text::after {
        display: none;
    }

    .footer-text {
        display: block;
    }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    background: var(--dark-bg);
    border: var(--cyber-border);
    color: var(--neon-blue);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--cyber-glow);
}

@media (max-width: 599px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--dark-bg);
    border: var(--cyber-border);
    border-radius: 50%;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--cyber-glow);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

@media (max-width: 599px) {
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Add these to your existing style.css */

/* Project Details Lists */
.project-details {
    list-style-type: none;
    margin: 0.75rem 0;
    padding-left: 1rem;
}

.project-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-details li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-size: 0.8rem;
}

/* Achievement List Styles */
.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateX(5px);
}

.achievement-item i {
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Enhanced Skill Tags with Levels */
.skill-tag[class*="Advanced"],
.skill-tag[class*="Expert"] {
    background: rgba(0, 255, 157, 0.15) !important;
    border-color: var(--neon-green) !important;
}

.skill-tag[class*="Intermediate"] {
    background: rgba(0, 243, 255, 0.1) !important;
    border-color: var(--neon-blue) !important;
}

.skill-tag[class*="Basic"] {
    background: rgba(157, 0, 255, 0.1) !important;
    border-color: var(--neon-purple) !important;
}

/* Enhanced Matrix Lines for Metrics */
.data-viz {
    background: rgba(10, 10, 15, 0.95);
}

.matrix-line {
    animation: matrix 25s linear infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Project Technologies Badge */
.project-tech {
    display: inline-block;
    background: rgba(157, 0, 255, 0.2);
    color: var(--neon-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0.25rem 0.5rem 0.25rem 0;
    border: 1px solid rgba(157, 0, 255, 0.3);
}

/* Enhanced Contact Details */
.contact-detail {
    min-height: 48px;
    padding: 0.75rem;
}

.contact-detail i {
    width: 24px;
    font-size: 1.1rem;
}

/* Print Optimization */
@media print {
    .project-details li {
        page-break-inside: avoid;
    }
    
    .skill-tags {
        page-break-inside: avoid;
    }
    
    .achievement-item {
        break-inside: avoid;
    }
}
}
