/* Dark Mode Modern Design */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-blue: #0f3460;
    --bright-blue: #00d4ff;
    --bright-cyan: #00fff5;
    --tech-purple: #8b5cf6;
    --tech-pink: #ec4899;
    --dark-card: #1e1e2e;
    --darker-bg: #0d1117;
    --text-light: #e6e6e6;
    --text-bright: #ffffff;
    --text-muted: #8b949e;
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glow: rgba(0, 212, 255, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    padding-top: 76px;
    background: var(--darker-bg);
    background-image: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.05) 0%, transparent 50%), linear-gradient(135deg, var(--darker-bg) 0%, var(--primary-color) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

    /* Add animated background particles */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.2), transparent), radial-gradient(1px 1px at 90px 40px, rgba(236, 72, 153, 0.3), transparent), radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 245, 0.2), transparent);
        background-size: 200px 200px;
        animation: float 20s ease-in-out infinite;
        pointer-events: none;
        z-index: -1;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(-60px) rotate(240deg);
    }
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar-brand {
    font-size: 1.6rem;
    color: var(--bright-blue) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

    .navbar-brand i {
        color: var(--bright-cyan);
        animation: glow 2s ease-in-out infinite alternate;
    }

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(0, 255, 245, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 255, 245, 0.8);
    }
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 15px;
    transition: var(--transition);
    color: var(--text-light) !important;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--bright-blue), var(--bright-cyan));
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover {
        color: var(--bright-blue) !important;
        transform: translateY(-2px);
    }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

.navbar-scrolled {
    background-color: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 50%, rgba(15, 52, 96, 0.9) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

    .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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.4;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 212, 255, 0.03) 60deg, transparent 120deg, rgba(139, 92, 246, 0.03) 180deg, transparent 240deg, rgba(0, 255, 245, 0.03) 300deg, transparent 360deg);
        animation: rotate 30s linear infinite;
        pointer-events: none;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bright-blue), var(--bright-cyan), var(--tech-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--bright-cyan);
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 0 20px rgba(0, 255, 245, 0.4);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.7;
}

/* Modern Glassmorphism Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--bright-blue);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .btn-primary-custom:hover::before {
        left: 100%;
    }

    .btn-primary-custom:hover {
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(139, 92, 246, 0.4));
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
        color: white;
    }

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--bright-cyan);
    color: var(--bright-cyan);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

    .btn-outline-custom:hover {
        background: var(--bright-cyan);
        color: var(--darker-bg);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 255, 245, 0.4);
    }

/* Sections with Glassmorphism */
.section-padding {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--bright-blue), var(--tech-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--bright-blue), var(--bright-cyan));
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

/* Modern Cards with Glassmorphism */
.card-modern {
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    position: relative;
}

    .card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
        opacity: 0;
        transition: var(--transition);
    }

    .card-modern:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
        border-color: rgba(0, 212, 255, 0.3);
    }

        .card-modern:hover::before {
            opacity: 1;
        }

    .card-modern .card-body {
        padding: 2.5rem;
        color: var(--text-light);
    }

    /* Compact cards for resume */
    .card-modern.mb-3 {
        margin-bottom: 0.8rem !important;
    }

.card-body.py-3 {
    padding: 1rem 1.5rem !important;
}

/* Skills with Neon Effect */
.skill-item {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .skill-item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
        opacity: 0;
        transition: var(--transition);
        animation: skillRotate 3s linear infinite;
    }

@keyframes skillRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.skill-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--bright-blue);
}

    .skill-item:hover::before {
        opacity: 1;
    }

.skill-icon {
    font-size: 4rem;
    color: var(--bright-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.skill-item:hover .skill-icon {
    color: var(--bright-cyan);
    text-shadow: 0 0 30px rgba(0, 255, 245, 0.8);
    transform: scale(1.1);
}

/* Project Cards with Hover Effects */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .project-card .card-img-top {
        height: 250px;
        object-fit: cover;
        transition: var(--transition);
        filter: brightness(0.8);
    }

    .project-card:hover .card-img-top {
        transform: scale(1.1);
        filter: brightness(1.1);
    }

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(139, 92, 246, 0.9));
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-item[data-category="automation"] .card {
    border-left: 4px solid var(--bright-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 245, 0.1);
}

.project-item[data-category="software"] .card {
    border-left: 4px solid var(--tech-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Timeline with Neon Effect */
.timeline {
    position: relative;
    padding-left: 3rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--bright-blue), var(--bright-cyan), var(--tech-purple));
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
}

    .timeline-item:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-glow);
        border-color: rgba(0, 212, 255, 0.3);
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -2.8rem;
        top: 2rem;
        width: 1.5rem;
        height: 1.5rem;
        background: var(--bright-cyan);
        border-radius: 50%;
        border: 4px solid var(--darker-bg);
        box-shadow: 0 0 20px rgba(0, 255, 245, 0.8);
        z-index: 2;
    }

/* Compact Timeline */
.timeline-compact {
    position: relative;
    padding-left: 1.8rem;
}

    .timeline-compact::before {
        content: '';
        position: absolute;
        left: 0.6rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--bright-blue), var(--bright-cyan));
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }

.timeline-item-compact {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

    .timeline-item-compact::before {
        content: '';
        position: absolute;
        left: -0.9rem;
        top: 0.3rem;
        width: 0.7rem;
        height: 0.7rem;
        background: var(--bright-blue);
        border-radius: 50%;
        border: 2px solid var(--darker-bg);
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    }

    .timeline-item-compact:last-child {
        margin-bottom: 0;
    }

    .timeline-item-compact ul {
        margin-bottom: 0.3rem;
    }

    .timeline-item-compact li {
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
        line-height: 1.4;
        color: var(--text-light);
    }

/* Contact Form */
.contact-form {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
}

.form-control {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1rem;
}

    .form-control:focus {
        background: rgba(13, 17, 23, 0.9);
        border-color: var(--bright-blue);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        color: var(--text-bright);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

.form-label {
    color: var(--bright-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bright-blue), var(--bright-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.contact-info-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

    .contact-info-item:last-child {
        border-bottom: none;
    }

    .contact-info-item h6 {
        color: var(--bright-blue);
        font-weight: 700;
    }

    .contact-info-item p {
        color: var(--text-light);
    }

/* Badges and Status */
.badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.bg-primary {
    background: linear-gradient(135deg, var(--bright-blue), var(--tech-purple)) !important;
}

.bg-success {
    background: linear-gradient(135deg, var(--bright-cyan), var(--bright-blue)) !important;
}

.bg-secondary {
    background: rgba(139, 148, 158, 0.8) !important;
}

.expertise-tags .badge {
    background: linear-gradient(45deg, var(--bright-blue), var(--tech-purple)) !important;
    border: none;
    font-weight: 600;
    margin: 0.2rem;
    transition: var(--transition);
}

    .expertise-tags .badge:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    }

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bright-cyan) !important;
    animation: techPulse 2s infinite;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--primary-color) 100%) !important;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(20px);
}

    footer h5, footer h6 {
        color: var(--bright-blue);
        font-weight: 700;
    }

    footer .badge {
        background: linear-gradient(45deg, var(--bright-cyan), var(--bright-blue)) !important;
        font-size: 0.7rem;
        margin: 0.1rem;
    }

    footer a {
        color: var(--text-light);
        transition: var(--transition);
    }

        footer a:hover {
            color: var(--bright-blue);
        }

/* Background Light Effects */
.bg-light-custom {
    background: rgba(30, 30, 46, 0.6) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes techPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 245, 0.8);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(0, 255, 245, 1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delayed {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bright-blue), var(--bright-cyan));
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(var(--bright-cyan), var(--tech-purple));
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

        .timeline::before {
            left: 0.7rem;
        }

    .timeline-item::before {
        left: -1.2rem;
    }

    .timeline-compact {
        padding-left: 1.2rem;
    }

        .timeline-compact::before {
            left: 0.4rem;
        }

    .timeline-item-compact::before {
        left: -0.7rem;
    }

    .skill-icon {
        font-size: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .card-modern .card-body {
        padding: 1.5rem;
    }
}

/* Resume Page Specific Styles - SUPER COMPACT */
.resume-page .section-padding {
    padding: 20px 0 !important;
}

.resume-page .section-title {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

.resume-page .text-center.mb-3 {
    margin-bottom: 1rem !important;
}

.resume-page .card-modern {
    margin-bottom: 0.4rem !important;
}

.resume-page .card-body {
    padding: 0.6rem 1rem !important;
}

    .resume-page .card-body.py-3 {
        padding: 0.6rem 1rem !important;
    }

.resume-page h1 {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
}

.resume-page h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.3rem !important;
}

.resume-page h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
}

.resume-page h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.3rem !important;
}

.resume-page h5 {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
}

.resume-page h6 {
    font-size: 0.9rem !important;
    margin-bottom: 0.1rem !important;
}

.resume-page .timeline-item-compact {
    margin-bottom: 0.8rem !important;
    padding-left: 1rem !important;
}

    .resume-page .timeline-item-compact li {
        margin-bottom: 0.1rem !important;
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .resume-page .timeline-item-compact ul {
        margin-bottom: 0.2rem !important;
        padding-left: 1rem !important;
    }

.resume-page .badge {
    font-size: 0.65rem !important;
    padding: 0.15rem 0.4rem !important;
    margin: 0.05rem 0.1rem !important;
}

.resume-page .row {
    margin-bottom: 0.3rem !important;
}

.resume-page .col-md-6 {
    margin-bottom: 0.2rem !important;
}

.resume-page p {
    margin-bottom: 0.3rem !important;
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
}

.resume-page .lead {
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem !important;
}

.resume-page small {
    font-size: 0.75rem !important;
}

.resume-page .text-muted {
    font-size: 0.75rem !important;
}

.resume-page .timeline-compact {
    padding-left: 1.5rem !important;
}

    .resume-page .timeline-compact::before {
        left: 0.5rem !important;
    }

.resume-page .timeline-item-compact::before {
    left: -0.75rem !important;
    top: 0.2rem !important;
    width: 0.5rem !important;
    height: 0.5rem !important;
}

/* Remove extra spacing from Bootstrap */
.resume-page .mb-1 {
    margin-bottom: 0.1rem !important;
}

.resume-page .mb-2 {
    margin-bottom: 0.2rem !important;
}

.resume-page .mb-3 {
    margin-bottom: 0.3rem !important;
}

.resume-page .mt-2 {
    margin-top: 0.2rem !important;
}

.resume-page .mt-3 {
    margin-top: 0.3rem !important;
}

.resume-page .d-flex {
    margin-bottom: 0.2rem !important;
}

/* Make badges inline and compact */
.resume-page .badge + .badge {
    margin-left: 0.1rem !important;
}

/* Compact spacing for skills section */
.resume-page .row .col-md-6 .mb-2 {
    margin-bottom: 0.1rem !important;
}

@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .navbar, footer, .btn {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
    }

    .card-modern {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }

        .card-modern .card-body {
            color: black !important;
        }

    .section-title {
        color: black !important;
    }

    .timeline-item-compact li {
        color: black !important;
    }

    .form-label, .contact-info-item h6 {
        color: black !important;
    }
}

/* Utility Classes */
.text-primary-custom {
    color: var(--bright-blue) !important;
}

.text-secondary-custom {
    color: var(--bright-cyan) !important;
}

.text-bright {
    color: var(--text-bright) !important;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

/* Tech Badges for Hero Section */
.tech-badge {
    background: rgba(30, 30, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bright-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

    .tech-badge:nth-child(1) {
        animation-delay: 0s;
    }

    .tech-badge:nth-child(2) {
        animation-delay: 0.5s;
    }

    .tech-badge:nth-child(3) {
        animation-delay: 1s;
    }

    .tech-badge:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: var(--bright-cyan);
        color: var(--bright-cyan);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    }

    .tech-badge i {
        font-size: 1.2rem;
        color: var(--bright-cyan);
    }

/* Floating animation for tech badges */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced skill items with better spacing */
.skill-item h5 {
    color: var(--bright-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.skill-item p {
    color: var(--text-light);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Technology grid enhancements */
.tech-item {
    padding: 1.5rem;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
}

    .tech-item:hover {
        background: rgba(0, 212, 255, 0.1);
        border-color: var(--bright-blue);
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    }

    .tech-item i {
        transition: var(--transition);
    }

    .tech-item:hover i {
        color: var(--bright-cyan) !important;
        text-shadow: 0 0 20px rgba(0, 255, 245, 0.8);
        transform: scale(1.2);
    }

    .tech-item h6 {
        color: var(--text-light);
        font-weight: 600;
        margin-top: 1rem;
        transition: var(--transition);
    }

    .tech-item:hover h6 {
        color: var(--bright-cyan);
    }
