:root {
    --alpine-blue: #0a192f;
    --alpine-dark: #020c1b;
    --alpine-light: #112240;
    --alpine-cyan: #64ffda;
    --alpine-slate: #8892b0;
    --alpine-white: #e6f1ff;
    --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--alpine-slate);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* body'da background yo'q */
}

a {
    text-decoration: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Background image fixed qilish */
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-attachment: fixed;
    /* ← FIXED */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Blur effekt */
    filter: blur(6px);
    opacity: 1;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 12, 27, 0.95) 0%, rgba(10, 25, 47, 0.85) 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--alpine-white);
}

.section-subtitle {
    color: var(--alpine-slate);
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--alpine-cyan);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: transparent;
    color: var(--alpine-cyan);
    border: 1px solid var(--alpine-cyan);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--alpine-white);
    border: 1px solid var(--alpine-slate);
}

.btn-secondary:hover {
    border-color: var(--alpine-cyan);
    color: var(--alpine-cyan);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled holati uchun CSS */
.navbar.scrolled {
    background-color: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2) !important;
    padding: 12px 0 !important;
    box-shadow: 0 10px 40px rgba(2, 12, 27, 0.3) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--alpine-white);
    text-decoration: none;
}

.logo span {
    color: var(--alpine-cyan);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--alpine-white);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--alpine-cyan);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--alpine-cyan);
    transition: var(--transition);
}

.nav-links a:hover::before {
    width: 100%;
}

.btn-cv {
    background-color: transparent;
    color: var(--alpine-cyan);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--alpine-cyan);
    font-family: 'Montserrat', sans-serif;
}

.btn-cv:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--alpine-white);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    z-index: 1001;
    padding: 80px 40px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(100, 255, 218, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--alpine-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--alpine-white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.availability::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--alpine-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(100, 255, 218, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--alpine-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--alpine-slate);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--alpine-slate);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-placeholder:hover .profile-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(100, 255, 218, 0.05), rgba(10, 25, 47, 0.1));
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--alpine-white);
}

.about-text p {
    color: var(--alpine-slate);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
}

.detail-item:hover {
    border-color: var(--alpine-cyan);
    transform: translateY(-5px);
}

.detail-item i {
    color: var(--alpine-cyan);
    font-size: 1.5rem;
    margin-top: 5px;
}

.detail-item h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--alpine-white);
}

.detail-item p {
    color: var(--alpine-slate);
    font-size: 0.9rem;
    margin: 0;
}

/* Projects Section */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--alpine-slate);
    font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    border-color: var(--alpine-cyan);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 12, 27, 0.5);
    border-color: var(--alpine-cyan);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--alpine-white);
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid var(--alpine-cyan);
}

.project-link:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--alpine-white);
}

.project-desc {
    color: var(--alpine-slate);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tech span {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    color: var(--alpine-slate);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.project-links a:hover {
    color: var(--alpine-cyan);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--alpine-white);
}

.contact-info p {
    color: var(--alpine-slate);
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.contact-item i {
    color: var(--alpine-cyan);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--alpine-white);
}

.contact-item p {
    color: var(--alpine-slate);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 50%;
    color: var(--alpine-white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.social-links a:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    transform: translateY(-3px);
    border-color: var(--alpine-cyan);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--alpine-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--alpine-slate);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--alpine-cyan);
}

.form-note {
    color: var(--alpine-slate);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: rgba(2, 12, 27, 0.9);
    color: var(--alpine-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--alpine-slate);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--alpine-slate);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
    color: var(--alpine-cyan);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 50%;
    color: var(--alpine-white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-social a:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    transform: translateY(-3px);
    border-color: var(--alpine-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--alpine-slate);
    font-size: 0.9rem;
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.skill-card {
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.skill-card:hover {
    border-color: var(--alpine-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(2, 12, 27, 0.5);
}

.skill-icon {
    font-size: 3rem;
    color: var(--alpine-cyan);
    margin-bottom: 20px;
}

.skill-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--alpine-white);
}

.skill-desc {
    color: var(--alpine-slate);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 15px;
}

.level-bar {
    flex-grow: 1;
    height: 6px;
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--alpine-cyan), #4ECDC4);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.level-text {
    color: var(--alpine-cyan);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    min-width: 40px;
}

/* Skills Tags */
.skills-tags {
    margin-top: 40px;
}

.tags-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--alpine-white);
    font-weight: 600;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tag {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.skill-tag:hover {
    background-color: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
    border-color: var(--alpine-cyan);
}

/* Animation for skill bars */
@keyframes fillBar {
    from {
        width: 0;
    }

    to {
        width: var(--target-width);
    }
}

/* Add animation when section is in view */
.skills.visible .level-fill {
    animation: fillBar 1.5s ease forwards;
}

/* Responsive Design for Skills */
@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
    }

    .tags-container {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .skill-card {
        padding: 20px;
    }

    .skill-icon {
        font-size: 2.5rem;
    }

    .skill-title {
        font-size: 1.3rem;
    }

    .tags-container {
        gap: 8px;
    }

    .skill-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-container,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-container {
        gap: 40px;
    }

    .project-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* Professional Journey Section */
.journey {
    background-color: rgba(2, 12, 27, 0.7);
    backdrop-filter: blur(5px);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(100, 255, 218, 0.3),
            rgba(100, 255, 218, 0.1),
            rgba(100, 255, 218, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    width: 40px;
    flex-shrink: 0;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background-color: var(--alpine-cyan);
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.marker-dot.coming-soon {
    background-color: var(--alpine-slate);
    box-shadow: 0 0 0 4px rgba(136, 146, 176, 0.2);
    animation: pulse 2s infinite;
}

.marker-dot.education {
    background-color: #6C63FF;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

.marker-line {
    position: absolute;
    left: 20px;
    top: 26px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(100, 255, 218, 0.2),
            transparent);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex-grow: 1;
    padding-left: 30px;
    padding-bottom: 20px;
}

.timeline-date {
    color: var(--alpine-cyan);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.coming-soon-content .timeline-date {
    color: var(--alpine-slate);
}

.education-content .timeline-date {
    color: #6C63FF;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--alpine-white);
    margin: 0;
}

.timeline-badge {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--alpine-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.coming-soon-content .timeline-badge {
    background-color: rgba(136, 146, 176, 0.1);
    color: var(--alpine-slate);
    border-color: rgba(136, 146, 176, 0.2);
}

.education-content .timeline-badge {
    background-color: rgba(108, 99, 255, 0.1);
    color: #6C63FF;
    border-color: rgba(108, 99, 255, 0.2);
}

.timeline-body {
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
}

.coming-soon-content .timeline-body {
    border-color: rgba(136, 146, 176, 0.1);
}

.education-content .timeline-body {
    border-color: rgba(108, 99, 255, 0.1);
}

.timeline-body p {
    color: var(--alpine-slate);
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-body p:last-child {
    margin-bottom: 0;
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--alpine-cyan);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
}

.tech-tag:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.coming-soon-content .tech-tag {
    background-color: rgba(136, 146, 176, 0.05);
    color: var(--alpine-slate);
    border-color: rgba(136, 146, 176, 0.1);
}

.education-content .tech-tag {
    background-color: rgba(108, 99, 255, 0.05);
    color: #6C63FF;
    border-color: rgba(108, 99, 255, 0.1);
}

/* Journey Stats */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.stat-card:hover {
    border-color: var(--alpine-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 12, 27, 0.3);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--alpine-cyan);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--alpine-white);
    margin-bottom: 8px;
}

.stat-desc {
    color: var(--alpine-slate);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animation for timeline items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 9px;
    }

    .timeline-marker {
        width: 20px;
    }

    .marker-dot {
        width: 12px;
        height: 12px;
        left: 4px;
    }

    .marker-line {
        left: 10px;
    }

    .timeline-content {
        padding-left: 20px;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .journey-stats {
        grid-template-columns: 1fr;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-body {
        padding: 15px;
    }
}