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

:root {
    --primary-blue: #3b82f6;
    --deep-blue: #1e40af;
    --neural-purple: #8b5cf6;
    --accent-green: #10b981;
    --electric-cyan: #06b6d4;
    --glass-pink: #ec4899;
    --glass-orange: #f59e0b;
    
    /* Glassmorphism Background */
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-bg-light: rgba(30, 41, 59, 0.6);
    --glass-bg-lighter: rgba(51, 65, 85, 0.4);
    --glass-border: rgba(148, 163, 184, 0.1);
    --glass-border-strong: rgba(148, 163, 184, 0.2);
    
    /* Main backgrounds */
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: rgba(15, 23, 42, 0.8);
    
    /* Text colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--primary-blue) 0%, var(--neural-purple) 100%);
    --gradient-2: linear-gradient(135deg, var(--electric-cyan) 0%, var(--accent-green) 100%);
    --gradient-3: linear-gradient(135deg, var(--glass-pink) 0%, var(--glass-orange) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
    
    /* Glassmorphism effects */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
    --blur-xl: blur(32px);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--darker-bg);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.02) 49%, rgba(59, 130, 246, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.02) 49%, rgba(139, 92, 246, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: var(--blur-lg);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    /* transition: color 0.3s ease; */
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    /* transition: width 0.3s ease; */
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-sm);
}

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

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

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neural-purple) 100%);
}

.btn-secondary {
    background: var(--glass-bg-light);
    color: var(--primary-blue);
    border: 1px solid var(--glass-border-strong);
    backdrop-filter: var(--blur-md);
}

.btn-secondary:hover {
    background: var(--glass-bg-lighter);
    color: var(--text-primary);
    /* transform: translateY(-4px); */
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--darker-bg);
    overflow: hidden;
}

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

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.neural-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(99, 102, 241, 0.1) 100%),
        linear-gradient(180deg, transparent 98%, rgba(99, 102, 241, 0.1) 100%);
    background-size: 50px 50px;
    /* animation: grid-move 20s linear infinite; */
}

@keyframes grid-move {
    /* 0% { transform: translate(0, 0); } */
    /* 100% { transform: translate(50px, 50px); } */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-main {
    display: block;
    color: var(--text-primary);
}

.title-emphasis {
    display: block;
    margin-top: 8px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Terminal Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.terminal-container {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.terminal-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.terminal {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-lg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border-strong);
    position: relative;
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0.3;
    z-index: -1;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--glass-bg-light);
    backdrop-filter: var(--blur-sm);
    border-bottom: 1px solid var(--glass-border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.terminal-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    min-height: 200px;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.prompt {
    color: var(--accent-green);
    margin-right: 8px;
}

.typed-text {
    color: var(--text-primary);
}

.cursor {
    color: var(--primary-blue);
    /* animation: blink 1s infinite; */
}

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

.terminal-output {
    margin-top: 16px;
}

.output-line {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.output-success {
    color: var(--accent-green);
}

.output-info {
    color: var(--electric-cyan);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Expertise Section */
.expertise {
    background: transparent;
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0.1;
    z-index: -1;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-lg);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    /* transform: scaleX(0); */
    /* transition: transform 0.4s ease; */
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    /* transition: opacity 0.4s ease; */
    z-index: -1;
}

.expertise-card:hover::before {
    /* transform: scaleX(1); */
}

.expertise-card:hover::after {
    opacity: 0.2;
}

.expertise-card:hover {
    /* transform: translateY(-12px) rotateX(5deg); */
    border-color: var(--glass-border-strong);
    box-shadow: 
        0 32px 64px rgba(59, 130, 246, 0.2),
        0 0 0 1px var(--glass-border-strong),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient-1);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-1);
    border-radius: 16px;
    z-index: -1;
    filter: blur(4px);
    opacity: 0.7;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.tech-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--neural-purple);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Services Section */
.services {
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    /* transition: all 0.3s ease; */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    border-color: var(--primary-blue);
    position: relative;
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--gradient-1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card:hover {
    /* transform: translateY(-8px); */
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.service-price {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 16px;
}

.service-description {
    flex: 1;
    margin-bottom: 30px;
}

.service-description p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-cta {
    margin-top: auto;
}

/* Portfolio Section */
.portfolio {
    background: var(--dark-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    /* transition: all 0.3s ease; */
}

.project-card:hover {
    /* transform: translateY(-8px); */
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.project-image {
    height: 200px;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-tech {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.project-impact {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
}

.impact-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
}

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

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
}

.benefit-text {
    color: var(--text-secondary);
}

.contact-direct {
    padding: 24px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.direct-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.email-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.email-link:hover {
    color: var(--electric-cyan);
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-size: 16px;
    /* transition: border-color 0.3s ease; */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-left {
    max-width: 400px;
    flex: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo .logo-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    /* transition: color 0.3s ease; */
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Navigation Styles - Dropdown */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    /* transition: all 0.3s ease; */
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    /* transform: rotate(45deg) translate(5px, 5px); */
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    /* transform: rotate(-45deg) translate(5px, -5px); */
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--blur-xl);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 0.3s ease, padding 0.3s ease; */
    z-index: 999;
}

.mobile-dropdown.active {
    max-height: 500px;
    padding: 20px 0;
}

.mobile-dropdown-content {
    padding: 0 16px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: rgba(51, 65, 85, 0.6);
    border-radius: 10px;
    margin-bottom: 8px;
    /* transition: all 0.2s ease; */
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--primary-blue);
    color: white;
    /* transform: scale(0.98); */
}

.mobile-dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 12px 20px;
}

.mobile-cta-link {
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
}

.mobile-cta-link:hover {
    /* transform: scale(0.98); */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Backdrop for dropdown */
.mobile-dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 998;
    display: none;
}

.mobile-dropdown-backdrop.active {
    display: block;
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    /* animation: float 20s ease-in-out infinite; */
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    /* animation: float 25s ease-in-out infinite reverse; */
}

.about .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: slideInUp 0.8s ease-out; */
}

.about .section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    /* animation: slideInUp 0.8s ease-out 0.2s both; */
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-bio {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    /* animation: slideInUp 0.8s ease-out 0.4s both; */
    position: relative;
    overflow: hidden;
}

.about-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    opacity: 0;
    /* transition: opacity 0.3s ease; */
}

.about-bio:hover::before {
    opacity: 1;
}

.about-bio:hover {
    /* transform: translateY(-5px); */
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.1),
        0 0 60px rgba(59, 130, 246, 0.05);
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.about-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.about-bio strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-services {
    margin: 32px 0;
    display: grid;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg-lighter);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    /* transition: all 0.3s ease; */
}

.service-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    /* transform: translateX(5px); */
}

.service-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-content strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.about-focus {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
}

.about-cta {
    margin-top: 24px;
    font-size: 16px;
    color: var(--accent-green);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* animation: slideInUp 0.8s ease-out 0.6s both; */
}

.credentials-card,
.social-proof {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.credentials-card::before,
.social-proof::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    /* transition: opacity 0.3s ease; */
}

.credentials-card:hover::before,
.social-proof:hover::before {
    opacity: 1;
}

.credentials-card:hover,
.social-proof:hover {
    /* transform: translateY(-5px); */
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.1),
        0 0 40px rgba(59, 130, 246, 0.05);
}

.credentials-card h3,
.social-proof h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    /* transition: all 0.3s ease; */
}

.credentials-list li:hover {
    color: var(--text-primary);
    /* transform: translateX(5px); */
}

.credentials-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 18px;
    /* transition: transform 0.3s ease; */
}

.credentials-list li:hover::before {
    /* transform: translateX(4px); */
}

.network-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: var(--glass-bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    /* transition: all 0.3s ease; */
}

.stat-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    /* transform: scale(1.05); */
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof .btn-secondary {
    width: 100%;
    background: var(--glass-bg-light);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.social-proof .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    /* transition: left 0.4s ease; */
    z-index: -1;
}

.social-proof .btn-secondary:hover {
    color: white;
    border-color: transparent;
}

.social-proof .btn-secondary:hover::before {
    left: 0;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .expertise-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Base Container & Typography */
    .container {
        padding: 0 16px;
    }
    
    /* Navigation Mobile */
    .nav {
        padding: 0;
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 16px;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
    
    .nav-logo .logo-subtitle {
        font-size: 11px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Terminal Mobile */
    .terminal-container {
        max-width: 100%;
    }
    
    .terminal {
        border-radius: 12px;
    }
    
    .terminal-header {
        padding: 12px 16px;
    }
    
    .terminal-body {
        padding: 16px;
        font-size: 12px;
        min-height: 150px;
    }
    
    /* Reduce animations for performance */
    .floating-shapes,
    .particle-system,
    .morph-shapes {
        display: none;
    }
    
    /* Section Styles Mobile */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about .section-header {
        margin-bottom: 40px;
    }
    
    .about .section-title {
        font-size: 32px;
    }
    
    .about .section-description {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-bio {
        padding: 24px;
        border-radius: 16px;
    }
    
    .about-bio p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .about-sidebar {
        gap: 24px;
    }
    
    .credentials-card,
    .social-proof {
        padding: 24px;
    }
    
    .network-stats {
        gap: 12px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    /* Expertise Cards Mobile */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-price {
        font-size: 14px;
    }
    
    /* Portfolio Grid Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        border-radius: 12px;
    }
    
    .project-image {
        height: 160px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-impact {
        gap: 20px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 10px;
        min-height: 48px; /* Touch target size */
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-right {
        justify-content: center;
        width: 100%;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-links a {
        padding: 8px 12px;
        background: var(--glass-bg-lighter);
        border-radius: 8px;
        display: inline-block;
    }
    
    .footer-links a:hover,
    .footer-links a:active {
        background: var(--primary-blue);
        color: white;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    /* Skills Section Mobile */
    .skill-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    /* Tech Stack Mobile */
    .tech-stack {
        gap: 6px;
    }
    
    .tech-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .title-emphasis {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    /* Card Adjustments */
    .expertise-card,
    .service-card {
        padding: 24px 16px;
    }
    
    .card-title {
        font-size: 17px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-nav-link {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    /* Form Elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom */
        padding: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .terminal-container {
        max-height: 200px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover {
        /* transform: none; */
    }
    
    .expertise-card:hover,
    .service-card:hover,
    .project-card:hover {
        /* transform: none; */
        box-shadow: none;
    }
    
    /* Increase touch target sizes */
    .nav-link,
    .mobile-nav-link {
        padding: 12px 16px;
    }
    
    /* Simplify animations */
    * {
        animation-duration: 0.3s !important;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Use higher quality gradients */
    .gradient-text {
        background-size: 200% 200%;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-background,
    .floating-shapes,
    .particle-system,
    .terminal-container,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .card-title {
        color: black;
    }
}
/* ============================================
   EDUCATION SECTION - Beautiful Card Layout
   ============================================ */

.education {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--glass-border-strong) 20%,
        var(--primary-blue) 50%,
        var(--glass-border-strong) 80%,
        transparent 100%
    );
}

.education .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.education .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 44px;
    /* animation: float 3s ease-in-out infinite; */
}

.education .section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.subsection-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

/* Education Cards */
.education-cards-container {
    margin-bottom: 80px;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.education-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    cursor: pointer;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    /* transition: opacity 0.4s ease; */
}

.education-card:hover {
    /* transform: translateY(-8px) scale(1.02); */
    border-color: var(--primary-blue);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1),
        inset 0 0 30px rgba(59, 130, 246, 0.05);
}

.education-card:hover::before {
    opacity: 1;
}

.education-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.institution-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.logo-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-badge {
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-body {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
}

.institution-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.degree-name {
    font-size: 18px;
    color: var(--electric-cyan);
    margin-bottom: 20px;
    font-weight: 500;
}

.activities-section {
    background: var(--glass-bg-lighter);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.activities-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-list {
    list-style: none;
    padding: 0;
}

.activity-item {
    padding: 8px 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    /* transition: transform 0.3s ease; */
}

.activity-item:hover {
    /* transform: translateX(5px); */
}

.activity-icon {
    color: var(--accent-green);
    font-size: 14px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    opacity: 0;
    /* transition: opacity 0.4s ease; */
    pointer-events: none;
}

/* Honors & Awards Cards */
.honors-container {
    margin-bottom: 80px;
}

.honors-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.honor-card {
    background: linear-gradient(135deg, var(--glass-bg) 0%, var(--glass-bg-light) 100%);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.honor-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-3);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    /* transition: opacity 0.4s ease; */
}

.honor-card:hover {
    /* transform: translateY(-5px) scale(1.02); */
    box-shadow: 
        0 20px 40px rgba(236, 72, 153, 0.2),
        0 0 60px rgba(245, 158, 11, 0.1);
}

.honor-card:hover::before {
    opacity: 0.5;
}

.honor-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    /* animation: sparkle 2s ease-in-out infinite; */
}

.honor-content {
    position: relative;
}

.honor-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.honor-institution {
    font-size: 16px;
    color: var(--glass-pink);
    margin-bottom: 12px;
    font-weight: 500;
}

.honor-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.honor-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

/* Professional Organizations - Flip Cards */
.organizations-container {
    margin-bottom: 80px;
}

.org-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.org-card {
    height: 250px;
    perspective: 1000px;
}

.org-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    /* transition: transform 0.6s; */
    /* transform-style: preserve-3d; */
}

.org-card:hover .org-card-inner {
    /* transform: rotateY(180deg); */
}

.org-card-front,
.org-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* backface-visibility: hidden; */
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.org-card-back {
    /* transform: rotateY(180deg); */
    background: linear-gradient(135deg, var(--glass-bg-light) 0%, var(--glass-bg) 100%);
}

.org-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.org-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.org-role {
    font-size: 16px;
    color: var(--neural-purple);
    font-weight: 500;
}

.org-description {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.org-duration {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: var(--glass-bg-lighter);
    border-radius: 20px;
    display: inline-block;
}

/* Volunteering Cards */
.volunteering-container {
    margin-bottom: 80px;
}

.volunteer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.volunteer-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.volunteer-card:hover {
    /* transform: translateY(-5px); */
    border-color: var(--accent-green);
    box-shadow: 
        0 20px 40px rgba(16, 185, 129, 0.2),
        0 0 60px rgba(16, 185, 129, 0.1);
}

.volunteer-card:hover .volunteer-impact-line {
    width: 100%;
}

.volunteer-card-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.volunteer-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.volunteer-icon {
    font-size: 32px;
    /* animation: heartbeat 2s ease-in-out infinite; */
}

.volunteer-meta {
    flex: 1;
}

.volunteer-org {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.volunteer-role {
    font-size: 16px;
    color: var(--accent-green);
    font-weight: 500;
}

.volunteer-card-body {
    padding: 0 30px 30px;
}

.volunteer-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.volunteer-cause,
.volunteer-duration {
    padding: 6px 14px;
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.volunteer-cause {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--accent-green);
    border-color: rgba(16, 185, 129, 0.2);
}

.volunteer-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.volunteer-impact-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    /* transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* Interactive Timeline */
.education-timeline {
    margin-top: 80px;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--glass-border) 10%,
        var(--primary-blue) 50%,
        var(--glass-border) 90%,
        transparent 100%
    );
    transform: translateY(-50%);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    text-align: center;
    cursor: pointer;
    /* transition: transform 0.3s ease; */
}

.timeline-item:hover {
    /* transform: translateY(-10px); */
}

.timeline-item:hover .timeline-dot {
    /* transform: scale(1.5); */
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.timeline-item:hover .timeline-content {
    opacity: 1;
    /* transform: translateY(-10px); */
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    /* transition: all 0.3s ease; */
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.timeline-dot::before {
    content: attr(data-year);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 180px;
    opacity: 0.8;
    /* transition: all 0.3s ease; */
}

.timeline-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20% { transform: scale(0.95); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .education-cards {
        grid-template-columns: 1fr;
    }
    
    .honors-cards {
        grid-template-columns: 1fr;
    }
    
    .org-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-line {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
            transparent 0%,
            var(--glass-border) 10%,
            var(--primary-blue) 50%,
            var(--glass-border) 90%,
            transparent 100%
        );
    }
    
    .education .section-title {
        font-size: 36px;
    }
    
    .subsection-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .education-card {
        min-width: 100%;
    }
    
    .volunteer-card {
        min-width: 100%;
    }
    
    .volunteer-card-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PROFESSIONAL EXPERIENCE SECTION
   ============================================ */

.experience {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--glass-border-strong) 20%,
        var(--electric-cyan) 50%,
        var(--glass-border-strong) 80%,
        transparent 100%
    );
    /* animation: shimmer 3s ease-in-out infinite; */
}

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

.experience .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.experience .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-primary);
}

.experience .title-icon {
    font-size: 44px;
    /* animation: bounce 2s ease-in-out infinite; */
}

.experience .section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Experience Stats */
.experience-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.experience-stats .stat-item {
    text-align: center;
    position: relative;
    /* animation: countUp 1s ease-out forwards; */
    /* animation-delay: var(--delay, 0s); */
    opacity: 1;
}

.experience-stats .stat-item:nth-child(1) { --delay: 0.2s; }
.experience-stats .stat-item:nth-child(2) { --delay: 0.4s; }
.experience-stats .stat-item:nth-child(3) { --delay: 0.6s; }

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

.experience-stats .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
    /* transition: transform 0.3s ease; */
}

.experience-stats .stat-item:hover .stat-number {
    /* transform: scale(1.1); */
}

.experience-stats .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Container */
.experience-timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--electric-cyan) 100%);
    /* transition: height 2s ease-out; */
    /* animation: progressGrow 3s ease-out forwards; */
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes progressGrow {
    from { height: 0; opacity: 0; }
    to { height: 100%; opacity: 1; }
}

/* Experience Cards */
.experience-card {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.experience-card:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-card:nth-child(even) .card-wrapper {
    margin-left: 0;
    margin-right: 60px;
}

.experience-card:nth-child(odd) .card-wrapper {
    margin-left: 60px;
}

/* Timeline Nodes */
.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 5;
}

.node-core {
    width: 24px;
    height: 24px;
    background: var(--dark-bg);
    border: 3px solid var(--glass-border);
    border-radius: 50%;
    position: relative;
    /* transition: all 0.3s ease; */
}

.timeline-node.active .node-core {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0;
    display: none;
}

.timeline-node.active .node-pulse {
    display: block;
    /* animation: pulsate 2s ease-out infinite; */
    opacity: 0.6;
}

@keyframes pulsate {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

/* Card Wrapper */
.card-wrapper {
    width: calc(50% - 60px);
    position: relative;
}

/* Company Badge */
.company-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neural-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.badge-status {
    padding: 4px 12px;
    background: var(--accent-green);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* animation: glow 2s ease-in-out infinite; */
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

/* Experience Card Content */
.experience-card-content {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.experience-card:hover .experience-card-content {
    /* transform: translateY(-5px); */
    border-color: var(--primary-blue);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1),
        inset 0 0 30px rgba(59, 130, 246, 0.05);
}

.current-role .experience-card-content {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(16, 185, 129, 0.05) 100%);
}

/* Card Header */
.experience-card-content .card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.header-main {
    margin-bottom: 15px;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.role-title {
    font-size: 18px;
    font-weight: 500;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-calendar::before {
    content: '📅';
}

.icon-location::before {
    content: '📍';
}

/* Card Body */
.card-body {
    padding: 30px;
}

.description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Highlights Section */
.highlights-section {
    background: var(--glass-bg-lighter);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.highlights-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.highlights-icon {
    font-size: 24px;
}

.highlights-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlights-content {
    color: var(--text-primary);
    line-height: 1.8;
}

.highlights-content p {
    margin-bottom: 10px;
}

/* Skills & Expertise Section */
.skills {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.skills::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.skills .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.skills .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--electric-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: fadeInDown 0.6s ease-out; */
}

.skills .section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    /* animation: fadeInUp 0.6s ease-out 0.2s both; */
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    /* animation: fadeInUp 0.8s ease-out 0.4s both; */
}

.skill-category {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    /* transition: opacity 0.4s ease; */
    pointer-events: none;
}

.skill-category:hover {
    /* transform: translateY(-5px) scale(1.02); */
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 
        0 20px 40px rgba(16, 185, 129, 0.15),
        0 0 60px rgba(16, 185, 129, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.skill-category:hover::before {
    opacity: 1;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent-green) 0%, var(--electric-cyan) 100%);
    border-radius: 2px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 14px;
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    /* transition: all 0.4s ease; */
    transform: translate(-50%, -50%);
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: var(--accent-green);
    color: var(--text-primary);
    /* transform: translateY(-2px) scale(1.05); */
}

.skill-tag:hover::before {
    /* width: 100px;
    height: 100px; */
}

/* Endorsed Skills Section */
.endorsed-skills {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    /* animation: fadeInUp 0.8s ease-out 0.6s both; */
    position: relative;
    overflow: hidden;
}

.endorsed-skills::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.endorsed-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.endorsed-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--glass-pink) 0%, var(--glass-orange) 100%);
    border-radius: 2px;
}

.endorsed-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.endorsed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}

.endorsed-item:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: var(--glass-pink);
    /* transform: translateX(5px); */
}

.skill-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.endorsement-count {
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--glass-bg);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* Skills Footer */
.skills-footer {
    text-align: center;
    margin-top: 50px;
    /* animation: fadeInUp 0.8s ease-out 0.8s both; */
}

.skills-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--electric-cyan) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
    overflow: hidden;
}

.skills-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    /* transition: left 0.5s; */
}

.skills-footer .btn:hover {
    /* transform: translateY(-2px); */
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.3),
        0 0 40px rgba(6, 182, 212, 0.2);
}

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

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Card Actions */
.card-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.expand-btn {
    width: 36px;
    height: 36px;
    background: var(--glass-bg-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* transition: all 0.3s ease; */
}

.expand-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    /* transform: rotate(180deg); */
}

.expand-btn .btn-icon {
    color: var(--text-secondary);
    font-size: 16px;
    /* transition: color 0.3s ease; */
}

.expand-btn:hover .btn-icon {
    color: white;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    /* transition: opacity 0.3s ease; */
}

.experience-card:hover .decoration-line {
    opacity: 1;
    /* animation: lineSlide 1s ease-out; */
}

@keyframes lineSlide {
    from { width: 0; }
    to { width: 100px; }
}

.decoration-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    /* transition: opacity 0.4s ease; */
}

.experience-card:hover .decoration-glow {
    opacity: 1;
    /* animation: rotate 20s linear infinite; */
}

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

/* Experience Summary Cards */
.experience-summary {
    margin-bottom: 60px;
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.summary-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
}

.summary-card:hover {
    /* transform: translateY(-5px) scale(1.02); */
    border-color: var(--electric-cyan);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.summary-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.summary-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.summary-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Experience Footer */
.experience-footer {
    text-align: center;
    padding-top: 40px;
}

.experience-footer .footer-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.experience-footer .footer-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.experience-footer .footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-linkedin,
.btn-download {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    /* transition: all 0.3s ease; */
    cursor: pointer;
}

.btn-linkedin {
    background: #0077B5;
    color: white;
    border: 2px solid #0077B5;
    text-decoration: none;
}

.btn-linkedin:hover {
    background: transparent;
    color: #0077B5;
    /* transform: translateY(-2px); */
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

.btn-download {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-download:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    /* transform: translateY(-2px); */
}

.btn-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
}

/* Background Decoration */
.experience-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.decoration-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    /* animation: gridMove 20s linear infinite; */
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

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

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    /* animation: float1 15s ease-in-out infinite; */
}

.floating-particles::after {
    bottom: 20%;
    right: 10%;
    /* animation: float2 20s ease-in-out infinite; */
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Experience Section - Responsive Design */
@media (max-width: 968px) {
    .timeline-line-vertical {
        left: 30px;
    }
    
    .timeline-node {
        left: 30px;
    }
    
    .experience-card,
    .experience-card:nth-child(even) {
        flex-direction: row;
    }
    
    .experience-card:nth-child(even) .card-wrapper {
        margin-right: 0;
        margin-left: 60px;
        text-align: left;
    }
    
    .experience-card:nth-child(even) .skills-container {
        justify-content: flex-start;
    }
    
    .experience-card:nth-child(even) .company-badge {
        justify-content: flex-start;
    }
    
    .card-wrapper {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        max-width: none;
    }
    
    .company-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 15px;
    }
    
    .card-decoration {
        display: none;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .experience .section-title {
        font-size: 36px;
    }
    
    .summary-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-footer .footer-content {
        padding: 30px 20px;
    }
    
    .experience-footer .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-linkedin,
    .btn-download {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .timeline-line-vertical {
        left: 20px;
    }
    
    .timeline-node {
        left: 20px;
    }
    
    .card-wrapper {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
    
    .company-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
    }
    
    .experience-card-content .card-header {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
}

/* Skills Section Responsive */
@media (max-width: 768px) {
    .skills {
        padding: 80px 0;
    }
    
    .skills .section-title {
        font-size: 36px;
    }
    
    .skills .section-description {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .skill-category {
        padding: 25px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .endorsed-skills {
        padding: 30px 20px;
    }
    
    .endorsed-list {
        grid-template-columns: 1fr;
    }
    
    .endorsed-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .endorsement-count {
        align-self: flex-start;
    }
    
    .skills-footer .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .skills {
        padding: 60px 0;
    }
    
    .skills .section-title {
        font-size: 28px;
    }
    
    .skills .section-description {
        font-size: 16px;
    }
    
    .skill-category {
        padding: 20px;
        border-radius: 16px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .skill-tags {
        gap: 8px;
    }
    
    .skill-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .endorsed-skills {
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .endorsed-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .endorsed-item {
        padding: 14px 16px;
    }
    
    .skill-name {
        font-size: 14px;
    }
    
    .endorsement-count {
        font-size: 13px;
    }
    
    .skills-footer {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .skills-footer .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
}
