/* Landing Page Styles */
.landing-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

#stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#lightning-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.landing-page .glitch-text,
.landing-page .enter-btn {
    z-index: 3;
    position: relative;
}

/* Glitch Text Styles */
.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
    margin-bottom: 2rem;
}

.glitch-text span {
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.enter-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enter-btn:hover {
    color: var(--bg-color);
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.enter-btn:hover::before {
    width: 100%;
}

/* Mobile Responsiveness for Landing Page */
@media screen and (max-width: 768px) {
    .glitch-text {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .enter-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Responsiveness for Main Content */
@media screen and (max-width: 768px) {
    .profile-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

:root {
    --primary-color: #6366f1;
    --text-color: #f8fafc;
    --text-secondary: #94a3b8;
    --bg-color: #0a0a14;
    --card-bg: rgba(30, 41, 59, 0.5);
    --transition: all 0.3s ease;
    --glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --bg-rgb: 10, 10, 15;
    --gradient-start: rgba(99, 102, 241, 0.15);
    --gradient-end: rgba(147, 51, 234, 0.1);
    font-size: 18px;
}

body {
    background: radial-gradient(circle at top right, var(--gradient-start), transparent),
                radial-gradient(circle at bottom left, var(--gradient-end), transparent);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

.hero, .about, .experience, .education, .publications, .testimonials, .certifications {
    position: relative;
    z-index: 1;
    background: rgba(var(--bg-rgb), 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--text-color);
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #9333ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #9333ea);
    border-radius: 2px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1001;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

/* Desktop Navigation Refinements */
@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex !important;
    }

    .nav-links a {
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .nav-links a:hover {
        opacity: 1;
    }
}

.skill-card, .education-card, .timeline-item, .publication-card, .connect-card {
    animation: fadeInUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before, .education-card::before, .timeline-item::before, .publication-card::before, .connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 30%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    transition: 0.5s;
}

.skill-card:hover::before, .education-card:hover::before, .timeline-item:hover::before, 
.publication-card:hover::before, .connect-card:hover::before {
    left: 100%;
}

.skill-card:hover, .education-card:hover, .timeline-item:hover, 
.publication-card:hover, .connect-card:hover {
    animation: glowPulse 2s infinite;
}

.skills-grid, .education-cards, .timeline, .publication-grid, .connect-grid {
    perspective: 1000px;
}

.skill-card, .education-card, .timeline-item, .publication-card, .connect-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.skill-card:hover, .education-card:hover, .timeline-item:hover, 
.publication-card:hover, .connect-card:hover {
    transform: translateY(-5px) rotateX(5deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.15), transparent 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.tagline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

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

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.social-btn i {
    font-size: 1.1rem;
}

.linkedin-link {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #0077b5;
}

.linkedin-link i {
    font-size: 1rem;
}

/* Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem auto;
    width: 100%;
    max-width: 600px;
}

.stat-card {
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    text-align: center;
    flex: 1;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Experience Section */
.experience {
    padding: 4rem 1rem;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 70%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    overflow: visible;
}

.company-logo, .calsys-logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.8);
    padding: 8px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img, .calsys-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: center;
}

.timeline-company {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.timeline-duration {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

.timeline-description {
    margin-bottom: 0.75rem;
    text-align: justify;
    text-justify: inter-word;
    font-size: 0.85rem;
    max-height: none;
}

.timeline-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: justify;
}

.timeline-description li {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    text-align: justify;
    text-justify: inter-word;
}

.timeline-description li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.timeline-location {
    color: var(--text-secondary);
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-align: center;
}

.skills-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-color);
    padding: 0.3rem 0.75rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

a.skill-tag {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

a.skill-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media screen and (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .timeline-item {
        gap: 1.5rem;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .timeline-company {
        font-size: 1rem;
    }

    .timeline-description li {
        font-size: 0.95rem;
    }

    .skill-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Mobile Responsiveness for Experience Section */
@media screen and (max-width: 768px) {
    .experience {
        padding: 2rem 1rem;
    }

    .timeline {
        gap: 1.5rem;
    }

    .timeline-item {
        padding: 1.25rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-company {
        font-size: 0.95rem;
    }

    .timeline-duration {
        font-size: 0.85rem;
    }

    .timeline-description li {
        font-size: 0.9rem;
        padding-left: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .skill-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Education Section */
.education {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.1), transparent 70%);
}

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

.education-card {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.education-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.school-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.education-content {
    flex: 1;
}

.education-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-content .degree {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-content .duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.education-content .gpa {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2rem;
    display: inline-block;
    transition: var(--transition);
}

.education-content .sponsorship {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2rem;
    display: inline-block;
    transition: var(--transition);
}

.education-content .sponsorship:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.key-courses {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.key-courses h4, .activities h4 {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.key-courses p, .activities p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.activities {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.activities p {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin: 0.25rem;
    transition: var(--transition);
}

.activities p:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent 70%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Publications Section */
.publications, .certifications, .testimonials {
  padding: 3rem 0;
  background: linear-gradient(120deg, #1e215d 0%, #3a8fd8 40%, #7f53ac 70%, #5ffbf1 100%);
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}
.publications .container,
.certifications .container,
.testimonials .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.publication-list, .certification-list {
  margin: 0 auto;
  max-width: 800px;
  padding: 0;
  list-style: none;
}
.publication-list li, .certification-list li {
  margin-bottom: 1.2rem;
  text-align: left;
}
.testimonials .blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: left;
}
.testimonials .d-flex.align-items-center {
  justify-content: center;
}

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

.publication-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.publication-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.publication-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pub-details {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.publication-card .description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(120deg, #1e215d 0%, #3a8fd8 40%, #7f53ac 70%, #5ffbf1 100%) !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 4px 32px #5ffbf122 !important;
    padding: 2.5rem 2rem !important;
    margin-bottom: 2.5rem !important;
    color: #e0e0e0 !important;
}

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

.connect-card {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.connect-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.connect-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.connect-card:hover .connect-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.connect-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.connect-card:hover .connect-icon i {
    color: white;
}

.connect-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.connect-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Skills Section */
.skills-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.skill-category {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-category h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.skill-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

.skill-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: none !important;
    text-decoration: none !important;
}

.skill-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.skill-tags span {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
}

.no-decoration {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

.skill-item img,
.skills-tag img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

.skill-item,
.skills-tag span {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: rgba(17, 24, 39, 0.95);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .company-logo {
        margin: 0 auto;
    }

    .education-cards {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.1rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-grid {
        gap: 2rem;
        width: 100%;
    }
    
    .hero-text {
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-text p {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        font-size: 1rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }

    .social-btn {
        width: 80%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

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

    /* Skills and Timeline */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    /* Education */
    .education-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Publications */
    .publication-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Connect Section */
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .connect-card {
        padding: 1.5rem;
    }

    /* Certifications */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* General Spacing */
    .hero, .about, .experience, .education, .publications, .testimonials, .certifications {
        margin: 1rem 0;
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    .hero {
        padding: 3rem 0.75rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }
    
    .social-btn {
        width: 90%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
    }
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.trail-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
}

/* Achievement banner */
.achievement-banner {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(99, 102, 241, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transition: top 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.achievement-banner.show {
    top: 20px;
}

.achievement-icon {
    font-size: 1.5rem;
}

.achievement-text {
    font-weight: 600;
}

/* Skill progress */
.skill-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
}

/* Particles */
.particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* Skill item hover effect */
.skill-item {
    transform-origin: center;
    transition: transform 0.2s ease;
}

.skill-item:hover {
    transform: scale(1.05);
}

/* Add animation to skill cards */
.skill-card {
    animation: fadeIn 0.5s ease-out;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

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

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent 70%);
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin: 2rem 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-info .position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.testimonial-info .date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.testimonial-content {
    position: relative;
    padding: 1.5rem 0;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.testimonial-footer .company-logo {
    height: 30px;
    object-fit: contain;
}

/* Certifications Section */
.certifications {
    padding: 6rem 0;
    background: linear-gradient(120deg, #1e215d 0%, #3a8fd8 40%, #7f53ac 70%, #5ffbf1 100%) !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 4px 32px #5ffbf122 !important;
    padding: 2.5rem 2rem !important;
    margin-bottom: 2.5rem !important;
    color: #e0e0e0 !important;
}

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

.certification-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.certification-provider-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.certification-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.certification-card .issuer {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.certification-card .date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.certification-card .credential-id {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-family: monospace;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.verify-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.skills-tags span {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

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

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-footer {
        justify-content: center;
    }
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    z-index: 1000;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-animate::before {
    animation: glitch-1 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #0ff;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-4px, -4px);
}

.glitch-animate::after {
    animation: glitch-2 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #f0f;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(4px, 4px);
}

@keyframes glitch-1 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(5px, -5px);
    }
    40% {
        transform: translate(5px, 5px);
    }
    60% {
        transform: translate(-5px, -5px);
    }
    80% {
        transform: translate(-5px, 5px);
    }
    100% {
        transform: translate(0);
    }
}

.enter-btn {
    margin-top: 2rem;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.enter-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease;
}

.main-content.hidden {
    display: none;
}

/* Updated navbar styles */
.navbar {
    background: rgba(var(--bg-rgb), 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;  /* Show hamburger on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}

/* Projects Section Styles */
.projects {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 3rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.project-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: #6366f1;
    border-radius: 3px;
}

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

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-badge {
    background-color: rgba(79, 70, 229, 0.1);
    color: #8b8fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    /* transition: all 0.3s ease; */
    background-color: #6366f1;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
    width: 180px;
    /* opacity: 1; */
}

/* .project-link:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
} */

.project-link i {
    font-size: 1.1rem;
}

.project-link span {
    display: inline-block;
    opacity: 1;
}

@media (min-width: 768px) {
    .project-item {
        flex-direction: row;
        align-items: stretch;
        min-height: 400px;
    }
    
    .project-image {
        width: 45%;
        height: auto;
    }
    
    .project-content {
        width: 55%;
        padding: 2.5rem;
    }
}

/* Image Slider for Projects */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.projects-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

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

.tech-badge {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: var(--primary-color-dark);
}

.more-projects {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.more-projects-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.more-projects-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (min-width: 768px) {
    .project-item {
        flex-direction: row;
        align-items: stretch;
    }
    
    .project-image {
        width: 40%;
        height: auto;
        border-radius: 12px 0 0 12px;
    }
    
    .project-image img {
        border-radius: 12px 0 0 12px;
    }
    
    .project-content {
        width: 60%;
        padding: 2rem;
    }
}

/* Image Slider for Projects */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* CALSys Lab button with red styling */
.calsys-button {
    background: rgba(220, 38, 38, 0.8) !important; /* Red background */
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3) !important;
}

.calsys-button:hover {
    background: rgba(220, 38, 38, 1) !important; /* Darker red on hover */
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4) !important;
}

.no-decoration {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
}

/* Aurora Portal Landing Page Styles */
.aurora-bg {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    background: linear-gradient(120deg, #1e215d 0%, #3a8fd8 40%, #7f53ac 70%, #5ffbf1 100%);
    background-size: 200% 200%;
    animation: auroraMove 8s ease-in-out infinite;
    filter: blur(32px) brightness(1.2) saturate(1.2);
}
@keyframes auroraMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.aurora-name {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(90deg, #fff, #5ffbf1, #7f53ac, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2.5s linear infinite;
    margin-bottom: 1.5rem;
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeInName 1.2s 0.2s forwards, shimmer 2.5s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes fadeInName {
    to { opacity: 1; }
}
.aurora-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSubtitle 1s 1.1s forwards;
    z-index: 2;
}
@keyframes fadeInSubtitle {
    to { opacity: 1; transform: translateY(0); }
}
.aurora-enter-btn {
    padding: 1.2rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 2.5rem;
    background: linear-gradient(90deg, rgba(30,33,93,0.55) 0%, rgba(58,143,216,0.35) 40%, rgba(127,83,172,0.35) 70%, rgba(95,251,241,0.25) 100%);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    color: #fff;
    box-shadow: 0 0 24px 6px #5ffbf1a0, 0 0 48px 12px #7f53aca0;
    cursor: pointer;
    transition: background-position 0.5s, box-shadow 0.3s, transform 0.2s, border 0.3s;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 2;
    outline: none;
    margin-top: 2rem;
    text-shadow: 0 2px 8px #1e215d88;
}
.aurora-enter-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(270deg, #5ffbf1, #7f53ac, #3a8fd8, #5ffbf1);
    background-size: 400% 400%;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    filter: blur(8px);
    animation: auroraBtnGlow 6s ease-in-out infinite;
    border-radius: 2.5rem;
}
@keyframes auroraBtnGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.aurora-enter-btn span {
    position: relative;
    z-index: 2;
}
.aurora-enter-btn:hover {
    background: linear-gradient(90deg, rgba(30,33,93,0.7) 0%, rgba(58,143,216,0.5) 40%, rgba(127,83,172,0.5) 70%, rgba(95,251,241,0.35) 100%);
    box-shadow: 0 0 48px 16px #5ffbf1cc, 0 0 64px 24px #7f53accc;
    border: 2px solid #5ffbf1;
    transform: translateY(-3px) scale(1.04);
}
.aurora-enter-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 16px 4px #5ffbf188;
    border: 2px solid #7f53ac;
}

/* Sidebar Layout Styles */
.app-layout {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 270px;
    background: #10121a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 2px 0 24px 0 rgba(0,0,0,0.08);
}
.sidebar-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}
.sidebar-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5ffbf1;
    margin-bottom: 1rem;
    box-shadow: 0 2px 16px rgba(95,251,241,0.12);
}
.sidebar-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
}
.sidebar-socials {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}
.sidebar-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
}
.sidebar-socials a:hover {
    color: #5ffbf1;
    transform: scale(1.15);
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
    margin-bottom: auto;
}
.sidebar-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.sidebar-link:hover, .sidebar-link.active {
    background: linear-gradient(90deg, #5ffbf1 0%, #7f53ac 100%);
    color: #fff;
}
.sidebar-footer {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #94a3b8;
    text-align: center;
}

/* Main Content Area */
.main-content {
    margin-left: 270px;
    padding: 2.5rem 3.5rem 2.5rem 3.5rem;
    width: 100%;
    background: transparent;
    min-height: 100vh;
    transition: margin-left 0.3s;
}

/* Responsive Sidebar */
@media (max-width: 900px) {
    .sidebar {
        width: 70px;
        padding: 1.2rem 0.5rem;
    }
    .sidebar-profile {
        display: none;
    }
    .sidebar-nav {
        gap: 0.5rem;
    }
    .sidebar-link {
        justify-content: center;
        font-size: 1.2rem;
        padding: 0.7rem 0.5rem;
        gap: 0.2rem;
    }
    .main-content {
        margin-left: 70px;
        padding: 2rem 1rem;
    }
    .sidebar-footer {
        display: none;
    }
}
@media (max-width: 600px) {
    .sidebar {
        position: fixed;
        width: 100vw;
        height: 60px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 -2px 24px 0 rgba(0,0,0,0.08);
    }
    .sidebar-nav {
        flex-direction: row;
        gap: 0.5rem;
        width: auto;
        margin-bottom: 0;
    }
    .main-content {
        margin-left: 0;
        margin-bottom: 60px;
        padding: 1rem 0.5rem;
    }
}

/* Minimal Sidebar Redesign */
.sidebar.minimal {
    width: 70px;
    background: linear-gradient(180deg, #1e215d 0%, #3a8fd8 60%, #7f53ac 100%);
    box-shadow: 2px 0 24px 0 rgba(0,0,0,0.08);
    align-items: center;
    padding: 2rem 0 1rem 0;
    border-right: 1.5px solid rgba(255,255,255,0.07);
    z-index: 100;
}
.sidebar-profile {
    margin-bottom: 2.5rem;
}
.sidebar-avatar.gradient-border {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #5ffbf1, #7f53ac) border-box;
    box-shadow: 0 2px 16px rgba(95,251,241,0.12);
    padding: 2px;
    display: block;
}
.sidebar-nav.minimal {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    align-items: center;
}
.sidebar-link {
    color: #e0e0e0;
    font-size: 1.35rem;
    padding: 0.7rem 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.sidebar-link:hover, .sidebar-link.active {
    background: linear-gradient(135deg, #5ffbf1 0%, #7f53ac 100%);
    color: #fff;
    box-shadow: 0 2px 12px #5ffbf1a0;
}
.sidebar-link[title]:hover:after {
    content: attr(title);
    position: absolute;
    left: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,33,93,0.95);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px #0002;
    z-index: 10;
}

/* Main Content Split Layout */
.main-content {
    margin-left: 70px;
    padding: 2.5rem 3.5rem 2.5rem 3.5rem;
    width: 100%;
    background: transparent;
    min-height: 100vh;
    transition: margin-left 0.3s;
}
.hero.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 60vh;
    background: none;
    box-shadow: none;
    padding: 3rem 0 2rem 0;
}
.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}
.hero-title.gradient-text {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #5ffbf1 0%, #7f53ac 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.hero-tagline {
    font-size: 1.3rem;
    color: #7f53ac;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.hero-description {
    color: #bfc9d8;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.hero-socials {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.5rem;
}
.hero-socials a {
    color: #7f53ac;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.hero-socials a:hover {
    color: #5ffbf1;
    transform: scale(1.15);
}
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-main-avatar.gradient-border {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #5ffbf1, #7f53ac) border-box;
    padding: 3px;
    box-shadow: 0 4px 32px #5ffbf133;
}

/* Remove card styles from main content */
.skill-card, .education-card, .timeline-item, .publication-card, .connect-card, .certification-card, .project-item {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 2.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .main-content {
        padding: 1.2rem 0.5rem;
    }
    .hero.split-layout {
        flex-direction: column;
        gap: 2rem;
        min-height: 40vh;
        padding: 2rem 0 1rem 0;
    }
    .hero-main-avatar.gradient-border {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 600px) {
    .sidebar.minimal {
        width: 100vw;
        height: 60px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 -2px 24px 0 rgba(0,0,0,0.08);
    }
    .main-content {
        margin-left: 0;
        margin-bottom: 60px;
        padding: 1rem 0.5rem;
    }
    .hero.split-layout {
        flex-direction: column;
        gap: 1.2rem;
        min-height: 30vh;
        padding: 1.2rem 0 0.5rem 0;
    }
}

/* Aurora Animated Gradient Background for Main Content */
body, .main-content {
    background: linear-gradient(120deg, #1e215d 0%, #3a8fd8 40%, #7f53ac 70%, #5ffbf1 100%);
    background-size: 200% 200%;
    animation: auroraMove 8s ease-in-out infinite;
}
@keyframes auroraMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sidebar Glassmorphism and Aurora Accent */
.sidebar.minimal {
    background: linear-gradient(180deg, rgba(30,33,93,0.85) 0%, rgba(58,143,216,0.7) 60%, rgba(127,83,172,0.7) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 2px solid #5ffbf1;
    box-shadow: 2px 0 24px 0 rgba(0,0,0,0.08);
}

/* Section Headings Aurora Gradient */
.hero-title.gradient-text, .section-title, h2.gradient-text, h3.gradient-text {
    background: linear-gradient(90deg, #5ffbf1 0%, #7f53ac 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #5ffbf1;
}

/* Section separation with whitespace only */
.main-content section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

/* Education & Experience Section Redesign */
.education-section, .experience-section {
    width: 100%;
    margin: 0 auto 4rem auto;
    padding: 2.5rem 0 2rem 0;
    position: relative;
}
.education-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}
.education-card {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 480px;
    margin: 0 auto;
    padding: 2.2rem 2rem 1.5rem 2rem;
    background: rgba(20, 24, 40, 0.75);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px #5ffbf122;
    border: 1.5px solid rgba(127,83,172,0.13);
    position: relative;
    z-index: 1;
}
.education-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.2rem auto;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 12px #7f53ac22;
}
.education-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    text-align: center;
}
.education-card .degree {
    color: #b48cf0;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-align: center;
}
.education-card .duration, .education-card .gpa {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-align: center;
}
.education-card .key-courses, .education-card .activities {
    margin-top: 1.2rem;
    color: #bfc9d8;
    font-size: 0.98rem;
    text-align: left;
}
.education-card .key-courses h4, .education-card .activities h4 {
    color: #5ffbf1;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.education-card .key-courses p, .education-card .activities p {
    color: #e0e0e0;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

/* Experience Timeline */
.experience-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}
.timeline {
    position: relative;
    margin-left: 2.5rem;
    padding-left: 2.5rem;
    border-left: 3px solid #5ffbf1;
}
.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    padding-left: 2.5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    background: linear-gradient(135deg, #5ffbf1, #7f53ac);
    border-radius: 50%;
    box-shadow: 0 0 12px #5ffbf1aa;
    border: 2.5px solid #fff;
    z-index: 2;
}
.timeline-item h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.timeline-item .timeline-company {
    color: #b48cf0;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.timeline-item .timeline-duration {
    color: #e0e0e0;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}
.timeline-item .timeline-description {
    color: #bfc9d8;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
    line-height: 1.6;
}
.timeline-item .skills-tag {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.timeline-item .skill-tag {
    background: rgba(95,251,241,0.13);
    color: #5ffbf1;
    padding: 0.25rem 0.7rem;
    border-radius: 1.2rem;
    font-size: 0.92rem;
    font-weight: 500;
}

/* Make all text more readable */
body, .main-content, .main-content * {
    color: #e0e0e0 !important;
    text-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .education-section {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .education-card {
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .timeline {
        margin-left: 1.2rem;
        padding-left: 1.2rem;
    }
    .timeline-item {
        padding-left: 1.2rem;
    }
}

/* Interactive Aurora Timeline for Experience & Education */
.timeline-aurora {
    position: relative;
    margin: 0 auto 4rem auto;
    padding-left: 60px;
    max-width: 900px;
}
.timeline-aurora::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #5ffbf1 0%, #7f53ac 50%, #3a8fd8 100%);
    border-radius: 8px;
    animation: auroraTimelineGlow 4s ease-in-out infinite alternate;
    box-shadow: 0 0 32px 8px #5ffbf1aa, 0 0 16px 2px #7f53ac99;
    z-index: 0;
}
@keyframes auroraTimelineGlow {
    0% { box-shadow: 0 0 32px 8px #5ffbf1aa, 0 0 16px 2px #7f53ac99; }
    100% { box-shadow: 0 0 48px 16px #7f53acbb, 0 0 24px 6px #5ffbf1cc; }
}
.timeline-entry {
    position: relative;
    margin-bottom: 3.5rem;
    padding: 2.2rem 2.5rem 2.2rem 2.5rem;
    background: rgba(20, 24, 40, 0.82);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px #5ffbf122;
    border: 1.5px solid rgba(127,83,172,0.13);
    transition: box-shadow 0.3s, background 0.3s;
    z-index: 1;
}
.timeline-entry:hover {
    background: rgba(95,251,241,0.13);
    box-shadow: 0 0 32px 8px #5ffbf1cc, 0 0 16px 2px #7f53acbb;
}
.timeline-dot-aurora {
    position: absolute;
    left: -48px;
    top: 2.2rem;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #5ffbf1, #7f53ac, #3a8fd8);
    border-radius: 50%;
    box-shadow: 0 0 24px 8px #5ffbf1cc, 0 0 8px 2px #7f53acbb;
    border: 4px solid #fff;
    z-index: 2;
    transition: box-shadow 0.3s, background 0.3s;
    animation: auroraDotPulse 2.5s infinite alternate;
}
@keyframes auroraDotPulse {
    0% { box-shadow: 0 0 24px 8px #5ffbf1cc, 0 0 8px 2px #7f53acbb; }
    100% { box-shadow: 0 0 36px 16px #7f53accc, 0 0 16px 4px #5ffbf1cc; }
}
.timeline-entry h3, .timeline-entry .timeline-company {
    color: #fff;
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 0.2rem;
}
.timeline-entry .timeline-company {
    color: #5ffbf1;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.timeline-entry .timeline-duration {
    color: #b48cf0;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}
.timeline-entry .timeline-description {
    color: #e0e0e0;
    font-size: 1.02rem;
    margin-bottom: 0.2rem;
    line-height: 1.7;
}
.timeline-entry .skills-tag {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.timeline-entry .skill-tag {
    background: linear-gradient(90deg, #5ffbf1 0%, #7f53ac 100%);
    color: #10121a;
    padding: 0.3rem 0.9rem;
    border-radius: 1.2rem;
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: 0 2px 8px #5ffbf133;
}
@media (max-width: 900px) {
    .timeline-aurora {
        padding-left: 30px;
    }
    .timeline-aurora::before {
        left: 12px;
        width: 4px;
    }
    .timeline-dot-aurora {
        left: -22px;
        width: 18px;
        height: 18px;
    }
    .timeline-entry {
        padding: 1.2rem 0.7rem 1.2rem 1.2rem;
    }
}

.card.h-100, .card {
    background: none !important;
    box-shadow: 0 0 16px 2px #5ffbf155 !important;
    border: 3px solid;
    border-image: linear-gradient(120deg, #5ffbf1 0%, #3a8fd8 60%, #7f53ac 100%) 1;
}
.card-body {
    background: none !important;
}
.card-title a {
    color: #36b6ff !important;
}
.card-text, .project-description {
    color: #e0e0e0 !important;
}
