/* Theme: Tropical - Day 20 (Letter T): Inspired by lush rainforests, exotic flora, vibrant botanicals, palm fronds, tropical paradise, island breeze, vivid blooms, natural canopy, jungle verdure, sun-drenched foliage */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 17.8px;
    line-height: 1.78;
    color: #1b3a2f;
    background: linear-gradient(162deg, #fef9f5 0%, #f8fdf7 25%, #f0f9f4 50%, #f5fcf8 75%, #fcfefa 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 22% 18%, rgba(52, 168, 83, 0.085) 0%, transparent 62%),
        radial-gradient(circle at 78% 85%, rgba(16, 124, 65, 0.072) 0%, transparent 58%);
    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 125px, rgba(52, 168, 83, 0.012) 125px, rgba(52, 168, 83, 0.012) 127px),
        repeating-linear-gradient(-45deg, transparent, transparent 125px, rgba(52, 168, 83, 0.012) 125px, rgba(52, 168, 83, 0.012) 127px);
    pointer-events: none;
    z-index: 0;
}

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 245, 0.94);
    backdrop-filter: blur(24px);
    border-bottom: 2px solid rgba(52, 168, 83, 0.22);
    box-shadow: 0 6px 32px rgba(27, 58, 47, 0.11);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

#topnav.scrolled {
    background: rgba(254, 249, 245, 0.98);
    box-shadow: 0 10px 45px rgba(27, 58, 47, 0.18);
    border-bottom-color: rgba(52, 168, 83, 0.38);
}

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

.logo h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.08rem;
    font-weight: 700;
    color: #1b3a2f;
    margin: 0;
    letter-spacing: 0.65px;
    position: relative;
    padding-left: 3.95rem;
}

.logo h1::before {
    content: '🌴';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 2.48rem;
    animation: tropicalSway 8.5s ease-in-out infinite;
}

@keyframes tropicalSway {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg);
        opacity: 0.92;
    }
    25% {
        transform: translateY(-50%) rotate(12deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) rotate(-10deg);
        opacity: 0.95;
    }
    75% {
        transform: translateY(-50%) rotate(10deg);
        opacity: 1;
    }
}

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

.nav-menu li a {
    display: block;
    padding: 1.12rem 2.48rem;
    color: #1b3a2f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    letter-spacing: 0.45px;
    border-radius: 18px;
    border: 2px solid transparent;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 168, 83, 0.11);
    opacity: 0;
    transition: opacity 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 18px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 2.48rem;
    width: 0;
    height: 3px;
    background: #34a853;
    transition: width 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.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: calc(100% - 4.96rem);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #34a853;
    border-color: rgba(52, 168, 83, 0.28);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #34a853 0%, #107c41 100%);
    border: none;
    color: #fef9f5;
    font-size: 1.88rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 18px;
    box-shadow: 0 12px 38px rgba(52, 168, 83, 0.38);
}

.mobile-toggle:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 16px 48px rgba(52, 168, 83, 0.52);
}

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

#hero::before {
    content: '';
    position: absolute;
    top: -48%;
    right: -35%;
    width: 1050px;
    height: 1050px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.15) 0%, transparent 68%);
    animation: tropicalFloat 62s ease-in-out infinite;
    border-radius: 50%;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -45%;
    left: -32%;
    width: 980px;
    height: 980px;
    background: radial-gradient(circle, rgba(16, 124, 65, 0.12) 0%, transparent 68%);
    animation: tropicalFloat 70s ease-in-out infinite reverse;
    border-radius: 50%;
}

@keyframes tropicalFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.75;
    }
    35% {
        transform: translate(88px, -78px) scale(1.12);
        opacity: 0.98;
    }
    70% {
        transform: translate(-78px, 88px) scale(0.96);
        opacity: 0.85;
    }
}

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

.hero-text {
    animation: tropicalSlide 1.65s cubic-bezier(0.23, 1, 0.32, 1) 0s both;
}

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

.hero-text h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 6.85rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 3.65rem;
    color: #1b3a2f;
    letter-spacing: -1.95px;
}

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

.hero-subtitle {
    font-size: 1.82rem;
    color: #2d5a47;
    margin-bottom: 5.15rem;
    line-height: 1.68;
    font-weight: 500;
    letter-spacing: 0.38px;
}

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

.btn {
    display: inline-block;
    padding: 1.72rem 4.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 1.15rem;
    letter-spacing: 0.65px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 28px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #34a853 0%, #107c41 100%);
    color: #fef9f5;
    box-shadow: 0 18px 62px rgba(52, 168, 83, 0.42);
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 78px rgba(52, 168, 83, 0.58);
    background: linear-gradient(135deg, #2d8e46 0%, #0d6335 100%);
}

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

.btn-secondary:hover {
    background: #34a853;
    color: #fef9f5;
    border-color: #34a853;
    transform: translateY(-6px);
    box-shadow: 0 22px 65px rgba(52, 168, 83, 0.42);
}

.hero-image {
    animation: tropicalSlide 1.65s cubic-bezier(0.23, 1, 0.32, 1) 0.38s both;
}

.profile-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(32px);
    padding: 3.75rem;
    box-shadow: 
        0 0 0 4px rgba(52, 168, 83, 0.18),
        0 32px 98px rgba(27, 58, 47, 0.19);
    transition: all 0.58s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border-radius: 32px;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #34a853 0%, #107c41 35%, #34a853 65%, #107c41 100%);
    border-radius: 32px 32px 0 0;
}

.profile-card::after {
    content: '🌺';
    position: absolute;
    bottom: 52px;
    right: 52px;
    font-size: 8.5rem;
    opacity: 0.065;
}

.profile-card:hover {
    transform: translateY(-18px) scale(1.028);
    box-shadow: 
        0 0 0 4px rgba(52, 168, 83, 0.35),
        0 48px 128px rgba(27, 58, 47, 0.28);
}

.profile-card img {
    width: 100%;
    margin-bottom: 3.05rem;
    box-shadow: 0 28px 78px rgba(27, 58, 47, 0.22);
    border-radius: 24px;
}

.profile-details h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.45rem;
    margin-bottom: 1.22rem;
    color: #1b3a2f;
    font-weight: 700;
    letter-spacing: -0.55px;
}

.profile-details p {
    color: #2d5a47;
    margin-bottom: 3.15rem;
    line-height: 1.68;
    font-weight: 400;
}

.social-links a {
    display: inline-block;
    padding: 1.62rem 4.05rem;
    background: linear-gradient(135deg, #107c41 0%, #34a853 100%);
    color: #fef9f5;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.65px;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 24px;
    box-shadow: 0 18px 62px rgba(16, 124, 65, 0.42);
    font-family: 'Poppins', sans-serif;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0d6335 0%, #2d8e46 100%);
    transform: translateY(-5px);
    box-shadow: 0 26px 78px rgba(16, 124, 65, 0.58);
}

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

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

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

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

.section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 6.15rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1b3a2f;
    letter-spacing: -1.28px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 4px;
    background: linear-gradient(90deg, #34a853 0%, #107c41 50%, #34a853 100%);
    border-radius: 2px;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    left: 352px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #34a853 0%, #107c41 50%, #34a853 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 695px 1fr;
    gap: 8.15rem;
    margin-bottom: 7.65rem;
    position: relative;
}

.timeline-year {
    font-family: 'Quicksand', sans-serif;
    font-size: 8.65rem;
    font-weight: 700;
    color: rgba(52, 168, 83, 0.22);
    position: relative;
    z-index: 2;
    text-align: right;
    padding-right: 7.75rem;
    letter-spacing: -3.95px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -143px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #34a853;
    border-radius: 50%;
    box-shadow: 
        0 0 0 12px rgba(254, 249, 245, 1),
        0 0 0 16px rgba(52, 168, 83, 0.32);
    animation: tropicalPulse 6.5s ease-in-out infinite;
}

@keyframes tropicalPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 12px rgba(254, 249, 245, 1),
            0 0 0 16px rgba(52, 168, 83, 0.32);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 12px rgba(254, 249, 245, 1),
            0 0 0 34px rgba(52, 168, 83, 0.48);
        transform: translateY(-50%) scale(1.38);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(26px);
    padding: 4.25rem;
    transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 26px 82px rgba(27, 58, 47, 0.15);
    position: relative;
    border-radius: 28px;
    border-left: 4px solid rgba(52, 168, 83, 0.32);
}

.timeline-content:hover {
    transform: translateX(18px);
    box-shadow: 0 38px 105px rgba(27, 58, 47, 0.23);
    border-left-color: #34a853;
    background: rgba(255, 255, 255, 0.98);
}

.timeline-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.15rem;
    margin-bottom: 1.05rem;
    color: #1b3a2f;
    font-weight: 700;
    letter-spacing: -0.48px;
}

.timeline-content h4 {
    color: #34a853;
    font-size: 1.55rem;
    margin-bottom: 2.45rem;
    font-weight: 600;
}

.timeline-content p {
    color: #2d5a47;
    line-height: 1.78;
    margin: 0;
}

.timeline-content a {
    color: #107c41;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

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

#ai {
    background: rgba(248, 253, 247, 0.65);
    backdrop-filter: blur(20px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(26px);
    padding: 5.55rem;
    transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 28px 88px rgba(27, 58, 47, 0.16);
    border-radius: 32px;
    border-top: 6px solid #34a853;
}

.project-card::after {
    content: '🍃';
    position: absolute;
    top: 62px;
    right: 62px;
    font-size: 8.65rem;
    opacity: 0.055;
}

.project-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 42px 118px rgba(27, 58, 47, 0.23);
    background: rgba(255, 255, 255, 0.98);
}

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

.project-header h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 4.25rem;
    color: #1b3a2f;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.75px;
}

.project-client {
    color: #34a853;
    font-weight: 700;
    font-size: 1.52rem;
    margin-bottom: 3.45rem;
}

.project-card > p {
    color: #2d5a47;
    line-height: 1.78;
    margin-bottom: 4.05rem;
}

.project-impact {
    background: rgba(52, 168, 83, 0.09);
    padding: 3.05rem;
    color: #1b3a2f;
    line-height: 1.78;
    border-radius: 20px;
    border-left: 6px solid #107c41;
}

.project-impact strong {
    color: #107c41;
    font-weight: 700;
}

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

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

.year-section {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(26px);
    padding: 4.65rem;
    transition: all 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 26px 82px rgba(27, 58, 47, 0.15);
    border-radius: 28px;
    position: relative;
    border-top: 4px solid rgba(52, 168, 83, 0.32);
}

.year-section:hover {
    transform: translateY(-14px);
    box-shadow: 0 38px 105px rgba(27, 58, 47, 0.23);
    border-top-color: #34a853;
    background: rgba(255, 255, 255, 0.98);
}

.year-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 5.55rem;
    margin-bottom: 4.05rem;
    color: #1b3a2f;
    text-align: center;
    padding-bottom: 3.05rem;
    border-bottom: 4px solid rgba(52, 168, 83, 0.22);
    font-weight: 700;
    letter-spacing: -0.88px;
}

.year-section.books {
    grid-column: span 2;
    background: linear-gradient(135deg, #34a853 0%, #107c41 100%);
    border-top-color: #2d8e46;
}

.year-section.books h3 {
    color: #fef9f5;
    border-bottom-color: rgba(254, 249, 245, 0.26);
}

.achievements {
    list-style: none;
}

.achievements li {
    padding: 2.08rem 0;
    color: #2d5a47;
    border-bottom: 2px solid rgba(27, 58, 47, 0.085);
    line-height: 1.78;
    position: relative;
    padding-left: 3.75rem;
}

.achievements li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    top: 2.08rem;
    font-size: 1.52rem;
}

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

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

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

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

#personal {
    background: rgba(248, 253, 247, 0.65);
    backdrop-filter: blur(20px);
}

#contact {
    background: rgba(52, 168, 83, 0.068);
    backdrop-filter: blur(20px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(38px);
    padding: 8.95rem 8.05rem;
    text-align: center;
    box-shadow: 0 45px 132px rgba(27, 58, 47, 0.19);
    max-width: 1460px;
    margin: 0 auto;
    border-radius: 42px;
    border: 4px solid rgba(52, 168, 83, 0.26);
}

.contact-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 6.85rem;
    margin-bottom: 4.05rem;
    color: #1b3a2f;
    font-weight: 700;
    letter-spacing: -1.28px;
}

.contact-card > p {
    font-size: 1.78rem;
    color: #2d5a47;
    line-height: 1.78;
    margin-bottom: 6.75rem;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 2.42rem;
    padding: 2.42rem 5.55rem;
    background: linear-gradient(135deg, #34a853 0%, #107c41 100%);
    color: #fef9f5;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.65px;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 28px;
    box-shadow: 0 26px 82px rgba(52, 168, 83, 0.42);
    font-family: 'Poppins', sans-serif;
}

.contact-link:hover {
    background: linear-gradient(135deg, #2d8e46 0%, #0d6335 100%);
    transform: translateY(-6px);
    box-shadow: 0 35px 102px rgba(52, 168, 83, 0.58);
}

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

#footer {
    background: #1b3a2f;
    padding: 6.75rem 0;
    text-align: center;
    color: rgba(254, 249, 245, 0.75);
    border-top: 4px solid rgba(52, 168, 83, 0.42);
}

#footer a {
    color: #34a853;
    text-decoration: none;
    transition: color 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 700;
}

#footer a:hover {
    color: #107c41;
}

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

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

    .hero-image {
        max-width: 695px;
        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 3.35rem;
        height: 82px;
    }

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

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(254, 249, 245, 0.98);
        backdrop-filter: blur(26px);
        flex-direction: column;
        padding: 4.65rem;
        gap: 0;
        box-shadow: 0 35px 88px rgba(27, 58, 47, 0.19);
        transform: translateY(-150%);
        transition: transform 0.58s cubic-bezier(0.23, 1, 0.32, 1);
        border-bottom: 2px solid rgba(52, 168, 83, 0.28);
    }

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

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

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

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

    .mobile-toggle {
        display: block;
    }

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

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

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 4.65rem;
        margin-bottom: 7.65rem;
        padding-left: 9.75rem;
    }

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

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

    .contact-card {
        padding: 7.15rem 5.75rem;
    }
}

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

    .nav-container {
        padding: 0 2.95rem;
        height: 76px;
    }

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

    #hero {
        padding: 152px 0 118px;
    }

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

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

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

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

    section {
        padding: 118px 0;
    }

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

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

    .profile-card {
        padding: 2.95rem;
    }

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

    .timeline-content {
        padding: 3.45rem;
    }

    .project-card {
        padding: 4.65rem 3.45rem;
    }

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

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

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

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