/* Theme: Bamboo - Day 2 (Letter B): Inspired by bamboo forests, zen gardens, natural growth, sustainable strength, Asian minimalism, organic textures, peaceful meditation, jade green serenity, harmonious balance, natural elegance */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17.2px;
    line-height: 1.82;
    color: #2d4a3e;
    background: linear-gradient(168deg, #f5f9f7 0%, #e8f3ed 22%, #dceee4 48%, #e5f2ea 72%, #f8fcfa 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(106, 168, 135, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(134, 188, 159, 0.07) 0%, transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(158, 198, 178, 0.06) 0%, transparent 48%);
    pointer-events: none;
    z-index: 0;
    animation: bambooSway 42s ease-in-out infinite alternate;
}

@keyframes bambooSway {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.04) translateY(-12px);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 0%, transparent calc(100% - 1px), rgba(106, 168, 135, 0.035) calc(100% - 1px)),
        linear-gradient(90deg, transparent 0%, transparent calc(100% - 1px), rgba(106, 168, 135, 0.035) calc(100% - 1px));
    background-size: 78px 78px;
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 249, 247, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1.8px solid rgba(106, 168, 135, 0.18);
    box-shadow: 0 4px 22px rgba(45, 74, 62, 0.07);
    transition: all 0.42s ease;
}

#topnav.scrolled {
    background: rgba(245, 249, 247, 0.94);
    box-shadow: 0 6px 32px rgba(45, 74, 62, 0.11);
    border-bottom-color: rgba(106, 168, 135, 0.28);
}

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

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.68rem;
    font-weight: 600;
    color: #2d4a3e;
    margin: 0;
    letter-spacing: 1.05px;
    position: relative;
    padding-left: 3.15rem;
}

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

@keyframes bambooGrow {
    0%, 100% {
        transform: translateY(-50%) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scaleY(1.08);
        opacity: 0.92;
    }
}

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

.nav-menu li a {
    display: block;
    padding: 0.78rem 1.82rem;
    color: #2d4a3e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    transition: all 0.35s ease;
    position: relative;
    letter-spacing: 0.85px;
    border-radius: 38px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6aa887 0%, #86bc9f 100%);
    transition: width 0.35s ease;
    border-radius: 1px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: calc(100% - 3.64rem);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #6aa887;
    background: rgba(106, 168, 135, 0.068);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    border: none;
    color: #f5f9f7;
    font-size: 1.72rem;
    width: 54px;
    height: 54px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 50%;
    box-shadow: 0 7px 24px rgba(106, 168, 135, 0.32);
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #5a9474 0%, #6aa887 100%);
    box-shadow: 0 10px 34px rgba(106, 168, 135, 0.42);
    transform: scale(1.05);
}

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

#hero::before {
    content: '🍃';
    position: absolute;
    top: 16%;
    right: 10%;
    font-size: 10.5rem;
    opacity: 0.055;
    animation: leafFloat1 22s ease-in-out infinite;
}

#hero::after {
    content: '🎍';
    position: absolute;
    bottom: 18%;
    left: 7%;
    font-size: 12.5rem;
    opacity: 0.048;
    animation: leafFloat2 26s ease-in-out infinite;
}

@keyframes leafFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.055;
    }
    50% {
        transform: translate(-32px, 42px) rotate(12deg);
        opacity: 0.082;
    }
}

@keyframes leafFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.048;
    }
    50% {
        transform: translate(28px, -38px) rotate(-8deg);
        opacity: 0.072;
    }
}

.hero-content {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: grid;
    grid-template-columns: 1.28fr 1fr;
    gap: 7.45rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: zenAppear 1.35s ease-out;
}

@keyframes zenAppear {
    0% {
        opacity: 0;
        transform: translateY(62px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.82rem;
    font-weight: 600;
    line-height: 1.16;
    margin-bottom: 2.95rem;
    color: #2d4a3e;
    letter-spacing: -0.42px;
}

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

.hero-subtitle {
    font-size: 1.58rem;
    color: #567465;
    margin-bottom: 4.25rem;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: 0.28px;
}

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

.btn {
    display: inline-block;
    padding: 1.35rem 3.58rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.42s ease;
    font-size: 1rem;
    letter-spacing: 0.92px;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1.8px solid transparent;
    border-radius: 42px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    color: #f5f9f7;
    box-shadow: 0 12px 42px rgba(106, 168, 135, 0.32);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(106, 168, 135, 0.42);
    background: linear-gradient(135deg, #5a9474 0%, #6aa887 100%);
}

.btn-secondary {
    background: rgba(245, 249, 247, 0.98);
    color: #6aa887;
    border: 1.8px solid #6aa887;
    box-shadow: 0 10px 35px rgba(106, 168, 135, 0.22);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    color: #f5f9f7;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(106, 168, 135, 0.38);
}

.hero-image {
    animation: zenAppear 1.35s ease-out 0.25s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    padding: 2.95rem;
    box-shadow: 
        0 0 0 1.8px rgba(106, 168, 135, 0.12),
        0 22px 68px rgba(45, 74, 62, 0.16);
    transition: all 0.52s ease;
    position: relative;
    border-radius: 28px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -1.8px;
    left: -1.8px;
    right: -1.8px;
    bottom: -1.8px;
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.52s ease;
}

.profile-card::after {
    content: '🌿';
    position: absolute;
    bottom: 45px;
    right: 45px;
    font-size: 6.85rem;
    opacity: 0.042;
}

.profile-card:hover {
    transform: translateY(-16px) scale(1.015);
    box-shadow: 
        0 0 0 1.8px rgba(106, 168, 135, 0.24),
        0 34px 95px rgba(45, 74, 62, 0.22);
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card img {
    width: 100%;
    margin-bottom: 2.55rem;
    box-shadow: 0 18px 55px rgba(45, 74, 62, 0.18);
    border-radius: 18px;
}

.profile-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.65rem;
    margin-bottom: 0.95rem;
    color: #2d4a3e;
    font-weight: 600;
    letter-spacing: -0.22px;
}

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

.social-links a {
    display: inline-block;
    padding: 1.35rem 3.38rem;
    background: linear-gradient(135deg, #86bc9f 0%, #9ec6b2 100%);
    color: #f5f9f7;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.92px;
    transition: all 0.42s ease;
    border-radius: 42px;
    box-shadow: 0 12px 42px rgba(134, 188, 159, 0.35);
    font-family: 'Nunito Sans', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    transform: translateY(-4px);
    box-shadow: 0 18px 55px rgba(106, 168, 135, 0.48);
}

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

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3.75rem;
}

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

.section-header::before {
    content: '◇';
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.35rem;
    opacity: 0.35;
    color: #6aa887;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.45rem;
    font-weight: 600;
    line-height: 1.14;
    color: #2d4a3e;
    letter-spacing: -0.62px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 2.8px;
    background: linear-gradient(90deg, transparent 0%, #6aa887 28%, #86bc9f 50%, #6aa887 72%, transparent 100%);
    border-radius: 1.4px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 305px;
    top: 0;
    bottom: 0;
    width: 2.2px;
    background: linear-gradient(180deg, #6aa887 0%, #9ec6b2 50%, #6aa887 100%);
    opacity: 0.35;
    border-radius: 1.1px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 605px 1fr;
    gap: 7.05rem;
    margin-bottom: 6.65rem;
    position: relative;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7.05rem;
    font-weight: 600;
    color: rgba(106, 168, 135, 0.108);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 6.65rem;
    letter-spacing: -2.15px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -122px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 7.5px rgba(245, 249, 247, 1),
        0 0 0 10px rgba(106, 168, 135, 0.18);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    padding: 3.68rem;
    transition: all 0.48s ease;
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.08),
        0 18px 62px rgba(45, 74, 62, 0.12);
    position: relative;
    border-radius: 24px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.2px;
    background: linear-gradient(180deg, #6aa887 0%, #9ec6b2 100%);
    border-radius: 24px 0 0 24px;
    opacity: 0;
    transition: opacity 0.48s ease;
}

.timeline-content:hover {
    transform: translateX(18px);
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.18),
        0 28px 82px rgba(45, 74, 62, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.65rem;
    margin-bottom: 0.88rem;
    color: #2d4a3e;
    font-weight: 600;
    letter-spacing: -0.22px;
}

.timeline-content h4 {
    color: #6aa887;
    font-size: 1.38rem;
    margin-bottom: 2.15rem;
    font-weight: 600;
    letter-spacing: 0.35px;
}

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

.timeline-content a {
    color: #86bc9f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.8px solid transparent;
    transition: all 0.35s ease;
}

.timeline-content a:hover {
    border-bottom-color: #86bc9f;
    color: #6aa887;
}

#ai {
    background: rgba(232, 243, 237, 0.48);
    backdrop-filter: blur(14px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    padding: 5.05rem;
    transition: all 0.48s ease;
    position: relative;
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.08),
        0 22px 68px rgba(45, 74, 62, 0.14);
    border-radius: 28px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4.5px;
    background: linear-gradient(90deg, #6aa887 0%, #9ec6b2 50%, #6aa887 100%);
    border-radius: 28px 28px 0 0;
}

.project-card::after {
    content: '🎋';
    position: absolute;
    top: 55px;
    right: 55px;
    font-size: 7.85rem;
    opacity: 0.038;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.18),
        0 34px 92px rgba(45, 74, 62, 0.2);
    background: rgba(255, 255, 255, 0.92);
}

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

.project-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.58rem;
    color: #2d4a3e;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.45px;
}

.project-client {
    color: #6aa887;
    font-weight: 600;
    font-size: 1.38rem;
    margin-bottom: 2.95rem;
    letter-spacing: 0.35px;
}

.project-card > p {
    color: #567465;
    line-height: 1.82;
    margin-bottom: 3.68rem;
}

.project-impact {
    background: rgba(106, 168, 135, 0.058);
    padding: 2.75rem;
    color: #2d4a3e;
    line-height: 1.82;
    border-radius: 18px;
    border-left: 4.5px solid #6aa887;
}

.project-impact strong {
    color: #5a9474;
    font-weight: 600;
}

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

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

.year-section {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    padding: 4.15rem;
    transition: all 0.48s ease;
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.08),
        0 18px 62px rgba(45, 74, 62, 0.12);
    border-radius: 24px;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.2px;
    background: linear-gradient(90deg, #6aa887 0%, #9ec6b2 100%);
    border-radius: 24px 24px 0 0;
    opacity: 0.32;
    transition: opacity 0.48s ease;
}

.year-section:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 1.4px rgba(106, 168, 135, 0.18),
        0 28px 82px rgba(45, 74, 62, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

.year-section:hover::before {
    opacity: 1;
}

.year-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.45rem;
    margin-bottom: 3.68rem;
    color: #2d4a3e;
    text-align: center;
    padding-bottom: 2.75rem;
    border-bottom: 1.8px solid rgba(106, 168, 135, 0.18);
    font-weight: 600;
    letter-spacing: -0.55px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
}

.year-section.books::before {
    background: rgba(245, 249, 247, 0.35);
}

.year-section.books h3 {
    color: #f5f9f7;
    border-bottom-color: rgba(245, 249, 247, 0.25);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 1.82rem 0;
    color: #567465;
    border-bottom: 1.8px solid rgba(45, 74, 62, 0.068);
    line-height: 1.82;
    position: relative;
    padding-left: 3.15rem;
}

.achievements li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 1.82rem;
    font-size: 1.32rem;
    color: #6aa887;
}

.year-section.books .achievements li {
    color: rgba(245, 249, 247, 0.94);
    border-bottom-color: rgba(245, 249, 247, 0.18);
}

.year-section.books .achievements li::before {
    color: #f5f9f7;
}

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

.achievements strong {
    color: #2d4a3e;
    font-weight: 600;
}

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

#personal {
    background: rgba(232, 243, 237, 0.48);
    backdrop-filter: blur(14px);
}

#contact {
    background: linear-gradient(135deg, rgba(106, 168, 135, 0.038) 0%, rgba(158, 198, 178, 0.042) 100%);
    backdrop-filter: blur(14px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px);
    padding: 7.95rem 7.05rem;
    text-align: center;
    box-shadow: 
        0 0 0 1.8px rgba(106, 168, 135, 0.12),
        0 34px 105px rgba(45, 74, 62, 0.16);
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 32px;
}

.contact-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.65rem;
    margin-bottom: 3.68rem;
    color: #2d4a3e;
    font-weight: 600;
    letter-spacing: -0.82px;
}

.contact-card > p {
    font-size: 1.68rem;
    color: #567465;
    line-height: 1.82;
    margin-bottom: 6.05rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 2.15rem;
    padding: 2.15rem 5.05rem;
    background: linear-gradient(135deg, #6aa887 0%, #86bc9f 100%);
    color: #f5f9f7;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.92px;
    transition: all 0.42s ease;
    border-radius: 45px;
    box-shadow: 0 22px 68px rgba(106, 168, 135, 0.35);
    font-family: 'Nunito Sans', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #5a9474 0%, #6aa887 100%);
    transform: translateY(-6px);
    box-shadow: 0 32px 88px rgba(106, 168, 135, 0.48);
}

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

#footer {
    background: #2d4a3e;
    padding: 6.05rem 0;
    text-align: center;
    color: rgba(245, 249, 247, 0.68);
    border-top: 1.8px solid rgba(106, 168, 135, 0.22);
}

#footer a {
    color: #9ec6b2;
    text-decoration: none;
    transition: color 0.35s ease;
    font-weight: 600;
}

#footer a:hover {
    color: #86bc9f;
}

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

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

    .hero-image {
        max-width: 605px;
        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.95rem;
        height: 68px;
    }

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

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(245, 249, 247, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 4.15rem;
        gap: 0;
        box-shadow: 0 28px 68px rgba(45, 74, 62, 0.15);
        transform: translateY(-150%);
        transition: transform 0.52s ease;
        border-bottom: 1.8px solid rgba(106, 168, 135, 0.25);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 1.42rem;
        border-bottom: 1.8px solid rgba(45, 74, 62, 0.068);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4.15rem;
        margin-bottom: 6.65rem;
        padding-left: 8.75rem;
    }

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

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

    .contact-card {
        padding: 6.35rem 5.05rem;
    }
}

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

    .nav-container {
        padding: 0 2.55rem;
        height: 62px;
    }

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

    #hero {
        padding: 128px 0 98px;
    }

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

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

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

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

    section {
        padding: 98px 0;
    }

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

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

    .profile-card {
        padding: 2.55rem;
    }

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

    .timeline-content {
        padding: 3.05rem;
    }

    .project-card {
        padding: 4.15rem 3.05rem;
    }

    .contact-card {
        padding: 5.65rem 3.05rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 1.48rem 3.05rem;
        font-size: 0.96rem;
    }
}