/* ===== ORIGINAL WORKING DESIGN - RESTORED ===== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --neon-cyan: #00d4ff;
    --neon-blue: #0099cc;
    --neon-purple: #9d4edd;
    --accent: var(--neon-cyan);
    
    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-neon: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
    
    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-blue: 0 0 20px rgba(0, 153, 204, 0.5);
    
    /* Container */
    --container-max-width: 1200px;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Site-wide blast overlay */
.site-blast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, 
        rgba(0, 212, 255, 0.3) 0%, 
        rgba(157, 78, 221, 0.2) 30%, 
        rgba(0, 0, 0, 0.8) 70%);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.site-blast-overlay.active {
    opacity: 1;
    animation: siteBlastWave 1.2s ease-out forwards;
}

@keyframes siteBlastWave {
    0% {
        transform: scale(0);
        opacity: 0;
        background: radial-gradient(circle at center, 
            rgba(0, 212, 255, 0.1) 0%, 
            rgba(157, 78, 221, 0.05) 30%, 
            rgba(0, 0, 0, 0.3) 70%);
    }
    20% {
        transform: scale(0.3);
        opacity: 0.6;
        background: radial-gradient(circle at center, 
            rgba(0, 212, 255, 0.4) 0%, 
            rgba(157, 78, 221, 0.3) 30%, 
            rgba(255, 20, 147, 0.2) 50%,
            rgba(0, 0, 0, 0.6) 70%);
    }
    40% {
        transform: scale(0.7);
        opacity: 0.9;
        background: radial-gradient(circle at center, 
            rgba(0, 212, 255, 0.7) 0%, 
            rgba(157, 78, 221, 0.5) 20%, 
            rgba(255, 20, 147, 0.4) 40%,
            rgba(0, 255, 255, 0.3) 60%,
            rgba(0, 0, 0, 0.8) 80%);
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
        background: radial-gradient(circle at center, 
            rgba(0, 212, 255, 0.9) 0%, 
            rgba(157, 78, 221, 0.7) 15%, 
            rgba(255, 20, 147, 0.6) 30%,
            rgba(0, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, 0.3) 60%,
            rgba(0, 0, 0, 0.9) 75%);
    }
    80% {
        transform: scale(1.5);
        opacity: 0.7;
        background: radial-gradient(circle at center, 
            rgba(255, 255, 255, 0.8) 0%, 
            rgba(0, 212, 255, 0.6) 20%, 
            rgba(157, 78, 221, 0.4) 40%,
            rgba(0, 0, 0, 0.95) 70%);
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
        background: radial-gradient(circle at center, 
            rgba(255, 255, 255, 0.2) 0%, 
            rgba(0, 0, 0, 1) 50%);
    }
}

/* Enhanced container alignment */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Site-wide shake animation during blast */
.site-shake {
    animation: siteShake 0.8s ease-in-out;
}

@keyframes siteShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-5px) translateY(-2px); }
    20% { transform: translateX(5px) translateY(2px); }
    30% { transform: translateX(-3px) translateY(-1px); }
    40% { transform: translateX(3px) translateY(1px); }
    50% { transform: translateX(-2px) translateY(-1px); }
    60% { transform: translateX(2px) translateY(1px); }
    70% { transform: translateX(-1px) translateY(0px); }
    80% { transform: translateX(1px) translateY(0px); }
    90% { transform: translateX(0px) translateY(0px); }
}
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Header */
.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-cyan);
    z-index: 1000;
    padding: 15px 0;
}

.cyber-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cyber-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.cyber-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.accent {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.cyber-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 212, 255, 0.1);
    text-shadow: var(--glow-cyan);
}

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

.nav-link:hover::after {
    width: 80%;
}

/* Buttons */
.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cyber-btn.primary {
    background: var(--gradient-neon);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.cyber-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.cyber-btn.secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.cyber-btn.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-cyan), inset 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
}

.cyber-btn.large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Section */
.cyber-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        rgba(0, 212, 255, 0.05) 50%, 
        var(--bg-primary) 100%);
    overflow: hidden;
}

.cyber-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-text {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
}

.cyber-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.title-line {
    display: block;
    margin-bottom: 0.2em;
}

.accent-glow {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: var(--glow-cyan); }
    100% { text-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.stat-item {
    text-align: center;
    padding: 1rem 0.8rem;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.stat-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    background: rgba(0, 212, 255, 0.06);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: statGlow 2s ease-in-out infinite alternate;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
    word-wrap: break-word;
}
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-text {
    margin-right: 0.5rem;
}

.btn-icon {
    font-size: 1rem;
}

.hero-trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.trust-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
    padding: 20px;
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cyber-hero .container {
        gap: 3rem;
    }
    
    .cyber-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .cyber-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .cyber-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cyber-nav {
        display: none;
    }
    
    .cyber-hero {
        padding: 80px 0 40px;
    }
    
    .cyber-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-btn {
        width: 100%;
        max-width: 300px;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .cyber-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ===== ATOMIC STRUCTURE ===== */
.atomic-structure {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    animation: scaleIn 1.2s ease-out 0.5s both;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    cursor: pointer;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.8);
}

.nucleus:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.8),
        0 0 100px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.devops-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.devops-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nucleus-logo {
    width: 50px;
    height: 50px;
}

.nucleus-logo img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.nucleus:hover .nucleus-logo img {
    filter: brightness(1) invert(0) drop-shadow(0 0 15px rgba(0, 212, 255, 1));
    transform: scale(1.1);
}

.nucleus-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: nucleusPulse 3s ease-in-out infinite;
}

@keyframes nucleusPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7; 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.2); 
        opacity: 1; 
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
    }
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Electron Shells */
.shell {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: shellRotate 20s linear infinite;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.2),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.shell-1 { 
    width: 150px; 
    height: 150px; 
    animation-duration: 15s;
    border-color: rgba(0, 212, 255, 0.6);
}

.shell-2 { 
    width: 220px; 
    height: 220px; 
    animation-duration: 20s;
    animation-direction: reverse;
    border-color: rgba(157, 78, 221, 0.5);
}

.shell-3 { 
    width: 290px; 
    height: 290px; 
    animation-duration: 25s;
    border-color: rgba(0, 255, 255, 0.4);
}

.shell-4 { 
    width: 360px; 
    height: 360px; 
    animation-duration: 30s;
    animation-direction: reverse;
    border-color: rgba(255, 20, 147, 0.4);
}

.shell-5 { 
    width: 430px; 
    height: 430px; 
    animation-duration: 35s;
    border-color: rgba(0, 212, 255, 0.3);
}

@keyframes shellRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Electrons */
.electron {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.electron img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(0, 212, 255, 0.6));
    transition: all 0.3s ease;
}

.electron:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(157, 78, 221, 0.4));
    transform: scale(1.3);
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.8),
        0 0 50px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 5;
    border-color: var(--neon-purple);
}

.electron:hover img {
    filter: brightness(1) invert(0) drop-shadow(0 0 10px rgba(0, 212, 255, 1));
    transform: scale(1.1);
}

/* Disable all pointer events on atomic structure images */
.atomic-structure img {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Disable pointer events on individual logos */
.devops-logo {
    pointer-events: none !important;
    user-select: none !important;
}

/* Re-enable pointer events only on the main atomic structure for double-click */
.atomic-structure {
    pointer-events: auto !important;
    cursor: pointer;
}

/* Disable pointer events on nucleus specifically */
.nucleus {
    pointer-events: none !important;
}

/* Disable pointer events on electrons */
.electron {
    pointer-events: none !important;
}

/* Re-enable hover effects through CSS only */
.atomic-structure:hover .devops-logo img {
    filter: brightness(1) invert(0) drop-shadow(0 0 10px rgba(0, 212, 255, 1));
    transform: scale(1.1);
}

.atomic-structure:hover .electron {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(157, 78, 221, 0.4));
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.8),
        0 0 50px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: var(--neon-purple);
}

/* Electron Positions */
.shell-1 .electron-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.shell-2 .electron-2 { top: -20px; left: 50%; transform: translateX(-50%); }
.shell-2 .electron-3 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.shell-3 .electron-4 { top: -20px; left: 50%; transform: translateX(-50%); }
.shell-3 .electron-5 { right: -20px; top: 50%; transform: translateY(-50%); }
.shell-3 .electron-6 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.shell-4 .electron-7 { top: -20px; left: 50%; transform: translateX(-50%); }
.shell-4 .electron-8 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.shell-5 .electron-9 { left: -20px; top: 50%; transform: translateY(-50%); }
.shell-5 .electron-10 { right: -20px; top: 50%; transform: translateY(-50%); }

/* Atomic Blast Animation - Enhanced */
@keyframes atomicBlast {
    0% { 
        transform: scale(1); 
        opacity: 1; 
        filter: brightness(1);
    }
    20% { 
        transform: scale(1.2); 
        opacity: 0.9;
        filter: brightness(1.5);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
    }
    40% { 
        transform: scale(1.5); 
        opacity: 0.8;
        filter: brightness(2);
        box-shadow: 0 0 100px rgba(0, 212, 255, 1);
    }
    60% { 
        transform: scale(2); 
        opacity: 0.6;
        filter: brightness(3);
        box-shadow: 0 0 200px rgba(255, 255, 255, 0.8);
    }
    80% { 
        transform: scale(2.5); 
        opacity: 0.3;
        filter: brightness(4);
        box-shadow: 0 0 300px rgba(255, 255, 255, 1);
    }
    100% { 
        transform: scale(3); 
        opacity: 0; 
        filter: brightness(5);
        box-shadow: 0 0 500px rgba(255, 255, 255, 1);
    }
}

.atomic-structure.blast {
    animation: atomicBlast 1.2s ease-out forwards;
    z-index: 10000;
}

.atomic-structure.blast .shell {
    animation-play-state: paused;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
}

.atomic-structure.blast .electron {
    animation: electronScatter 1.2s ease-out forwards;
    border-color: rgba(255, 255, 255, 1);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(0, 212, 255, 0.6));
}

.atomic-structure.blast .nucleus {
    animation: nucleusExplode 1.2s ease-out forwards;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(0, 212, 255, 0.8));
    border-color: rgba(255, 255, 255, 1);
}

@keyframes nucleusExplode {
    0% { 
        transform: translate(-50%, -50%) scale(1); 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
    30% { 
        transform: translate(-50%, -50%) scale(1.5); 
        box-shadow: 0 0 100px rgba(255, 255, 255, 0.8);
    }
    60% { 
        transform: translate(-50%, -50%) scale(2); 
        box-shadow: 0 0 200px rgba(255, 255, 255, 1);
    }
    100% { 
        transform: translate(-50%, -50%) scale(3); 
        box-shadow: 0 0 400px rgba(255, 255, 255, 1);
        opacity: 0;
    }
}

@keyframes electronScatter {
    0% { 
        transform: scale(1); 
        opacity: 1; 
        filter: brightness(1);
    }
    30% { 
        transform: scale(1.5); 
        opacity: 0.8; 
        filter: brightness(2);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
    60% { 
        transform: scale(2) translateX(var(--scatter-x, 200px)) translateY(var(--scatter-y, 200px)); 
        opacity: 0.4; 
        filter: brightness(3);
        box-shadow: 0 0 50px rgba(255, 255, 255, 1);
    }
    100% { 
        transform: scale(0) translateX(var(--scatter-x, 300px)) translateY(var(--scatter-y, 300px)); 
        opacity: 0; 
        filter: brightness(4);
    }
}

/* ===== ENHANCED SECTIONS ALIGNMENT ===== */
.cyber-section {
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    overflow: hidden;
}

.cyber-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.02) 50%, 
        transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* ===== ENHANCED SERVICES SECTION ===== */
/* ===== UNIVERSAL CRYSTAL CLEAR TITLE DESIGN ===== */
.cyber-section-title,
.cyber-title,
.hero-title,
.section-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3);
    filter: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cyber-section-title::before,
.cyber-title::before,
.hero-title::before,
.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 50%, 
        transparent 100%);
    transform: translateX(-100%);
    animation: titleSweep 4s ease-in-out infinite;
    z-index: -1;
}

.cyber-section-title::after,
.cyber-title::after,
.hero-title::after,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-cyan) 20%, 
        var(--neon-blue) 50%, 
        var(--neon-cyan) 80%, 
        transparent 100%);
    transform: translateY(-50%) scaleX(0);
    animation: titleUnderline 3s ease-in-out infinite;
    z-index: -1;
}

/* Animated Title Classes */
.animated-title,
.cyber-section-title,
.cyber-title,
.hero-title {
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
        color: var(--neon-cyan);
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 0.5),
            0 0 20px rgba(0, 212, 255, 0.3);
    }
    25% {
        transform: translateY(-3px);
        color: var(--neon-blue);
        text-shadow: 
            0 0 12px rgba(0, 153, 204, 0.6),
            0 0 24px rgba(0, 153, 204, 0.4);
    }
    50% {
        transform: translateY(0px);
        color: var(--neon-purple);
        text-shadow: 
            0 0 10px rgba(157, 78, 221, 0.5),
            0 0 20px rgba(157, 78, 221, 0.3);
    }
    75% {
        transform: translateY(-2px);
        color: var(--neon-blue);
        text-shadow: 
            0 0 12px rgba(0, 153, 204, 0.6),
            0 0 24px rgba(0, 153, 204, 0.4);
    }
}

@keyframes titleSweep {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes titleUnderline {
    0%, 100% {
        transform: translateY(-50%) scaleX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
    }
}

/* Universal Title Accent */
.title-accent {
    color: var(--neon-purple);
    margin-right: 0.8rem;
    display: inline-block;
    position: relative;
    animation: accentPulse 3s ease-in-out infinite;
    text-shadow: 
        0 0 15px var(--neon-purple),
        0 0 30px var(--neon-purple);
    filter: none;
    transform: translateZ(0);
}

.title-accent::before {
    content: attr(data-accent);
    position: absolute;
    top: 2px;
    left: 2px;
    color: var(--neon-cyan);
    opacity: 0.3;
    animation: accentShadow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes accentPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        color: var(--neon-purple);
        text-shadow: 
            0 0 15px var(--neon-purple),
            0 0 30px var(--neon-purple);
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.9;
        color: var(--neon-cyan);
        text-shadow: 
            0 0 18px var(--neon-cyan),
            0 0 36px var(--neon-cyan);
    }
}

@keyframes accentShadow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(2px, 2px);
    }
    50% {
        opacity: 0.1;
        transform: translate(4px, 4px);
    }
}

/* Specific Title Variations */
.hero-title {
    font-size: 4.5rem;
    animation-delay: 0.2s;
}

.about-title {
    animation-delay: 0.4s;
}

.contact-title {
    animation-delay: 0.6s;
}

/* Subtitle Randomizer Button */
.subtitle-randomizer-btn {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--bg-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.subtitle-randomizer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

.subtitle-randomizer-btn:active {
    transform: translateY(0px);
}

.randomizer-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.subtitle-randomizer-btn:hover .randomizer-glow {
    left: 100%;
}

.randomizer-icon {
    font-size: 1rem;
    animation: rotateIcon 2s linear infinite;
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.subtitle-randomizer-btn.randomizing {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    transform: scale(0.95);
}

.subtitle-randomizer-btn.randomizing .randomizer-icon {
    animation: rotateIcon 0.3s linear infinite;
}

/* Dynamic Subtitle Animation */
.section-subtitle {
    transition: all 0.5s ease;
}

.section-subtitle.changing {
    opacity: 0;
    transform: translateY(-10px);
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--neon-cyan) 0%, 
        var(--neon-blue) 50%, 
        var(--neon-purple) 100%);
    border-radius: 2px;
    animation: headerLine 2s ease-out 1s forwards;
}

@keyframes headerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerLine {
    0% {
        width: 0;
    }
    100% {
        width: 200px;
    }
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFade 1.2s ease-out 0.6s both;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-cyan) 50%, 
        transparent 100%);
    animation: subtitleUnderline 1.5s ease-out 1.5s forwards;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 150px;
    }
}

/* Enhanced Shuffle Button */
.shuffle-btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--bg-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.shuffle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.shuffle-btn:active {
    transform: translateY(-1px);
}

.shuffle-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.shuffle-btn:hover .shuffle-glow {
    left: 100%;
}

.shuffle-icon {
    font-size: 1.2rem;
    animation: shuffleRotate 2s linear infinite;
}

@keyframes shuffleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Service Cards */
.service-card {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 25px 50px rgba(0, 212, 255, 0.25),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.service-card:hover .service-icon img {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.service-description {
    padding: 0 2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    padding: 0 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.feature-icon {
    color: var(--neon-cyan);
    font-size: 0.8rem;
    min-width: 15px;
}

.card-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-primary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-btn:hover .btn-glow {
    left: 100%;
}

/* Enhanced About Section */
.about-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.about-visual {
    animation: slideInRight 0.8s ease-out 0.5s both;
}

/* Enhanced Contact Section */
.contact-section {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.03) 0%, 
        rgba(0, 212, 255, 0.03) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.contact-form {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ENHANCED SERVICES SECTION ALIGNMENT ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: stretch;
    justify-content: center;
    padding: 0 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
    max-width: 450px;
    margin: 0 auto;
}

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

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

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 25px 50px rgba(0, 212, 255, 0.25),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-description {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features {
    padding: 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-height: 40px;
}

.card-footer {
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    height: 50px;
}
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

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

.service-icon {
    font-size: 2.5rem;
    padding: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: scale(1.1);
}

.service-card:hover .service-icon img {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin: 0;
    line-height: 1.2;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
}

.service-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.profile-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    animation: profileGlow 3s ease-in-out infinite;
}

@keyframes profileGlow {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.05); opacity: 1; }
}

.profile-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.profile-designation {
    font-size: 1rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.profile-location {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.profile-summary {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
}

.profile-summary p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

.about-content {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.about-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.achievements {
    margin-top: 2rem;
}

.achievements h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.achievements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .expertise-tags {
        gap: 0.25rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cyber-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info,
.contact-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* Contact Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 212, 255, 0.05);
}

.form-control::placeholder {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.cyber-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--neon-cyan);
    padding: 3rem 0 1rem;
    position: relative;
}

.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: var(--glow-cyan);
}

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

.footer-section {
    position: relative;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
}

/* Responsive Contact & Footer */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== LOGO ROTATION ANIMATIONS ===== */
@keyframes logoSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.9);
    }
}

@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#dynamicLogoSuffix {
    transition: all 0.4s ease-in-out;
    display: inline-block;
    min-width: 80px;
    text-align: left;
}

/* ===== ROLE ROTATION ANIMATIONS ===== */
@keyframes roleSlideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

@keyframes roleSlideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#dynamicRole {
    transition: all 0.3s ease;
}

/* ===== ATOMIC STRUCTURE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .atomic-structure {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .atomic-structure {
        width: 380px;
        height: 380px;
    }
    
    .nucleus {
        width: 70px;
        height: 70px;
    }
    
    .nucleus-icon {
        font-size: 1.8rem;
    }
    
    .shell-1 { width: 120px; height: 120px; }
    .shell-2 { width: 170px; height: 170px; }
    .shell-3 { width: 220px; height: 220px; }
    .shell-4 { width: 270px; height: 270px; }
    .shell-5 { width: 320px; height: 320px; }
    
    .electron {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .atomic-structure {
        width: 320px;
        height: 320px;
    }
    
    .nucleus {
        width: 60px;
        height: 60px;
    }
    
    .nucleus-icon {
        font-size: 1.5rem;
    }
    
    .shell-1 { width: 100px; height: 100px; }
    .shell-2 { width: 140px; height: 140px; }
    .shell-3 { width: 180px; height: 180px; }
    .shell-4 { width: 220px; height: 220px; }
    .shell-5 { width: 260px; height: 260px; }
    
    .electron {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.15s ease; }
.transition-slow { transition: all 0.5s ease; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.rounded { border-radius: 8px; }
.rounded-full { border-radius: 50%; }
.rounded-lg { border-radius: 12px; }

.border { border: 1px solid rgba(0, 212, 255, 0.3); }
.border-cyan { border: 1px solid var(--neon-cyan); }

.bg-dark { background: rgba(0, 0, 0, 0.4); }
.bg-darker { background: rgba(0, 0, 0, 0.6); }
.bg-cyan { background: rgba(0, 212, 255, 0.1); }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-cyan { color: var(--neon-cyan); }

.shadow-glow { box-shadow: var(--glow-cyan); }
.shadow-blue { box-shadow: var(--glow-blue); }
/* Service Card Shuffle Animation */
@keyframes serviceCardShuffle {
    0% { 
        transform: translateY(0) rotateY(0deg); 
        opacity: 1;
    }
    25% { 
        transform: translateY(-20px) rotateY(90deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotateY(180deg); 
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-20px) rotateY(270deg); 
        opacity: 0.7;
    }
    100% { 
        transform: translateY(0) rotateY(360deg); 
        opacity: 1;
    }
}

.service-card.shuffling {
    animation: serviceCardShuffle 0.8s ease-in-out;
}

/* Enhanced Service Card Interactions */
.service-card {
    cursor: pointer;
}

.service-card:active {
    transform: translateY(-5px) scale(0.98);
}

.service-icon {
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

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

/* Service Features Enhancement */
.service-features {
    position: relative;
}

.feature-item {
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

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

/* Service CTA Enhancement */
.service-cta {
    position: relative;
    overflow: hidden;
}

.service-cta::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: all 0.5s ease;
}

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

/* Responsive Service Cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .service-title {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        font-size: 2rem;
        padding: 0.4rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .service-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
/* ===== ENHANCED RESPONSIVE SERVICES ALIGNMENT ===== */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 2rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        min-height: 580px;
    }
    
    .cyber-section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 560px;
        max-width: 400px;
    }
    
    .card-header {
        padding: 2rem 1.5rem 1rem;
        min-height: 160px;
    }
    
    .service-features {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card {
        min-height: 540px;
        max-width: 100%;
        margin: 0;
    }
    
    .cyber-section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .card-header {
        padding: 2rem 1.5rem 1rem;
        min-height: 150px;
    }
    
    .service-description {
        padding: 0 1.5rem 1rem;
        min-height: 70px;
    }
    
    .service-features {
        padding: 0 1.5rem;
        min-height: 200px;
    }
    
    .card-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-height: 520px;
        border-radius: 15px;
    }
    
    .cyber-section-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 1.5rem 1rem 1rem;
        min-height: 140px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon img {
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 1rem;
        min-height: 2.2rem;
    }
    
    .service-description {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
        min-height: 60px;
    }
    
    .service-features {
        padding: 0 1rem;
        min-height: 180px;
    }
    
    .feature-item {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        min-height: 30px;
    }
    
    .card-footer {
        padding: 1rem;
    }
    
    .service-btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
        min-width: 160px;
        height: 45px;
    }
    
    .shuffle-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}
/* ===== UNIQUE ANIMATIONS FOR ALL SECTION TITLES ===== */

/* About Section Title Animation */
.about-section .cyber-section-title {
    animation: 
        aboutTitleWave 4s ease-in-out infinite,
        aboutTitleFloat 6s ease-in-out infinite;
}

@keyframes aboutTitleWave {
    0%, 100% {
        background-position: 0% 50%;
        transform: skewX(0deg);
    }
    25% {
        background-position: 25% 50%;
        transform: skewX(2deg);
    }
    50% {
        background-position: 50% 50%;
        transform: skewX(0deg);
    }
    75% {
        background-position: 75% 50%;
        transform: skewX(-2deg);
    }
}

@keyframes aboutTitleFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    33% {
        transform: translateY(-8px) rotateZ(1deg);
    }
    66% {
        transform: translateY(4px) rotateZ(-1deg);
    }
}

/* Contact Section Title Animation */
.contact-section .cyber-section-title {
    animation: 
        contactTitlePulse 3s ease-in-out infinite,
        contactTitleShake 5s ease-in-out infinite;
}

@keyframes contactTitlePulse {
    0%, 100% {
        transform: scale(1) perspective(1000px) rotateX(0deg);
        background-size: 100% 100%;
    }
    50% {
        transform: scale(1.08) perspective(1000px) rotateX(5deg);
        background-size: 150% 100%;
    }
}

@keyframes contactTitleShake {
    0%, 100% {
        transform: translateX(0px);
    }
    10% {
        transform: translateX(-2px);
    }
    20% {
        transform: translateX(2px);
    }
    30% {
        transform: translateX(-1px);
    }
    40% {
        transform: translateX(1px);
    }
    50% {
        transform: translateX(0px);
    }
}

/* Hero Title Animation */
.hero-title {
    animation: 
        heroTitleGlitch 4s ease-in-out infinite,
        heroTitleZoom 6s ease-in-out infinite;
}

@keyframes heroTitleGlitch {
    0%, 90%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, 2px);
        filter: hue-rotate(360deg);
    }
}

@keyframes heroTitleZoom {
    0%, 100% {
        transform: scale(1) rotateY(0deg);
    }
    25% {
        transform: scale(1.02) rotateY(2deg);
    }
    50% {
        transform: scale(1.05) rotateY(0deg);
    }
    75% {
        transform: scale(1.02) rotateY(-2deg);
    }
}

/* Generic Section Title Animations */
.cyber-title {
    animation: 
        genericTitleSlide 5s ease-in-out infinite,
        genericTitleRotate 8s linear infinite;
}

@keyframes genericTitleSlide {
    0%, 100% {
        transform: translateX(0px) skewX(0deg);
        background-position: 0% 50%;
    }
    25% {
        transform: translateX(5px) skewX(1deg);
        background-position: 25% 50%;
    }
    50% {
        transform: translateX(0px) skewX(0deg);
        background-position: 50% 50%;
    }
    75% {
        transform: translateX(-5px) skewX(-1deg);
        background-position: 75% 50%;
    }
}

@keyframes genericTitleRotate {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(1000px) rotateX(2deg) rotateY(1deg);
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: perspective(1000px) rotateX(-2deg) rotateY(-1deg);
    }
    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
}

/* Service Card Title Animations */
.service-title {
    animation: serviceTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes serviceTitleGlow {
    0% {
        color: var(--neon-cyan);
        text-shadow: 0 0 5px var(--neon-cyan);
        transform: scale(1);
    }
    100% {
        color: var(--neon-blue);
        text-shadow: 
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue);
        transform: scale(1.02);
    }
}

/* Responsive Title Animations */
@media (max-width: 768px) {
    .cyber-section-title {
        font-size: 2.8rem;
        animation-duration: 6s;
    }
    
    .title-accent {
        animation-duration: 3s;
    }
    
    .animated-title {
        animation-duration: 8s;
    }
}

@media (max-width: 480px) {
    .cyber-section-title {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }
    
    .section-header::before {
        width: 60px;
    }
    
    @keyframes headerLine {
        0%, 100% {
            width: 60px;
        }
        50% {
            width: 120px;
        }
    }
}
/* ===== RESPONSIVE UNIVERSAL TITLE DESIGN ===== */
@media (max-width: 1200px) {
    .cyber-section-title,
    .cyber-title,
    .hero-title,
    .section-title {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .cyber-section-title,
    .cyber-title,
    .hero-title,
    .section-title {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .cyber-section-title,
    .cyber-title,
    .hero-title,
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 0.08em;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-header::before {
        bottom: -20px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    @keyframes headerLine {
        0% {
            width: 0;
        }
        100% {
            width: 150px;
        }
    }
}

@media (max-width: 480px) {
    .cyber-section-title,
    .cyber-title,
    .hero-title,
    .section-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-accent {
        margin-right: 0.5rem;
        font-size: 0.9em;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header::before {
        bottom: -15px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle::after {
        bottom: -10px;
    }
    
    @keyframes headerLine {
        0% {
            width: 0;
        }
        100% {
            width: 100px;
        }
    }
    
    @keyframes subtitleUnderline {
        0% {
            width: 0;
        }
        100% {
            width: 80px;
        }
    }
}
/* ===== ENHANCED ABOUT SECTION DESIGN ===== */
.about-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.02) 0%, 
        rgba(157, 78, 221, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.about-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.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

/* Role Randomizer Button */
.role-randomizer-btn {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--bg-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.role-randomizer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.randomizer-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.role-randomizer-btn:hover .randomizer-glow {
    left: 100%;
}

.randomizer-icon {
    font-size: 1.2rem;
    animation: diceRoll 2s linear infinite;
}

@keyframes diceRoll {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced About Grid - Fixed Alignment */
.about-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Profile Card - Better Alignment */
.profile-card {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    animation: profileCardFloat 6s ease-in-out infinite;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

/* Profile Stats - Fixed Alignment */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    align-items: stretch;
}

/* Profile Summary - Better Alignment */
.profile-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.profile-summary p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Expertise Tags - Better Layout */
.expertise-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 2rem 0;
}

/* Profile Actions - Better Spacing */
.profile-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Enhanced Profile Buttons - HIRE_ME & EMAIL_ME */
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.profile-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-btn span::after {
    content: '';
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* HIRE_ME Button - Primary Style */
.profile-btn.primary {
    background: linear-gradient(135deg, 
        var(--neon-cyan) 0%, 
        var(--neon-blue) 50%, 
        var(--neon-purple) 100%);
    background-size: 200% 200%;
    color: var(--bg-primary);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 4s ease-in-out infinite;
}

.profile-btn.primary span::after {
    content: '🚀';
}

.profile-btn.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.5),
        0 0 30px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 100%;
}

.profile-btn.primary:active {
    transform: translateY(-2px) scale(1.02);
}

/* EMAIL_ME Button - Secondary Style */
.profile-btn.secondary {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    position: relative;
}

.profile-btn.secondary span::after {
    content: '✉️';
}

.profile-btn.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px;
    z-index: 0;
}

.profile-btn.secondary:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--neon-purple);
    color: var(--bg-primary);
    box-shadow: 
        0 15px 40px rgba(157, 78, 221, 0.4),
        0 0 30px rgba(157, 78, 221, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.profile-btn.secondary:hover::after {
    opacity: 1;
}

.profile-btn.secondary:hover span {
    color: var(--bg-primary);
}

.profile-btn.secondary:active {
    transform: translateY(-2px) scale(1.02);
}

/* Enhanced Button Glow Effect */
.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-cyan), 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-cyan));
    background-size: 400% 400%;
    border-radius: 32px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s linear infinite;
    z-index: -1;
}

.profile-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Keyframe Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Button Pulse Animation */
.profile-btn {
    animation: buttonPulse 6s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.profile-btn.secondary {
    animation: buttonPulseSecondary 6s ease-in-out infinite;
}

@keyframes buttonPulseSecondary {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 212, 255, 0.2),
            inset 0 0 20px rgba(0, 212, 255, 0.05);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(157, 78, 221, 0.3),
            inset 0 0 20px rgba(157, 78, 221, 0.08);
    }
}

/* Enhanced About Content - Better Alignment */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 1rem;
}

.content-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(157, 78, 221, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.content-text {
    text-align: left;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

/* Achievements Grid - Better Alignment */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.achievement-content {
    flex: 1;
}

.achievement-content h4 {
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.achievement-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

/* Competencies Grid - Better Layout */
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.competency-category {
    text-align: left;
}

.competency-category h4 {
    color: var(--neon-purple);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left;
}

.competency-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
/* ===== RESPONSIVE ABOUT SECTION ALIGNMENT ===== */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 800px;
    }
    
    .profile-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-grid {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .profile-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .stat-item {
        min-height: 70px;
        padding: 1rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        max-width: 100%;
    }
    
    .expertise-tags {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .profile-btn {
        min-width: 120px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .profile-btn span::after {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .content-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievement-content {
        text-align: center;
    }
    
    .achievement-content h4,
    .achievement-content p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-designation {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .content-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .title-icon {
        font-size: 1.5rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .competency-category h4 {
        font-size: 1rem;
    }
    
    .competency-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
/* ===== ENHANCED CONTACT SECTION DESIGN ===== */
.contact-section {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.03) 0%, 
        rgba(0, 212, 255, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.contact-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="contactGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(157,78,221,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrid)"/></svg>');
    opacity: 0.4;
    animation: gridMove 25s linear infinite;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Contact Info */
.contact-info {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    animation: contactInfoFloat 8s ease-in-out infinite;
}

@keyframes contactInfoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.contact-header {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-details h4 {
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--neon-cyan);
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.contact-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.contact-stats .stat-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Contact Form */
.contact-form {
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.08) 0%, 
        rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Form Styling */
.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Enhanced Select Dropdown Styling */
select.form-control {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

select.form-control:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    background: rgba(157, 78, 221, 0.15);
}

/* Select Options Styling */
select.form-control option {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
    border: none;
}

select.form-control option:hover,
select.form-control option:focus,
select.form-control option:checked {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: var(--bg-primary);
}

/* Webkit Select Styling */
select.form-control::-webkit-scrollbar {
    width: 8px;
}

select.form-control::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

select.form-control::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    background: rgba(157, 78, 221, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-icon {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-size: 1.2rem;
    color: var(--neon-purple);
    pointer-events: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    border: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.contact-btn.primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: var(--bg-primary);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
}

.contact-btn.secondary {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.4);
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.contact-btn.secondary:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-primary);
    border-color: var(--neon-purple);
}

.btn-glow {
    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;
}

.contact-btn:hover .btn-glow {
    left: 100%;
}

/* Form Footer */
.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(0, 255, 0, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    margin-top: 2rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h4 {
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-secondary);
    margin: 0;
}

/* Loading State */
.contact-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-btn.loading .btn-text::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}
/* ===== RESPONSIVE CONTACT SECTION ===== */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 700px;
    }
    
    .contact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .contact-title,
    .form-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        margin-top: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon img {
        width: 24px;
        height: 24px;
    }
    
    .form-control {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .form-icon {
        left: 0.8rem;
        bottom: 0.8rem;
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
/* ===== ENHANCED SELECT DROPDOWN STYLING ===== */

/* Custom Select Wrapper for Better Control */
.form-group select.form-control {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    border: 2px solid rgba(157, 78, 221, 0.4);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group select.form-control:hover {
    border-color: var(--neon-purple);
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 100%);
}

.form-group select.form-control:focus {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(157, 78, 221, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.15) 0%, 
        rgba(0, 212, 255, 0.15) 100%);
}

/* Enhanced Dropdown Arrow */
select.form-control {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M7 10L12 15L17 10" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 16px;
    background-position: right 1rem center;
}

/* Firefox Select Styling */
@-moz-document url-prefix() {
    select.form-control {
        background-image: none;
        padding-right: 1rem;
    }
}

/* Option Styling for Different Browsers */
select.form-control option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.8rem;
    font-weight: 500;
}

select.form-control option:checked {
    background: linear-gradient(135deg, #9d4edd, #00d4ff);
    color: #000000;
    font-weight: 600;
}

/* Placeholder Option Styling */
select.form-control option[value=""] {
    color: #888888;
    font-style: italic;
}

/* Enhanced Focus States */
.form-group.focused select.form-control {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(157, 78, 221, 0.2);
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
}

/* Mobile Select Styling */
@media (max-width: 768px) {
    select.form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        background-size: 14px;
    }
}

/* Dark Mode Compatibility */
@media (prefers-color-scheme: dark) {
    select.form-control option {
        background: #0a0a0a;
        color: #ffffff;
    }
}
/* ===== MOTIVATIONAL FOOTER WITH DYNAMIC QUOTES ===== */
.motivational-footer {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 46, 0.98) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    padding: 4rem 0 2rem;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-cyan) 25%, 
        var(--neon-purple) 50%, 
        var(--neon-cyan) 75%, 
        transparent 100%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

/* Dynamic Quote Section */
.quote-section {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-container {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    animation: quoteGlow 6s ease-in-out infinite alternate;
}

@keyframes quoteGlow {
    0% {
        border-color: rgba(0, 212, 255, 0.3);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    }
    100% {
        border-color: rgba(157, 78, 221, 0.5);
        box-shadow: 0 0 40px rgba(157, 78, 221, 0.3);
    }
}

.quote-container::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    opacity: 0.3;
}

.quote-container::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 4rem;
    color: var(--neon-purple);
    font-family: var(--font-primary);
    opacity: 0.3;
}

.quote-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: textShimmer 8s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { 
        color: var(--text-primary);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    }
    50% { 
        color: var(--neon-cyan);
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }
}

.quote-author {
    font-size: 1rem;
    color: var(--neon-purple);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quote-language {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(0, 212, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Quote Refresh Button */
.quote-refresh-btn {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: var(--bg-primary);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-refresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.quote-refresh-btn:active {
    transform: translateY(-1px);
}

.refresh-icon {
    font-size: 1.1rem;
    animation: refreshSpin 2s linear infinite;
}

@keyframes refreshSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quote-refresh-btn.refreshing .refresh-icon {
    animation: refreshSpin 0.5s linear infinite;
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.neon-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-accent {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    animation: accentFlicker 3s ease-in-out infinite alternate;
}

.logo-text {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan);
    animation: logoGlow 5s ease-in-out infinite alternate;
}

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

@keyframes logoGlow {
    0% {
        text-shadow: 
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan);
    }
    100% {
        text-shadow: 
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan);
    }
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

/* Minimal Social Links */
.social-links-minimal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 80px;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.social-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.social-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 2rem;
    width: 100%;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quote-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-separator {
    color: var(--neon-purple);
    font-size: 1.5rem;
    opacity: 0.6;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Quote Particles */
.quote-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.quote-particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: particleFloat 12s linear infinite;
}

.quote-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.quote-particle:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.quote-particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 10s;
}

.quote-particle:nth-child(4) {
    left: 75%;
    animation-delay: 9s;
    animation-duration: 14s;
}

.quote-particle:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
    animation-duration: 13s;
}

@keyframes particleFloat {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(50px) rotate(360deg);
    }
}

/* Quote Transition Animations */
.quote-fade-out {
    animation: fadeOut 0.5s ease-in forwards;
}

.quote-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .motivational-footer {
        padding: 3rem 0 2rem;
    }
    
    .quote-container {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .neon-logo {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .social-links-minimal {
        gap: 1rem;
    }
    
    .quote-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .quote-container {
        padding: 1.5rem 1rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .social-links-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }
    
    .social-link {
        min-width: auto;
        flex: 1;
    }
    
    .quote-refresh-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* ===== PROFESSIONAL PORTFOLIO FOOTER ===== */
.portfolio-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.portfolio-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 0;
    position: relative;
    z-index: 2;
}

/* Main Footer Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.brand-subtitle {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

/* Footer Sections Grid */
.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.section-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #00ffff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00ffff;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #00ffff;
    transform: translateX(3px);
}

.contact-item i {
    width: 16px;
    color: #00ffff;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: #00ffff;
    transform: translateX(5px);
}

.social-link i {
    width: 16px;
    font-size: 1rem;
    color: #00ffff;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

.copyright p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-tech-stack {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tech-item {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-main {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 15px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-tech-stack {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px 0;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .brand-description {
        max-width: 100%;
    }
    
    .social-links,
    .contact-info {
        gap: 10px;
    }
    
    .footer-tech-stack {
        gap: 10px;
    }
    
    .tech-item {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}
