:root {
    --tcu-purple: #4d1979;
    --tcu-purple-light: #6b2c9e;
    --tcu-purple-dark: #3d1260;
    --primary-color: #4d1979;
    --primary-dark: #3d1260;
    --secondary-color: #ffffff;
    --accent-color: #c5a572;
    --electric-blue: #007bff;
    --bright-accent: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #f1f5f9;
    --text-light: #cbd5e1;
    --background: #0a0a0a;
    --surface: rgba(255, 255, 255, 0.05);
    --card-bg: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-purple: 0 0 20px rgba(77, 25, 121, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--tcu-purple) 0%, var(--tcu-purple-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--bright-accent) 100%);
    --gradient-tcu: linear-gradient(135deg, var(--tcu-purple) 0%, var(--tcu-purple-dark) 50%, var(--tcu-purple-light) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2e 20%, #2d1b3d 40%, #4d1979 65%, #6b2c9e 85%, #8b5a99 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(77, 25, 121, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 44, 158, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 90, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}


.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    animation: slideDown 0.8s ease-out;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    z-index: 1000;
    padding: 8px 0;
    min-height: auto;
    box-shadow: 0 8px 32px rgba(77, 25, 121, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 16px;
}


.nav-brand {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5a99 0%, #b19cd9 50%, #8b5a99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-family: system-ui, -apple-system, sans-serif;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #b19cd9;
    text-shadow: 0 0 10px rgba(177, 156, 217, 0.8);
    transform: translateY(-1px);
}


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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(77, 25, 121, 0.5);
    position: relative;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 25, 121, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.title-name {
    display: block;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(77, 25, 121, 0.8), 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

.title-role {
    display: block;
    color: var(--text-secondary);
    font-size: 2rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--tcu-purple);
    border: 2px solid rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: none;
}

.btn-secondary:hover {
    background: white;
    color: var(--tcu-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(77, 25, 121, 0.3);
    border: 4px solid var(--tcu-purple);
    animation: pulse 3s infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.profile-image:hover {
    transform: scale(1.05);
}

.tcu-logo-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--tcu-purple);
}

.tcu-logo-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Large TCU Frogs from both sides */
.tcu-frog-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.tcu-frog-side.left {
    left: -200px;
}

.tcu-frog-side.right {
    right: -200px;
}

.side-frog {
    width: 400px;
    height: auto;
    opacity: 0.4;
    filter: brightness(0.9) drop-shadow(0 0 20px rgba(77, 25, 121, 0.8)) drop-shadow(0 0 40px rgba(107, 44, 158, 0.6));
    transition: all 0.4s ease;
}

.tcu-frog-side.left .side-frog {
    transform: rotate(-15deg);
}

.tcu-frog-side.right .side-frog {
    transform: rotate(15deg) scaleX(-1);
}

.about:hover .tcu-frog-side.left .side-frog {
    opacity: 0.6;
    transform: translateX(30px) rotate(-10deg);
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(77, 25, 121, 1)) drop-shadow(0 0 60px rgba(107, 44, 158, 0.8));
}

.about:hover .tcu-frog-side.right .side-frog {
    opacity: 0.6;
    transform: translateX(-30px) rotate(10deg) scaleX(-1);
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(77, 25, 121, 1)) drop-shadow(0 0 60px rgba(107, 44, 158, 0.8));
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(77, 25, 121, 0.3);
    border: 3px solid var(--tcu-purple-light);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
}

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

.about-text p {
    font-size: 1.125rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.skills {
    padding: 6rem 0;
    background: transparent;
}

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

/* Base skill card styles */
.skill-card {
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateZ(0);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before {
    opacity: 0.2;
}

.skill-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Python Card - Green Tech Theme */
.skill-card[data-skill="python"] {
    background: linear-gradient(145deg, rgba(52, 168, 83, 0.2), rgba(21, 128, 61, 0.3));
    border-color: #34a853;
    box-shadow: 0 8px 32px rgba(52, 168, 83, 0.3);
}

.skill-card[data-skill="python"]::before {
    background: radial-gradient(circle at 30% 30%, #34a853, #15803d);
}

.skill-card[data-skill="python"]:hover {
    box-shadow: 0 20px 40px rgba(52, 168, 83, 0.4);
    border-color: #22c55e;
}

/* JavaScript Card - Yellow Energy Theme */
.skill-card[data-skill="javascript"] {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.3));
    border-color: #fbbf24;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.3);
}

.skill-card[data-skill="javascript"]::before {
    background: radial-gradient(circle at 30% 30%, #fbbf24, #f59e0b);
}

.skill-card[data-skill="javascript"]:hover {
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
    border-color: #fcd34d;
}

/* Web Development Card - Blue Ocean Theme */
.skill-card[data-skill="web"] {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
    border-color: #3b82f6;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.skill-card[data-skill="web"]::before {
    background: radial-gradient(circle at 30% 30%, #3b82f6, #2563eb);
}

.skill-card[data-skill="web"]:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    border-color: #60a5fa;
}

/* Java Card - Orange Fire Theme */
.skill-card[data-skill="java"] {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.3));
    border-color: #f97316;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.skill-card[data-skill="java"]::before {
    background: radial-gradient(circle at 30% 30%, #f97316, #ea580c);
}

.skill-card[data-skill="java"]:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
    border-color: #fb923c;
}

/* Skript Card - Purple Magic Theme */
.skill-card[data-skill="skript"] {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.3));
    border-color: #a855f7;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.skill-card[data-skill="skript"]::before {
    background: radial-gradient(circle at 30% 30%, #a855f7, #9333ea);
}

.skill-card[data-skill="skript"]:hover {
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
    border-color: #c084fc;
}

/* Leadership & Soccer Card - TCU Purple + Gold Theme */
.skill-card[data-skill="leadership"] {
    background: linear-gradient(145deg, rgba(77, 25, 121, 0.3), rgba(255, 215, 0, 0.2));
    border-color: #6e00c8;
    box-shadow: 0 8px 32px rgba(77, 25, 121, 0.4);
}

.skill-card[data-skill="leadership"]::before {
    background: radial-gradient(circle at 30% 30%, #8c00ff, #ffd700);
}

.skill-card[data-skill="leadership"]:hover {
    box-shadow: 0 20px 40px rgba(77, 25, 121, 0.5);
    border-color: #ffd700;
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.skill-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-description {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Base skill bar styles */
.skill-level {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 1.5s ease;
    width: 0%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.skill-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Python Bar - Green Gradient - FORCED TO SHOW */
.skill-card[data-skill="python"] .skill-bar {
    background: linear-gradient(90deg, #34a853 0%, #22c55e 50%, #16a34a 100%) !important;
    box-shadow: 0 2px 8px rgba(52, 168, 83, 0.4) !important;
    width: 70% !important;
    opacity: 1 !important;
    display: block !important;
}

/* JavaScript Bar - Yellow/Orange Gradient - FORCED TO SHOW */
.skill-card[data-skill="javascript"] .skill-bar {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4) !important;
    width: 65% !important;
    opacity: 1 !important;
    display: block !important;
}

/* Web Development Bar - Blue Gradient - FORCED TO SHOW */
.skill-card[data-skill="web"] .skill-bar {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4) !important;
    width: 75% !important;
    opacity: 1 !important;
    display: block !important;
}

/* Java Bar - Orange/Red Gradient - FORCED TO SHOW */
.skill-card[data-skill="java"] .skill-bar {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #dc2626 100%) !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4) !important;
    width: 75% !important;
    opacity: 1 !important;
    display: block !important;
}

/* Skript Bar - Purple Magic Gradient - FORCED TO SHOW */
.skill-card[data-skill="skript"] .skill-bar {
    background: linear-gradient(90deg, #a855f7 0%, #9333ea 50%, #7c3aed 100%) !important;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.4) !important;
    width: 85% !important;
    opacity: 1 !important;
    display: block !important;
}

/* Leadership & Soccer Card - TCU Purple/Gold Theme with GLOWING BORDER */
.skill-card[data-skill="leadership"] {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.3));
    border-color: #7a6eff;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.skill-card[data-skill="leadership"]::before {
    background: radial-gradient(circle at 30% 30%, #4d1979, #ffd700);
}

.skill-card[data-skill="leadership"]:hover {
    box-shadow: 0 20px 40px rgba(77, 25, 121, 0.4);
    border-color: #7a6eff;
}

/* Leadership & Soccer Bar - TCU Purple to Gold - FORCED TO SHOW */
.skill-card[data-skill="leadership"] .skill-bar {
    background: linear-gradient(90deg, #4d1979 0%, #6b2c9e 30%, #ffd700 100%) !important;
    box-shadow: 0 2px 8px rgba(77, 25, 121, 0.4) !important;
    width: 95% !important;
    opacity: 1 !important;
    display: block !important;
    height: 100% !important;
}

.experience {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.experience-timeline {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    position: relative;
    flex-wrap: nowrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 1;
    box-shadow: var(--shadow-purple);
    margin-bottom: 1rem;
    flex-shrink: 0;
    border: 3px solid #ffffff;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.timeline-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(77, 25, 121, 0.4), 0 0 20px rgba(107, 44, 158, 0.3);
    border-color: var(--primary-color);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-company {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-description {
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(77, 25, 121, 0.2);
    color: var(--bright-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tcu {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.tcu-header {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    align-items: center;
    margin-bottom: 3rem;
}

.tcu-logo-main {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(77, 25, 121, 0.3);
    border: 4px solid var(--tcu-purple);
    background: white;
    padding: 10px;
}

.tcu-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tcu-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.tcu-description {
    font-size: 1.25rem;
    color: #f8fafc;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.tcu-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.reason-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-purple);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reason-description {
    color: #f1f5f9;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tcu-quote {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.tcu-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-tcu);
}

.tcu-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.tcu-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: serif;
}

.tcu-quote cite {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.projects {
    padding: 6rem 0;
    background: var(--surface);
}

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

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-color);
}

.project-image {
    height: 200px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--surface);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact {
    padding: 6rem 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    background: var(--gradient-primary);
    color: var(--background);
    border-color: var(--primary-color);
}

.contact-method i {
    font-size: 1.5rem;
}


@media (max-width: 768px) {
    .navbar {
        width: 95%;
    }

    .nav-left {
        gap: 1rem;
        padding-left: 12px;
    }

    .nav-link {
        font-size: 11px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-role {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .profile-image-container {
        width: 250px;
        height: 250px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .experience-timeline::before {
        left: 30px;
        transform: none;
    }

    .experience-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-item {
        min-width: 100%;
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    .timeline-icon {
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .timeline-content {
        width: 100%;
        height: auto;
    }

    .tcu-reasons {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 2rem;
    }

    .tcu-quote {
        padding: 2rem;
    }

    .tcu-quote blockquote::before {
        left: -10px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-card.animate .skill-bar {
    animation: fillSkill 1.5s ease forwards;
}

@keyframes fillSkill {
    from { width: 0; }
    to { width: var(--skill-width); }
}