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

body {
    background-color: #020d1a;
    color: #e0eaf5;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 25, 60, 0.7);
    border: 1px solid rgba(50, 120, 255, 0.2);
    border-radius: 50px;
    padding: 14px 40px;
    backdrop-filter: blur(16px);
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #8aa8cc;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.nav-links a i { font-size: 0.85rem; }

.nav-links a:hover { color: #ffffff; }

.nav-links a.active {
    color: #ffffff;
    border-bottom: 2px solid #3a7fff;
}


.content {
    width: 100%;
    max-width: 860px;
    padding: 120px 30px 140px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
    position: relative;
}


.page-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 100;
    color: #e0eaf5;
    margin-bottom: 4px;
}

.page-title span { color: #4a9eff; }

.page-subtitle {
    font-size: 0.95rem;
    color: #506a88;
    margin-bottom: 6px;
    font-style: italic;
}


.glass-box {
    background: rgba(10, 25, 60, 0.45);
    border: 1px solid rgba(50, 120, 255, 0.18);
    border-radius: 20px;
    padding: 30px 35px;
    backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-box:hover {
    border-color: rgba(74, 158, 255, 0.35);
    box-shadow: 0 0 30px rgba(50, 120, 255, 0.08);
}


.box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(50, 120, 255, 0.15);
}

.box-header i {
    font-size: 1.1rem;
    color: #4a9eff;
    width: 36px;
    height: 36px;
    background: rgba(50, 120, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #e0eaf5;
}


.main-card {
    border-color: rgba(74, 158, 255, 0.3);
    background: rgba(15, 30, 75, 0.5);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 14px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-icon {
    width: 52px;
    height: 52px;
    background: rgba(50, 120, 255, 0.15);
    border: 1px solid rgba(50, 120, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #4a9eff;
    flex-shrink: 0;
}

.role {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e0eaf5;
    margin-bottom: 4px;
}

.company {
    font-size: 0.9rem;
    color: #4a9eff;
    font-weight: 500;
}

.badge {
    background: rgba(50, 200, 100, 0.1);
    border: 1px solid rgba(50, 200, 100, 0.3);
    color: #4acc80;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge i {
    font-size: 0.5rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.description {
    color: #a0b8d0;
    font-size: 0.97rem;
    line-height: 1.9;
    font-weight: 300;
}


.learnings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(50, 120, 255, 0.05);
    border: 1px solid rgba(50, 120, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.learning-item:hover {
    background: rgba(50, 120, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateY(-2px);
}

.learning-item > i {
    font-size: 1.5rem;
    color: #4a9eff;
    flex-shrink: 0;
    margin-top: 2px;
}

.learning-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d0e4f5;
    margin-bottom: 4px;
}

.learning-item p {
    font-size: 0.8rem;
    color: #6a90b8;
    line-height: 1.5;
}

/* ===== PROJECTS LIST ===== */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(50, 120, 255, 0.1);
    transition: all 0.3s ease;
}

.project-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-item:first-child {
    padding-top: 0;
}

.project-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 100;
    color: rgba(74, 158, 255, 0.2);
    flex-shrink: 0;
    line-height: 1;
    min-width: 40px;
    transition: color 0.3s;
}

.project-item:hover .project-number {
    color: rgba(74, 158, 255, 0.6);
}

.project-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #d0e4f5;
    margin-bottom: 6px;
}

.project-info p {
    font-size: 0.85rem;
    color: #7a98b8;
    line-height: 1.7;
    margin-bottom: 10px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background: rgba(50, 120, 255, 0.1);
    border: 1px solid rgba(50, 120, 255, 0.2);
    color: #4a9eff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}


.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.body-text {
    color: #a0b8d0;
    font-size: 0.92rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 18px;
}

.growth-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.growth-tags span {
    background: rgba(50, 120, 255, 0.08);
    border: 1px solid rgba(50, 120, 255, 0.18);
    color: #8ab8e0;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.outcome-stats {
    display: flex;
    gap: 30px;
    margin-top: 4px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 100;
    color: #4a9eff;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #6a90b8;
    margin-top: 4px;
    text-align: center;
}


.social-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    background: linear-gradient(to top, rgba(2, 13, 26, 0.95), transparent);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(50, 130, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9eff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(10, 30, 70, 0.5);
}

.social-icon:hover {
    border-color: #4a9eff;
    background: rgba(50, 130, 255, 0.15);
    box-shadow: 0 0 15px rgba(50, 130, 255, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

.divider-line {
    width: 1px;
    height: 28px;
    background: rgba(50, 130, 255, 0.25);
}


@media (max-width: 768px) {
    .navbar { padding: 12px 20px; top: 12px; }
    .nav-links { gap: 20px; }
    .content { padding: 100px 16px 120px; }
    .glass-box { padding: 22px 20px; }
    .learnings-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .card-top { flex-direction: column; align-items: flex-start; }
}

body {
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}