/* Theme: Jungle - Day 10 (Letter J): Inspired by tropical rainforests, lush foliage, exotic wildlife, dense canopies, vibrant flora, natural harmony, verdant landscapes, misty mornings, botanical gardens, wild adventures */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Lato:wght@300;400;700;900&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18.2px;
    line-height: 1.82;
    color: #1b3a1f;
    background: linear-gradient(162deg, #f4fdf5 0%, #e8f9ea 28%, #d4f1d8 58%, #e3f7e6 88%, #f8fef9 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 28% 15%, rgba(34, 139, 34, 0.07) 0%, transparent 52%),
        radial-gradient(circle at 72% 85%, rgba(46, 125, 50, 0.06) 0%, transparent 48%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 42px, rgba(34, 139, 34, 0.015) 42px, rgba(34, 139, 34, 0.015) 84px),
        repeating-linear-gradient(-45deg, transparent, transparent 42px, rgba(46, 125, 50, 0.012) 42px, rgba(46, 125, 50, 0.012) 84px);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 253, 245, 0.91);
    backdrop-filter: blur(22px);
    border-bottom: 3px solid rgba(34, 139, 34, 0.24);
    box-shadow: 0 3px 18px rgba(27, 58, 31, 0.08);
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#topnav.scrolled {
    background: rgba(244, 253, 245, 0.96);
    box-shadow: 0 5px 26px rgba(27, 58, 31, 0.12);
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 3.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
}

.logo h1 {
    font-family: 'Merriweather', serif;
    font-size: 1.72rem;
    font-weight: 900;
    color: #1b3a1f;
    margin: 0;
    letter-spacing: 0.42px;
    position: relative;
    padding-left: 3.18rem;
}

.logo h1::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.15rem;
    animation: jungleSway 4.2s ease-in-out infinite;
}

@keyframes jungleSway {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg);
        opacity: 0.82;
    }
    50% {
        transform: translateY(-50%) rotate(8deg);
        opacity: 1;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.32rem;
}

.nav-menu li a {
    display: block;
    padding: 0.82rem 1.78rem;
    color: #1b3a1f;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.96rem;
    transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    letter-spacing: 0.45px;
    border-radius: 32px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #228b22 0%, #2e7d32 100%);
    transition: width 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 58%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2e7d32;
    background: rgba(34, 139, 34, 0.09);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #228b22 0%, #2e7d32 100%);
    border: none;
    color: #f4fdf5;
    font-size: 1.72rem;
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 18px;
    box-shadow: 0 7px 24px rgba(34, 139, 34, 0.38);
}

.mobile-toggle:hover {
    transform: scale(1.09);
    box-shadow: 0 9px 32px rgba(34, 139, 34, 0.48);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 142px 0 102px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -26%;
    right: -19%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.12) 0%, transparent 72%);
    border-radius: 50%;
    animation: jungleGrow 36s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -24%;
    left: -15%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.10) 0%, transparent 72%);
    border-radius: 50%;
    animation: jungleGrow 42s ease-in-out infinite reverse;
}

@keyframes jungleGrow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.58;
    }
    33% {
        transform: translate(52px, -45px) scale(1.12);
        opacity: 0.85;
    }
    66% {
        transform: translate(-38px, 48px) scale(0.92);
        opacity: 0.68;
    }
}

.hero-content {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 3.6rem;
    display: grid;
    grid-template-columns: 1.38fr 1fr;
    gap: 6.8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: jungleEmerge 1.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s both;
}

@keyframes jungleEmerge {
    0% {
        opacity: 0;
        transform: translateY(68px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 4.85rem;
    font-weight: 900;
    line-height: 1.16;
    margin-bottom: 2.58rem;
    color: #1b3a1f;
    letter-spacing: -0.72px;
}

.hero-text h1 br {
    display: block;
}

.hero-subtitle {
    font-size: 1.52rem;
    color: #3d5a3f;
    margin-bottom: 3.72rem;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.18px;
}

.hero-buttons {
    display: flex;
    gap: 2.12rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.35rem 3.52rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.12rem;
    letter-spacing: 0.58px;
    border-radius: 32px;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    transform: translate(-50%, -50%);
    transition: width 0.68s, height 0.68s;
}

.btn:hover::before {
    width: 380px;
    height: 380px;
}

.btn-primary {
    background: linear-gradient(135deg, #228b22 0%, #2e7d32 100%);
    color: #f4fdf5;
    border: none;
    box-shadow: 0 13px 38px rgba(34, 139, 34, 0.36);
}

.btn-primary:hover {
    transform: translateY(-4.5px);
    box-shadow: 0 18px 52px rgba(34, 139, 34, 0.46);
}

.btn-secondary {
    background: #f4fdf5;
    color: #2e7d32;
    border: 3px solid #228b22;
    box-shadow: 0 9px 28px rgba(34, 139, 34, 0.24);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #f4fdf5;
    border-color: transparent;
    transform: translateY(-4.5px);
    box-shadow: 0 15px 42px rgba(46, 125, 50, 0.38);
}

.hero-image {
    animation: jungleEmerge 1.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.28s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(28px);
    padding: 2.82rem;
    box-shadow: 
        0 0 0 3px rgba(34, 139, 34, 0.18),
        0 22px 68px rgba(27, 58, 31, 0.16);
    transition: all 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 38px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9px;
    background: linear-gradient(90deg, #228b22 0%, #2e7d32 50%, #1b5e20 100%);
    border-radius: 38px 38px 0 0;
}

.profile-card::after {
    content: '🌿';
    position: absolute;
    bottom: 26px;
    right: 26px;
    font-size: 4.25rem;
    opacity: 0.08;
}

.profile-card:hover {
    transform: translateY(-14px) scale(1.018);
    box-shadow: 
        0 0 0 3px rgba(34, 139, 34, 0.32),
        0 32px 88px rgba(27, 58, 31, 0.24);
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.22rem;
    border-radius: 28px;
    box-shadow: 0 14px 42px rgba(27, 58, 31, 0.18);
}

.profile-details h3 {
    font-family: 'Merriweather', serif;
    font-size: 2.48rem;
    margin-bottom: 0.82rem;
    color: #1b3a1f;
    font-weight: 900;
    letter-spacing: -0.35px;
}

.profile-details p {
    color: #3d5a3f;
    margin-bottom: 2.28rem;
    line-height: 1.72;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.18rem 2.92rem;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #f4fdf5;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.58px;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 28px;
    box-shadow: 0 10px 34px rgba(46, 125, 50, 0.34);
    font-family: 'Lato', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #0d3d10 100%);
    transform: translateY(-3.5px);
    box-shadow: 0 13px 44px rgba(46, 125, 50, 0.44);
}

section {
    padding: 118px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 3.6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6.35rem;
    position: relative;
}

.section-header::before {
    content: '🌿 🌿 🌿';
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.38rem;
    letter-spacing: 1.18rem;
    opacity: 0.68;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 4.35rem;
    font-weight: 900;
    line-height: 1.24;
    color: #1b3a1f;
    letter-spacing: -0.62px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 5px;
    background: linear-gradient(90deg, #228b22 0%, #2e7d32 50%, #1b5e20 100%);
    border-radius: 5px;
}

#experience {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
}

.timeline {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 262px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #228b22 0%, #2e7d32 48%, #1b5e20 100%);
    border-radius: 5px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 6.35rem;
    margin-bottom: 5.82rem;
    position: relative;
}

.timeline-year {
    font-family: 'Merriweather', serif;
    font-size: 6.15rem;
    font-weight: 900;
    color: rgba(34, 139, 34, 0.22);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 5.58rem;
    letter-spacing: -2.15px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -102px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    background: #228b22;
    border-radius: 50%;
    box-shadow: 
        0 0 0 8px rgba(244, 253, 245, 1),
        0 0 0 16px rgba(34, 139, 34, 0.18),
        0 0 32px rgba(34, 139, 34, 0.45);
    animation: junglePulse 3.6s ease-in-out infinite;
}

@keyframes junglePulse {
    0%, 100% {
        box-shadow: 
            0 0 0 8px rgba(244, 253, 245, 1),
            0 0 0 16px rgba(34, 139, 34, 0.18),
            0 0 32px rgba(34, 139, 34, 0.45);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(244, 253, 245, 1),
            0 0 0 22px rgba(34, 139, 34, 0.28),
            0 0 42px rgba(34, 139, 34, 0.65);
        transform: translateY(-50%) scale(1.14);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    padding: 3.22rem;
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 14px 42px rgba(27, 58, 31, 0.11);
    position: relative;
    border-radius: 32px;
    border-left: 6px solid rgba(34, 139, 34, 0.26);
}

.timeline-content:hover {
    transform: translateX(13px);
    box-shadow: 0 22px 62px rgba(27, 58, 31, 0.18);
    border-left-color: #228b22;
    background: rgba(255, 255, 255, 0.92);
}

.timeline-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 2.28rem;
    margin-bottom: 0.72rem;
    color: #1b3a1f;
    font-weight: 900;
    letter-spacing: -0.32px;
}

.timeline-content h4 {
    color: #228b22;
    font-size: 1.26rem;
    margin-bottom: 1.72rem;
    font-weight: 700;
}

.timeline-content p {
    color: #3d5a3f;
    line-height: 1.82;
    margin: 0;
}

.timeline-content a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    transition: all 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-content a:hover {
    border-bottom-color: #2e7d32;
    color: #1b5e20;
}

#ai {
    background: rgba(228, 241, 216, 0.52);
    backdrop-filter: blur(14px);
}

.ai-projects {
    display: grid;
    gap: 4.25rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    padding: 4.12rem;
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 16px 52px rgba(27, 58, 31, 0.13);
    border-radius: 38px;
    border-top: 7px solid #228b22;
}

.project-card::after {
    content: '🌿';
    position: absolute;
    top: 42px;
    right: 42px;
    font-size: 5.15rem;
    opacity: 0.08;
}

.project-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 26px 76px rgba(27, 58, 31, 0.20);
    background: rgba(255, 255, 255, 0.94);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 2.02rem;
    margin-bottom: 1.58rem;
}

.project-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 3.05rem;
    color: #1b3a1f;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.45px;
}

.project-client {
    color: #228b22;
    font-weight: 700;
    font-size: 1.22rem;
    margin-bottom: 2.52rem;
}

.project-card > p {
    color: #3d5a3f;
    line-height: 1.82;
    margin-bottom: 3.08rem;
}

.project-impact {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.09) 0%, rgba(46, 125, 50, 0.09) 100%);
    padding: 2.32rem;
    color: #1b3a1f;
    line-height: 1.82;
    border-radius: 26px;
    border-left: 6px solid #2e7d32;
}

.project-impact strong {
    color: #2e7d32;
    font-weight: 700;
}

#speaking {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.25rem;
}

.year-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    padding: 3.62rem;
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 14px 42px rgba(27, 58, 31, 0.11);
    border-radius: 32px;
    position: relative;
    border-top: 6px solid rgba(34, 139, 34, 0.26);
}

.year-section:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 62px rgba(27, 58, 31, 0.18);
    border-top-color: #228b22;
    background: rgba(255, 255, 255, 0.92);
}

.year-section h3 {
    font-family: 'Merriweather', serif;
    font-size: 4.05rem;
    margin-bottom: 3.08rem;
    color: #1b3a1f;
    text-align: center;
    padding-bottom: 2.28rem;
    border-bottom: 4px solid rgba(34, 139, 34, 0.16);
    font-weight: 900;
    letter-spacing: -0.62px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #228b22 0%, #2e7d32 50%, #1b5e20 100%);
    border-top-color: #1b5e20;
}

.year-section.books h3 {
    color: #f4fdf5;
    border-bottom-color: rgba(244, 253, 245, 0.24);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.62rem 0;
    color: #3d5a3f;
    border-bottom: 3px solid rgba(27, 58, 31, 0.07);
    line-height: 1.82;
    position: relative;
    padding-left: 2.72rem;
}

.achievements li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 1.62rem;
    font-size: 1.08rem;
}

.year-section.books .achievements li {
    color: rgba(244, 253, 245, 0.95);
    border-bottom-color: rgba(244, 253, 245, 0.20);
}

.achievements li:last-child {
    border-bottom: none;
}

.achievements strong {
    color: #1b3a1f;
    font-weight: 700;
}

.year-section.books .achievements strong {
    color: #f4fdf5;
}

#personal {
    background: rgba(228, 241, 216, 0.52);
    backdrop-filter: blur(14px);
}

#contact {
    background: linear-gradient(165deg, rgba(34, 139, 34, 0.07) 0%, rgba(46, 125, 50, 0.07) 100%);
    backdrop-filter: blur(14px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(26px);
    padding: 6.58rem 6.08rem;
    text-align: center;
    box-shadow: 0 26px 82px rgba(27, 58, 31, 0.15);
    max-width: 1220px;
    margin: 0 auto;
    border-radius: 42px;
    border: 4px solid rgba(34, 139, 34, 0.20);
}

.contact-card h2 {
    font-family: 'Merriweather', serif;
    font-size: 4.85rem;
    margin-bottom: 3.08rem;
    color: #1b3a1f;
    font-weight: 900;
    letter-spacing: -0.72px;
}

.contact-card > p {
    font-size: 1.42rem;
    color: #3d5a3f;
    line-height: 1.82;
    margin-bottom: 4.92rem;
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3.08rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.68rem;
    padding: 1.68rem 4.12rem;
    background: linear-gradient(135deg, #228b22 0%, #2e7d32 100%);
    color: #f4fdf5;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.58px;
    transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 32px;
    box-shadow: 0 14px 42px rgba(34, 139, 34, 0.38);
    font-family: 'Lato', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    transform: translateY(-4.5px);
    box-shadow: 0 20px 56px rgba(34, 139, 34, 0.48);
}

.contact-link .icon {
    font-size: 2.15rem;
}

#footer {
    background: linear-gradient(135deg, #1b3a1f 0%, #0f2612 50%, #0a1a0c 100%);
    padding: 4.85rem 0;
    text-align: center;
    color: rgba(244, 253, 245, 0.72);
    border-top: 5px solid #228b22;
}

#footer a {
    color: #228b22;
    text-decoration: none;
    transition: color 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
}

#footer a:hover {
    color: #2e7d32;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 5.05rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 568px;
        margin: 0 auto;
    }

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

    .year-section.books {
        grid-column: span 1;
    }
}

@media screen and (max-width: 900px) {
    .nav-container {
        padding: 0 2.58rem;
        height: 72px;
    }

    html {
        scroll-padding-top: 72px;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(244, 253, 245, 0.97);
        backdrop-filter: blur(22px);
        flex-direction: column;
        padding: 3.48rem;
        gap: 0;
        box-shadow: 0 20px 56px rgba(27, 58, 31, 0.15);
        transform: translateY(-150%);
        transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 3px solid rgba(34, 139, 34, 0.24);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.35rem;
        border-bottom: 1px solid rgba(27, 58, 31, 0.07);
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.85rem;
    }

    .section-header h2 {
        font-size: 3.42rem;
    }

    .timeline::before {
        left: 42px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 3.35rem;
        margin-bottom: 5.82rem;
        padding-left: 7.25rem;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
    }

    .timeline-year::after {
        left: -102px;
        right: auto;
    }

    .contact-card {
        padding: 5.38rem 4.28rem;
    }
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 2.28rem;
    }

    .nav-container {
        padding: 0 2.28rem;
        height: 68px;
    }

    html {
        scroll-padding-top: 68px;
    }

    #hero {
        padding: 122px 0 92px;
    }

    .hero-text h1 {
        font-size: 3.05rem;
    }

    .hero-subtitle {
        font-size: 1.28rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 92px 0;
    }

    .section-header {
        margin-bottom: 5.05rem;
    }

    .section-header h2 {
        font-size: 2.82rem;
    }

    .profile-card {
        padding: 2.28rem;
    }

    .timeline-item {
        padding-left: 5.48rem;
    }

    .timeline-content {
        padding: 2.68rem;
    }

    .project-card {
        padding: 3.35rem 2.68rem;
    }

    .contact-card {
        padding: 4.88rem 2.68rem;
    }

    .contact-card h2 {
        font-size: 3.62rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-link {
        justify-content: center;
        padding: 1.38rem 2.68rem;
        font-size: 1.05rem;
    }
}