/* Theme: Jungle - Day 10 (Letter J): Inspired by tropical rainforests, lush canopy layers, exotic wildlife, vibrant foliage, emerald green leaves, natural wood textures, botanical gardens, dense vegetation, organic patterns, wild nature */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;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: 95px;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18.5px;
    line-height: 1.95;
    color: #1a2e1a;
    background: linear-gradient(155deg, #fdfef9 0%, #f5f9ed 18%, #edf5e1 38%, #e8f3db 58%, #f0f7e6 78%, #fafef5 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 15%, rgba(52, 168, 83, 0.085) 0%, transparent 55%),
        radial-gradient(circle at 75% 85%, rgba(76, 175, 80, 0.072) 0%, transparent 48%),
        radial-gradient(circle at 10% 70%, rgba(46, 125, 50, 0.065) 0%, transparent 52%);
    pointer-events: none;
    z-index: 0;
    animation: jungleBreeze 58s ease-in-out infinite alternate;
}

@keyframes jungleBreeze {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.18) translateX(-35px);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 68px, rgba(52, 168, 83, 0.008) 68px, rgba(52, 168, 83, 0.008) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 68px, rgba(52, 168, 83, 0.008) 68px, rgba(52, 168, 83, 0.008) 70px);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 254, 249, 0.88);
    backdrop-filter: blur(28px);
    border-bottom: 2px solid rgba(52, 168, 83, 0.28);
    box-shadow: 0 8px 42px rgba(26, 46, 26, 0.12);
    transition: all 0.45s ease;
}

#topnav.scrolled {
    background: rgba(253, 254, 249, 0.96);
    box-shadow: 0 12px 55px rgba(26, 46, 26, 0.18);
    border-bottom-color: rgba(52, 168, 83, 0.45);
}

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

.logo h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.35rem;
    font-weight: 900;
    color: #1a2e1a;
    margin: 0;
    letter-spacing: 0.85px;
    position: relative;
    padding-left: 5.2rem;
}

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

@keyframes leafSway {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-50%) rotate(-8deg) scale(1.05);
        opacity: 0.92;
    }
    75% {
        transform: translateY(-50%) rotate(8deg) scale(0.98);
        opacity: 0.95;
    }
}

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

.nav-menu li a {
    display: block;
    padding: 1.35rem 2.85rem;
    color: #1a2e1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    transition: all 0.38s ease;
    position: relative;
    letter-spacing: 0.95px;
    border-radius: 6px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.12) 0%, rgba(76, 175, 80, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.38s ease;
    border-radius: 6px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #34a853 0%, #4caf50 100%);
    transition: width 0.38s ease;
    border-radius: 1.5px;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    opacity: 1;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2e7d32;
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
    border: none;
    color: #fdfef9;
    font-size: 2.25rem;
    width: 72px;
    height: 72px;
    cursor: pointer;
    transition: all 0.38s ease;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(52, 168, 83, 0.42);
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #34a853 100%);
    box-shadow: 0 18px 62px rgba(52, 168, 83, 0.58);
    transform: scale(1.08);
}

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

#hero::before {
    content: '🦜';
    position: absolute;
    top: 12%;
    right: 8%;
    font-size: 20.5rem;
    opacity: 0.038;
    animation: birdFloat 35s ease-in-out infinite;
}

#hero::after {
    content: '🌴';
    position: absolute;
    bottom: 15%;
    left: 6%;
    font-size: 24rem;
    opacity: 0.032;
    animation: palmSway 45s ease-in-out infinite;
}

@keyframes birdFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.038;
    }
    33% {
        transform: translate(95px, -72px) rotate(12deg);
        opacity: 0.072;
    }
    66% {
        transform: translate(-58px, 88px) rotate(-8deg);
        opacity: 0.055;
    }
}

@keyframes palmSway {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.032;
    }
    50% {
        transform: translate(62px, -58px) rotate(-5deg);
        opacity: 0.062;
    }
}

.hero-content {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 5.2rem;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 10.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: growIn 1.75s ease-out;
}

@keyframes growIn {
    0% {
        opacity: 0;
        transform: translateY(95px) scale(0.88);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 7.25rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 4.75rem;
    color: #1a2e1a;
    letter-spacing: -2.85px;
}

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

.hero-subtitle {
    font-size: 2.15rem;
    color: #3e5f3e;
    margin-bottom: 6.15rem;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.55px;
}

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

.btn {
    display: inline-block;
    padding: 2.15rem 5.65rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.62s ease;
    font-size: 1.15rem;
    letter-spacing: 1.25px;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 12px;
}

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

.btn:hover::after {
    width: 550px;
    height: 550px;
}

.btn-primary {
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
    color: #fdfef9;
    box-shadow: 0 25px 78px rgba(52, 168, 83, 0.48);
}

.btn-primary:hover {
    transform: translateY(-9px);
    box-shadow: 0 35px 105px rgba(52, 168, 83, 0.65);
    background: linear-gradient(135deg, #2e7d32 0%, #34a853 100%);
}

.btn-secondary {
    background: rgba(253, 254, 249, 0.98);
    color: #34a853;
    border: 2px solid #34a853;
    box-shadow: 0 20px 65px rgba(52, 168, 83, 0.35);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
    color: #fdfef9;
    border-color: transparent;
    transform: translateY(-9px);
    box-shadow: 0 30px 88px rgba(52, 168, 83, 0.58);
}

.hero-image {
    animation: growIn 1.75s ease-out 0.45s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(42px);
    padding: 4.75rem;
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.25),
        0 42px 135px rgba(26, 46, 26, 0.32);
    transition: all 0.72s ease;
    position: relative;
    border-radius: 18px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #34a853 0%, #4caf50 50%, #66bb6a 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.72s ease;
    border-radius: 18px;
}

.profile-card::after {
    content: '🌺';
    position: absolute;
    bottom: 75px;
    right: 75px;
    font-size: 10.5rem;
    opacity: 0.028;
}

.profile-card:hover {
    transform: translateY(-32px) scale(1.035);
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.52),
        0 62px 175px rgba(26, 46, 26, 0.42);
}

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

.profile-card img {
    width: 100%;
    margin-bottom: 4.25rem;
    box-shadow: 0 35px 105px rgba(26, 46, 26, 0.35);
    border-radius: 12px;
}

.profile-details h3 {
    font-family: 'Merriweather', serif;
    font-size: 4.25rem;
    margin-bottom: 1.65rem;
    color: #1a2e1a;
    font-weight: 900;
    letter-spacing: -0.95px;
}

.profile-details p {
    color: #3e5f3e;
    margin-bottom: 4.55rem;
    line-height: 1.75;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 2.15rem 5.35rem;
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    color: #1a2e1a;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.25px;
    transition: all 0.62s ease;
    border-radius: 12px;
    box-shadow: 0 25px 78px rgba(102, 187, 106, 0.48);
    font-family: 'Lato', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    transform: translateY(-9px);
    box-shadow: 0 35px 105px rgba(52, 168, 83, 0.65);
}

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

.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 5.2rem;
}

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

.section-header::before {
    content: '☘️';
    position: absolute;
    top: -105px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.25rem;
    opacity: 0.32;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 6.5px;
    background: linear-gradient(90deg, transparent 0%, #34a853 22%, #4caf50 50%, #66bb6a 78%, transparent 100%);
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 455px;
    top: 0;
    bottom: 0;
    width: 6.5px;
    background: linear-gradient(180deg, #34a853 0%, #4caf50 50%, #66bb6a 100%);
    opacity: 0.32;
}

.timeline-item {
    display: grid;
    grid-template-columns: 910px 1fr;
    gap: 10.5rem;
    margin-bottom: 10.15rem;
    position: relative;
}

.timeline-year {
    font-family: 'Merriweather', serif;
    font-size: 11.5rem;
    font-weight: 900;
    color: rgba(52, 168, 83, 0.105);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 10.5rem;
    letter-spacing: -5.45px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -192px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 36px;
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: 
        0 0 0 14px rgba(253, 254, 249, 1),
        0 0 0 20px rgba(52, 168, 83, 0.25);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(38px);
    padding: 5.85rem;
    transition: all 0.68s ease;
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.15),
        0 38px 122px rgba(26, 46, 26, 0.22);
    position: relative;
    border-radius: 14px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8.5px;
    background: linear-gradient(180deg, #34a853 0%, #4caf50 100%);
    opacity: 0;
    transition: opacity 0.68s ease;
    border-radius: 14px 0 0 14px;
}

.timeline-content:hover {
    transform: translateX(38px);
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.38),
        0 52px 158px rgba(26, 46, 26, 0.32);
    background: rgba(255, 255, 255, 1);
}

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

.timeline-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 4.25rem;
    margin-bottom: 1.55rem;
    color: #1a2e1a;
    font-weight: 900;
    letter-spacing: -0.85px;
}

.timeline-content h4 {
    color: #2e7d32;
    font-size: 2.15rem;
    margin-bottom: 3.65rem;
    font-weight: 700;
    letter-spacing: 0.55px;
}

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

.timeline-content a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.38s ease;
}

.timeline-content a:hover {
    border-bottom-color: #4caf50;
    color: #34a853;
}

#ai {
    background: rgba(237, 245, 225, 0.72);
    backdrop-filter: blur(32px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(38px);
    padding: 8.95rem;
    transition: all 0.68s ease;
    position: relative;
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.15),
        0 42px 132px rgba(26, 46, 26, 0.26);
    border-radius: 14px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10.5px;
    background: linear-gradient(90deg, #34a853 0%, #4caf50 50%, #66bb6a 100%);
    border-radius: 14px 14px 0 0;
}

.project-card::after {
    content: '🦋';
    position: absolute;
    top: 95px;
    right: 95px;
    font-size: 13.5rem;
    opacity: 0.025;
}

.project-card:hover {
    transform: translateY(-28px);
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.38),
        0 68px 185px rgba(26, 46, 26, 0.36);
    background: rgba(255, 255, 255, 1);
}

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

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

.project-client {
    color: #2e7d32;
    font-weight: 700;
    font-size: 2.15rem;
    margin-bottom: 4.75rem;
    letter-spacing: 0.55px;
}

.project-card > p {
    color: #3e5f3e;
    line-height: 1.95;
    margin-bottom: 5.85rem;
}

.project-impact {
    background: rgba(52, 168, 83, 0.075);
    padding: 4.55rem;
    color: #1a2e1a;
    line-height: 1.95;
    border-radius: 10px;
    border-left: 10.5px solid #34a853;
}

.project-impact strong {
    color: #1b5e20;
    font-weight: 700;
}

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

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

.year-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(38px);
    padding: 6.85rem;
    transition: all 0.68s ease;
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.15),
        0 38px 122px rgba(26, 46, 26, 0.22);
    border-radius: 14px;
    position: relative;
}

.year-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7.5px;
    background: linear-gradient(90deg, #34a853 0%, #4caf50 100%);
    opacity: 0.32;
    transition: opacity 0.68s ease;
    border-radius: 14px 14px 0 0;
}

.year-section:hover {
    transform: translateY(-28px);
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.38),
        0 52px 158px rgba(26, 46, 26, 0.32);
    background: rgba(255, 255, 255, 1);
}

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

.year-section h3 {
    font-family: 'Merriweather', serif;
    font-size: 6.85rem;
    margin-bottom: 5.85rem;
    color: #1a2e1a;
    text-align: center;
    padding-bottom: 4.55rem;
    border-bottom: 2px solid rgba(52, 168, 83, 0.25);
    font-weight: 900;
    letter-spacing: -1.85px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
}

.year-section.books::before {
    background: rgba(253, 254, 249, 0.38);
}

.year-section.books h3 {
    color: #fdfef9;
    border-bottom-color: rgba(253, 254, 249, 0.32);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 2.85rem 0;
    color: #3e5f3e;
    border-bottom: 2px solid rgba(26, 46, 26, 0.068);
    line-height: 1.95;
    position: relative;
    padding-left: 5.2rem;
}

.achievements li::before {
    content: '🍃';
    position: absolute;
    left: 0;
    top: 2.85rem;
    font-size: 2.25rem;
}

.year-section.books .achievements li {
    color: rgba(253, 254, 249, 0.96);
    border-bottom-color: rgba(253, 254, 249, 0.22);
}

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

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

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

#personal {
    background: rgba(237, 245, 225, 0.72);
    backdrop-filter: blur(32px);
}

#contact {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.045) 0%, rgba(76, 175, 80, 0.042) 100%);
    backdrop-filter: blur(32px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(52px);
    padding: 13.25rem 11.5rem;
    text-align: center;
    box-shadow: 
        0 0 0 2px rgba(52, 168, 83, 0.25),
        0 68px 195px rgba(26, 46, 26, 0.32);
    max-width: 1470px;
    margin: 0 auto;
    border-radius: 18px;
}

.contact-card h2 {
    font-family: 'Merriweather', serif;
    font-size: 10.25rem;
    margin-bottom: 5.85rem;
    color: #1a2e1a;
    font-weight: 900;
    letter-spacing: -2.85px;
}

.contact-card > p {
    font-size: 2.45rem;
    color: #3e5f3e;
    line-height: 1.95;
    margin-bottom: 10.35rem;
    max-width: 1390px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 3.65rem;
    padding: 3.65rem 8.95rem;
    background: linear-gradient(135deg, #34a853 0%, #4caf50 100%);
    color: #fdfef9;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.25px;
    transition: all 0.62s ease;
    border-radius: 12px;
    box-shadow: 0 42px 132px rgba(52, 168, 83, 0.48);
    font-family: 'Lato', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #34a853 100%);
    transform: translateY(-13px);
    box-shadow: 0 58px 175px rgba(52, 168, 83, 0.65);
}

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

#footer {
    background: #1a2e1a;
    padding: 10.25rem 0;
    text-align: center;
    color: rgba(253, 254, 249, 0.75);
    border-top: 2px solid rgba(52, 168, 83, 0.38);
}

#footer a {
    color: #81c784;
    text-decoration: none;
    transition: color 0.38s ease;
    font-weight: 700;
}

#footer a:hover {
    color: #66bb6a;
}

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

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

    .hero-image {
        max-width: 910px;
        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 4.55rem;
        height: 88px;
    }

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

    .nav-menu {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: rgba(253, 254, 249, 0.98);
        backdrop-filter: blur(28px);
        flex-direction: column;
        padding: 6.85rem;
        gap: 0;
        box-shadow: 0 48px 132px rgba(26, 46, 26, 0.26);
        transform: translateY(-150%);
        transition: transform 0.72s ease;
        border-bottom: 2px solid rgba(52, 168, 83, 0.45);
    }

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

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

    .nav-menu li a {
        width: 100%;
        text-align: center;
        padding: 2.15rem;
        border-bottom: 2px solid rgba(26, 46, 26, 0.068);
        border-radius: 0;
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 6.85rem;
        margin-bottom: 10.15rem;
        padding-left: 15.25rem;
    }

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

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

    .contact-card {
        padding: 11.15rem 8.95rem;
    }
}

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

    .nav-container {
        padding: 0 4.15rem;
        height: 82px;
    }

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

    #hero {
        padding: 178px 0 138px;
    }

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

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

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

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

    section {
        padding: 138px 0;
    }

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

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

    .profile-card {
        padding: 4.15rem;
    }

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

    .timeline-content {
        padding: 4.75rem;
    }

    .project-card {
        padding: 6.85rem 4.75rem;
    }

    .contact-card {
        padding: 9.35rem 4.75rem;
    }

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

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

    .contact-link {
        justify-content: center;
        padding: 2.45rem 4.75rem;
        font-size: 1.08rem;
    }
}