/* ===== Variables ===== */
:root {
    --primary: #2dd4bf;        /* Teal */
    --primary-dark: #14b8a6;
    --bg-dark: #0f172a;         /* Slate-900 */
    --bg-darker: #0a0f1f;
    --bg-card: #1e293b;         /* Slate-800 */
    --bg-card-hover: #334155;
    --text: #f1f5f9;            /* Slate-100 */
    --text-muted: #94a3b8;      /* Slate-400 */
    --border: #334155;          /* Slate-700 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.text-primary {
    color: var(--primary);
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 15, 31, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text);
    background-color: var(--bg-card);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: radial-gradient(circle at 70% 30%, rgba(45,212,191,0.03) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.profile-image-wrapper:hover {
    transform: scale(1.02);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 2.5rem; /* Prevent layout shift during typing */
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Typing cursor */
.typing::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Skills Grid ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.skill-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.skill-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.skill-level {
    width: 100%;
    height: 4px;
    background-color: var(--bg-darker);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.skill-progress {
    height: 100%;
    background-color: var(--primary);
    width: 0;
    transition: width 0.8s ease;
}

/* ===== Projects Grid ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--bg-card);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background-color: var(--bg-darker);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.project-links a:hover {
    color: var(--primary);
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--bg-dark);
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.timeline-content .period {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 2rem;
    text-align: center;
}

.info-item-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-item-content a,
.info-item-content p {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.info-item-content a:hover {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,212,191,0.1);
}

.btn-block {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1; /* image on top for mobile */
    }
    
    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== Enhanced Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.footer-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
    font-size: 0.9rem;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social .social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social .social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== Footer Responsive ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bio {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}
/* ===== Neural Background Canvas ===== */
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6; /* Increased from 0.3 to 0.6 for more visibility */
}

/* ===== Hero Badge ===== */
.hero-badge {
    display: inline-block;
    background: rgba(45,212,191,0.1);
    border: 1px solid rgba(45,212,191,0.3);
    backdrop-filter: blur(5px);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ===== Profile Ring ===== */
.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    animation: rotateRing 4s linear infinite;
}

.ring:nth-child(2) {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-top-color: #a78bfa;
    border-bottom-color: #60a5fa;
    animation-duration: 3s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #f472b6;
    border-bottom-color: #fbbf24;
    animation-duration: 2s;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Data Marquee ===== */
.data-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    margin: 2rem 0;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-right: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.marquee-content span:hover {
    opacity: 1;
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Holographic Cards ===== */
.holographic-card {
    position: relative;
    background: rgba(30,41,59,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45,212,191,0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.holographic-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(45,212,191,0.3);
}

.card-neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(45,212,191,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(168,85,247,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.holographic-card:hover .card-neural-bg {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 10px var(--primary));
}

.holographic-card:hover .card-icon {
    transform: scale(1.1) translateZ(20px);
}

.card-stats {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px dashed var(--border);
    padding-top: 1rem;
}

/* ===== Featured Project ===== */
.featured-project {
    padding: 4rem 0;
    position: relative;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(45,212,191,0.1);
    border: 1px solid rgba(45,212,191,0.3);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
}

.neural-sphere {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseSphere 4s infinite alternate;
    filter: blur(40px);
    opacity: 0.4;
}

@keyframes pulseSphere {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .profile-container {
        width: 200px;
        height: 200px;
    }
    
    .profile-ring {
        width: 220px;
        height: 220px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .neural-sphere {
        margin: 0 auto;
    }
}
/* ===== Futuristic About Page ===== */
.futuristic-about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Stats Cards */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(30,41,59,0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(45,212,191,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px -10px rgba(45,212,191,0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* AI Insights Section */
.ai-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.insight-item {
    background: rgba(30,41,59,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(45,212,191,0.15);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45,212,191,0.1), transparent);
    transition: left 0.5s ease;
}

.insight-item:hover::before {
    left: 100%;
}

.insight-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -15px rgba(45,212,191,0.4);
}

.insight-icon {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}

.insight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.insight-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .ai-insights {
        grid-template-columns: 1fr;
    }
    
    .insight-item {
        padding: 1.5rem;
    }
}
/* ===== Futuristic Skills Section ===== */
.futuristic-section {
    padding: 2rem 0 4rem;
}

/* Skill Card specific overrides */
.skill-card.holographic-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.skill-card.holographic-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(45, 212, 191, 0.3);
}

.skill-card.holographic-card .skill-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px var(--primary));
}

.skill-card.holographic-card h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Futuristic Progress Bar */
.futuristic-progress {
    position: relative;
    margin: 1.5rem 0 0.5rem;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.futuristic-progress .skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #a78bfa, var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.skill-percentage {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Card stats (optional) */
.card-stats {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px dashed rgba(45, 212, 191, 0.3);
    padding-top: 0.8rem;
}
/* ===== Project Card Enhancements ===== */
.project-card.holographic-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card.holographic-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(45, 212, 191, 0.3);
}

.project-card .project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card.holographic-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card.holographic-card:hover .project-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--primary);
    color: var(--bg-darker);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.project-card.holographic-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--primary-dark);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: var(--primary);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    border-top: 1px dashed rgba(45, 212, 191, 0.3);
    padding-top: 1rem;
}

.project-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.project-links a:hover {
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .project-card.holographic-card {
        margin-bottom: 1rem;
    }
    
    .project-overlay .btn-view {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== Futuristic Timeline ===== */
.futuristic-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.futuristic-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary) 80%, 
        transparent 100%
    );
    box-shadow: 0 0 15px var(--primary);
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.timeline-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    transition: box-shadow 0.3s ease;
    z-index: 2;
}

.timeline-dot.glow {
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { box-shadow: 0 0 20px var(--primary); }
    50% { box-shadow: 0 0 30px var(--primary), 0 0 50px var(--primary); }
}

.timeline-content.holographic-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin-bottom: 0.5rem;
}

.timeline-content.holographic-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(45, 212, 191, 0.3);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.timeline-content h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.timeline-content .period {
    color: var(--text-muted);
    font-size: 0.8rem;
    background: rgba(45, 212, 191, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Add shine effect on hover */
.timeline-content.holographic-card .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.timeline-content.holographic-card:hover .card-shine {
    left: 100%;
}

/* ===== Responsive Timeline ===== */
@media (max-width: 768px) {
    .futuristic-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: 7px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}
/* ===== Futuristic Contact Page ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item.holographic-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.info-item.holographic-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(45, 212, 191, 0.3);
}

.info-item.holographic-card i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary));
    width: 2.5rem;
    text-align: center;
}

.info-item-content {
    flex: 1;
}

.info-item-content h3 {
    color: var(--text);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.info-item-content a,
.info-item-content p {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.info-item-content a:hover {
    color: var(--primary);
}

/* Futuristic Form */
.futuristic-form {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-label textarea {
    resize: vertical;
    min-height: 120px;
}

.floating-label label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.2rem;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--bg-dark);
    padding: 0 0.3rem;
}

/* Placeholder styling */
.floating-label input::placeholder,
.floating-label textarea::placeholder {
    color: transparent;
}

/* Button icon */
.btn i {
    margin-right: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item.holographic-card {
        padding: 1rem;
    }
    
    .futuristic-form {
        padding: 1.5rem;
    }
}
/* ===== Futuristic Footer ===== */
.futuristic-footer {
    background: rgba(10, 15, 31, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(45, 212, 191, 0.2);
    position: relative;
    z-index: 10;
}

.futuristic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.glow-text {
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
    50% { text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary); }
}

.footer-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-col h4 {
    color: var(--text);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
    transform: translateX(4px);
    text-shadow: 0 0 8px var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px var(--primary));
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--primary));
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(45, 212, 191, 0.2);
    padding-top: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive footer grid */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}