@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00ffff;
    --secondary: #ff00ff;
    --accent: #00ff88;
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --text: #e0f0ff;
    --text-dim: #7a9cc6;
    --border: rgba(0, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

.cursor,
.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.1s;
    box-shadow: 0 0 10px var(--primary);
}

.cursor::before,
.cursor::after {
    content: '';
    position: absolute;
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary);
}

.cursor::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border-color: var(--secondary);
    transition: 0.3s;
    box-shadow: 0 0 15px var(--secondary);
    animation: rotateCursor 4s linear infinite;
}

@keyframes rotateCursor {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
    letter-spacing: 3px;
}

.logo-bracket {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    overflow: hidden;
    width: 0;
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem 4rem;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 80px 80px;
    opacity: 0.5;
    animation: gridFade 4s ease-in-out infinite alternate;
}

.grid-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s ease-out infinite;
}

.grid-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.5), transparent);
    top: 30%;
    animation: lineMove 5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

@keyframes gridFade {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

@keyframes lineMove {
    0% { 
        top: 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        top: 100%;
        opacity: 0;
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    position: relative;
}

.glitch-wrapper {
    margin-bottom: 2rem;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--primary);
    position: relative;
    letter-spacing: 10px;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-3px, 3px);
    }
    94% {
        transform: translate(3px, -3px);
    }
    96% {
        transform: translate(-3px, -3px);
    }
    98% {
        transform: translate(3px, 3px);
    }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary);
}

.separator {
    color: var(--secondary);
    margin: 0 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary);
}

.btn-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-secondary::before {
    background: var(--secondary);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #000000;
    box-shadow: 0 0 30px var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-indicator span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.scroll-line {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes scrollDot {
    0% { 
        top: 8px;
        opacity: 1;
    }
    100% { 
        top: 24px;
        opacity: 0;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.title-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 5px;
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(10, 14, 39, 0.5);
    border: 2px solid var(--border);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.about-card .card-body {
    flex: 1;
}

.about-card .card-footer {
    margin-top: auto;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text);
}

.card-body p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.card-footer {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 10px var(--primary);
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.skills-section {
    background: var(--bg-dark);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-card {
    background: rgba(10, 14, 39, 0.5);
    border: 2px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.skill-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.skill-card:hover::after {
    opacity: 1;
}

.skill-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.skill-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.skill-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.skill-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.skill-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.skill-level {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.skill-level span {
    width: 30px;
    height: 4px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.skill-level span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: fillBar 2s forwards;
}

@keyframes fillBar {
    to { left: 0; }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--border);
    padding: 2rem;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.social-card:hover .card-glow {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.social-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(10, 14, 39, 0.9);
    position: relative;
    z-index: 3;
}

.social-icon i,
.social-icon svg {
    font-size: 1.5rem;
    color: var(--primary);
}

.social-info {
    flex: 1;
    min-width: 0;
}

.social-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.username {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.description {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.card-indicator {
    flex-shrink: 0;
    margin-left: auto;
}

.hexagon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 0 15px var(--primary);
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--bg-dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.social-card:hover .hexagon {
    transform: rotate(180deg);
    box-shadow: 0 0 25px var(--primary);
}

.social-card:hover .card-arrow {
    transform: translateX(10px);
}

.social-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: translateY(-10px);
}

.facebook:hover { border-color: #1877f2; }
.instagram:hover { border-color: #e4405f; }
.twitter:hover { border-color: #000000; }
.snapchat:hover { border-color: #fffc00; }

.card-border {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.social-card:hover .card-border {
    opacity: 1;
    animation: borderPulse 1.5s infinite;
}

@keyframes borderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border);
    padding: 3rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
}

.pulse {
    color: var(--accent);
    animation: pulse 2s infinite;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px var(--primary);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s;
        border-top: 1px solid var(--border);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .glitch {
        font-size: 4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .about-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    .glitch {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .title-number {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        word-break: break-word;
    }
    
    .title-line {
        width: 100%;
        order: 3;
    }
}


.hero-quote {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-style: italic;
    text-shadow: 0 0 10px var(--accent);
}

.bio-section {
    text-align: center;
    margin-bottom: 4rem;
}

.bio-text {
    font-size: 1.3rem;
    color: var(--text);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-section {
    background: var(--bg-dark);
    padding: 8rem 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.profile-card-info {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--border);
    padding: 2rem;
    transition: all 0.3s;
}

.profile-card-info:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.info-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.info-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--primary);
}

.info-item .label {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
}

.info-item .value {
    color: var(--text);
    font-weight: 500;
    text-align: right;
}

.education-section {
    padding: 8rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--bg-darker);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    z-index: 1;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--border);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--border);
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    transform: translateX(10px);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-content .institution {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content .status {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-dot {
        left: -20px;
    }
    
    .bio-text {
        white-space: normal;
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 6rem;
    }
    
    .nav-content {
        padding: 0 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .separator {
        display: block;
        margin: 0 0.5rem;
    }
    
    .scroll-indicator {
        bottom: 0.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .card-body p {
        font-size: 1rem;
        line-height: 1.6;
    }
}
