/* ==========================================================================
   GEOMETRIC GRID & FOREST GREEN DESIGN SYSTEM (BEHANCE-INSPIRED)
   ========================================================================== */

:root {
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-width: 1200px;
    --header-height: 80px;

    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Dark Mode: Organic Forest Green & Gold-Yellow */
html[data-theme="dark"] {
    --bg-primary: #073322;
    --bg-secondary: #05291b;
    --text-primary: #f5f7f5;
    --text-secondary: #c0d1c9;
    --text-muted: #849e92;
    
    --border-color: #fdd835;
    --border-light: rgba(253, 216, 53, 0.2);
    
    --btn-bg: #fdd835;
    --btn-text: #073322;
    --btn-border: #fdd835;
    --btn-hover-bg: #073322;
    --btn-hover-text: #fdd835;
    
    --input-bg: transparent;
    --accent-red: #ff5252;
    --accent-green: #69f0ae;
}

/* Light Mode: Soft Off-White & Forest Green */
html[data-theme="light"] {
    --bg-primary: #F0EDE4;
    --bg-secondary: #E5E2D9;
    --text-primary: #073322;
    --text-secondary: #305445;
    --text-muted: #587569;
    
    --border-color: #073322;
    --border-light: rgba(7, 51, 34, 0.15);
    
    --btn-bg: #fdd835;
    --btn-text: #073322;
    --btn-border: #fdd835;
    --btn-hover-bg: #073322;
    --btn-hover-text: #fdd835;
    
    --input-bg: transparent;
    --accent-red: #d32f2f;
    --accent-green: #2e7d32;
    --accent-yellow: #fdd835;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed) var(--transition-ease), 
                color var(--transition-speed) var(--transition-ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* ==========================================================================
   GEOMETRIC UTILITIES & HEADERS
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-divider {
    padding: 4.5rem 0;
}

/* Editorial Section Header with Grid Junctions */
.editorial-section-header {
    position: relative;
    margin-bottom: 4rem;
    padding-bottom: 1.2rem;
}

.editorial-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
}

.header-grid-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    opacity: 0.4;
}

.header-intersection-square {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--btn-border);
    background: var(--btn-bg);
    color: var(--btn-text);
    transition: all var(--transition-speed) var(--transition-ease);
}

.btn:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    color: var(--bg-primary);
}

/* ==========================================================================
   HEADER / NAVIGATION BAR
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background-color var(--transition-speed) var(--transition-ease),
                border-color var(--transition-speed) var(--transition-ease);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact-nav {
    background: var(--accent-yellow);
    color: var(--text-primary);
    border: none;
    padding: 0.6rem 1.4rem;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-contact-nav::after {
    display: none;
}

.btn-contact-nav:hover {
    background: var(--text-primary);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

.theme-toggle:hover {
    border-color: var(--border-color);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

html[data-theme="dark"] .sun-icon { display: block; }
html[data-theme="dark"] .moon-icon { display: none; }
html[data-theme="light"] .sun-icon { display: none; }
html[data-theme="light"] .moon-icon { display: block; }

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
}

.mobile-menu-toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: var(--text-primary);
    transition: all var(--transition-speed) ease;
}

/* ==========================================================================
   HERO SECTION (NEW BEHANCE-INSPIRED PORTRAIT REDESIGN)
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-bg-shapes-left {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem 5rem 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Left: Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    z-index: 10;
}

.hero-greeting {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-name {
    font-family: var(--font-headings);
    font-size: clamp(3.2rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

/* Typewriter & Underline */
.hero-typewriter-wrap {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-height: 2.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.typewriter-underline {
    border-bottom: 5px solid var(--accent-yellow);
    padding-bottom: 2px;
    display: inline-block;
}

.hero-typewriter {
    color: var(--text-primary);
    font-weight: 800;
}

.cursor {
    color: var(--text-primary);
    font-weight: 300;
    animation: blinkCursor 0.9s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-primary-hero {
    background-color: var(--accent-yellow);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2.2rem;
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-speed) var(--transition-ease);
}

.btn-primary-hero:hover {
    background-color: var(--text-primary);
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

.btn-secondary-hero {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-speed) var(--transition-ease);
}

.btn-secondary-hero:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* Stats wrapper & yellow arc */
.hero-stats-wrapper {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem 0;
    width: fit-content;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-headings);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 800;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.stats-arc-container {
    position: absolute;
    bottom: -22px;
    left: 140px;
    width: 200px;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.stats-arc {
    width: 100%;
    height: 100%;
}

.stats-arc path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawArcLine 2.5s forwards cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 0.6s;
}

@keyframes drawArcLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Right: Profile Visual Info */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 460px;
    z-index: 10;
}

.profile-pic-container {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background-color: #ffffff;
    z-index: 5;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative background circles */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    --parallax-x: 0px;
    --parallax-y: 0px;
    transition: background-color var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

/* Color and position definitions for circles */
.shape-grey-left {
    width: 160px;
    height: 160px;
    background-color: #DCD9D0;
    top: 8%;
    left: -80px;
    opacity: 0.65;
    animation: floatHeroCircle1 9s infinite ease-in-out;
}

.shape-yellow-top-left {
    width: 70px;
    height: 70px;
    background-color: var(--accent-yellow);
    top: 18%;
    left: 24%;
    animation: floatHeroCircle2 6s infinite ease-in-out;
}

.shape-grey-stats {
    width: 220px;
    height: 220px;
    background-color: #DCD9D0;
    top: -45px;
    left: 80px;
    z-index: 0;
    opacity: 0.6;
    animation: floatHeroCircle3 11s infinite ease-in-out;
}

.shape-grey-top-right {
    width: 440px;
    height: 440px;
    background-color: #DCD9D0;
    top: -240px;
    right: -200px;
    opacity: 0.5;
    z-index: 1;
    animation: floatHeroCircle1 14s infinite ease-in-out;
}

.shape-yellow-image-top-left {
    width: 45px;
    height: 45px;
    background-color: var(--accent-yellow);
    top: 130px;
    left: 35px;
    z-index: 6;
    animation: floatHeroCircle2 6.5s infinite ease-in-out;
}

.shape-yellow-image-top-right {
    width: 80px;
    height: 80px;
    background-color: var(--accent-yellow);
    top: 95px;
    right: 25px;
    z-index: 6;
    animation: floatHeroCircle3 6.2s infinite ease-in-out;
}

.shape-yellow-image-far-right {
    width: 130px;
    height: 130px;
    background-color: var(--accent-yellow);
    top: 155px;
    right: -105px;
    z-index: 2;
    animation: floatHeroCircle1 10s infinite ease-in-out;
}

.shape-grey-image-bottom-left {
    width: 70px;
    height: 70px;
    background-color: #DCD9D0;
    bottom: 30px;
    left: 30px;
    opacity: 0.85;
    z-index: 2;
    animation: floatHeroCircle2 7.5s infinite ease-in-out;
}

.shape-grey-image-bottom-right {
    width: 90px;
    height: 90px;
    background-color: #DCD9D0;
    bottom: 15px;
    right: 15px;
    opacity: 0.85;
    z-index: 2;
    animation: floatHeroCircle3 8.2s infinite ease-in-out;
}

@keyframes floatHeroCircle1 {
    0% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
    25% { transform: translate(calc(var(--parallax-x) + 24px), calc(var(--parallax-y) - 18px)) scale(1.03); }
    50% { transform: translate(calc(var(--parallax-x) + 40px), calc(var(--parallax-y) + 12px)) scale(1.07); }
    75% { transform: translate(calc(var(--parallax-x) + 15px), calc(var(--parallax-y) + 30px)) scale(1.03); }
    100% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
}

@keyframes floatHeroCircle2 {
    0% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
    25% { transform: translate(calc(var(--parallax-x) - 22px), calc(var(--parallax-y) + 28px)) scale(0.95); }
    50% { transform: translate(calc(var(--parallax-x) - 36px), calc(var(--parallax-y) - 15px)) scale(0.91); }
    75% { transform: translate(calc(var(--parallax-x) - 12px), calc(var(--parallax-y) - 28px)) scale(0.96); }
    100% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
}

@keyframes floatHeroCircle3 {
    0% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
    25% { transform: translate(calc(var(--parallax-x) + 20px), calc(var(--parallax-y) + 26px)) scale(1.04); }
    50% { transform: translate(calc(var(--parallax-x) - 15px), calc(var(--parallax-y) + 38px)) scale(1.08); }
    75% { transform: translate(calc(var(--parallax-x) - 28px), calc(var(--parallax-y) - 18px)) scale(1.04); }
    100% { transform: translate(calc(var(--parallax-x) + 0px), calc(var(--parallax-y) + 0px)) scale(1); }
}

/* Micro-interactions: profile picture scale hover */
.profile-pic-container {
    transition: transform 0.4s var(--transition-ease), box-shadow 0.4s var(--transition-ease);
}
.hero-visual:hover .profile-pic-container {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 45px rgba(7, 51, 34, 0.12);
}

/* Micro-interactions: stats lift hover */
.stat-item {
    transition: transform 0.3s var(--transition-ease);
}
.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Dark theme overrides for background shapes */
html[data-theme="dark"] .shape-circle {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

html[data-theme="dark"] .shape-yellow-top-left,
html[data-theme="dark"] .shape-yellow-image-top-left,
html[data-theme="dark"] .shape-yellow-image-top-right,
html[data-theme="dark"] .shape-yellow-image-far-right {
    background-color: var(--accent-yellow) !important;
    opacity: 0.25 !important;
}

html[data-theme="dark"] .profile-pic-container {
    border-color: var(--bg-secondary);
    background-color: var(--bg-secondary);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    z-index: 10;
}

.scroll-text {
    font-family: var(--font-headings);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    animation: scrollBounce 2s infinite ease-in-out;
    color: var(--text-muted);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ==========================================================================
   01 / ABOUT SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-summary p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-summary strong {
    color: var(--text-primary);
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.about-focus {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-left: 1px solid var(--border-light);
    padding-left: 3rem;
}

.focus-block h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.focus-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   02 / SKILLS & EXPERTISE
   ========================================================================== */

/* Skills Section Editorial Grid (Screenshot Style) */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.skills-card {
    background-color: var(--bg-secondary); /* Dark green (#05291b) in dark mode, light grey (#E5E2D9) in light mode */
    border: 1px solid var(--border-light); /* Lighter border */
    padding: 2.2rem 2rem;
    transition: transform 0.3s var(--transition-ease), border-color 0.3s var(--transition-ease), box-shadow 0.3s var(--transition-ease);
}

.skills-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color); /* Highlight color (Gold/Yellow or Dark Green) */
    box-shadow: 0 12px 25px rgba(7, 51, 34, 0.08);
}

html[data-theme="dark"] .skills-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Card titles in Gold/Yellow in dark mode, Dark Forest Green in light mode */
.skills-card-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--border-color); /* Gold/Yellow in dark, Forest Green in light */
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary); /* Sage green in dark, Darker green in light */
    background-color: transparent;
    border: 1px solid var(--border-light);
    padding: 0.45rem 0.75rem;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    cursor: default;
}

.skill-tag:hover {
    background-color: var(--border-color);
    color: var(--bg-primary);
    border-color: var(--border-color);
}

/* Languages Row */
.skills-languages-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.2rem 1.5rem;
    border-top: 1px dashed var(--border-light);
    border-bottom: 1px dashed var(--border-light);
}

.lang-label {
    font-family: var(--font-headings);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.lang-val {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.lang-separator {
    color: var(--border-color);
    font-weight: bold;
}

/* ==========================================================================
   03 / EXPERIENCE SECTION
   ========================================================================== */

.editorial-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Timeline vertical line running down the 28% junction */
.timeline-v-line {
    position: absolute;
    top: 0;
    left: 28%;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    opacity: 0.35;
    z-index: 1;
}

.timeline-entry {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
}

.timeline-entry:first-child {
    border-top: none;
    padding-top: 0;
}

/* Junction Block at intersection of top border and vertical line */
.timeline-entry-intersection-square {
    position: absolute;
    top: -5px;
    left: calc(28% - 5px);
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    z-index: 2;
}

.timeline-entry:first-child .timeline-entry-intersection-square {
    display: none; /* No top border junction for first item */
}

.entry-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 2;
}

.entry-date {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 800;
}

.entry-loc {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.entry-body {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.entry-title {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.entry-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
    color: var(--text-secondary);
}

/* Custom square bullets for achievements */
.entry-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--border-color);
}

.entry-points li strong {
    color: var(--text-primary);
}

.entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.entry-tags span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 0.25rem 0.6rem;
}

/* ==========================================================================
   04 / EDUCATION & TRAINING
   ========================================================================== */

.editorial-edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.edu-left-column h3,
.edu-right-column h3 {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.edu-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.5rem;
}

.edu-date {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.edu-block h4 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.edu-major {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.edu-institution {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.edu-honors {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    border: 1px solid var(--border-color);
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.8rem;
}

.volunt-header {
    margin-top: 2rem;
}

.volunt-list li {
    margin-bottom: 1.8rem;
    font-size: 0.98rem;
    color: var(--text-secondary);
}

.volunt-list li strong {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-family: var(--font-headings);
    font-weight: 800;
    display: block;
}

.volunt-list li p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Certifications list */
.editorial-certs-list li {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.editorial-certs-list li:last-child {
    border-bottom: none;
}

.editorial-certs-list li strong {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    color: var(--text-primary);
}

.cert-details {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

/* ==========================================================================
   05 / LIVE CAMPAIGN SECTION
   ========================================================================== */

.campaign-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.campaign-badges {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.campaign-badge:hover {
    border-color: var(--border-color);
    background: var(--bg-primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.campaign-intro-left h3 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.campaign-intro-left p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.campaign-intro-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 1px solid var(--border-light);
}

.campaign-specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.spec-item strong {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.spec-item span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.campaign-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.metric-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: transform var(--transition-speed) var(--transition-ease), border-color var(--transition-speed) ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
}

.metric-title {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.metric-value {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: -0.03em;
}

.metric-value.highlight-green {
    color: var(--accent-green);
}

.metric-trend {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.metric-trend.positive {
    color: var(--accent-green);
}

.metric-trend.neutral {
    color: var(--text-muted);
}

.campaign-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.5rem;
    border-top: 1px dashed var(--border-light);
    padding-top: 1rem;
}

/* ==========================================================================
   06 / CONTACT SECTION
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: flex-start;
}

.connect-heading {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.highlight-outline {
    color: var(--accent-yellow);
}

.connect-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.connect-channels {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.connect-channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connect-icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.connect-channel-item:hover .connect-icon-box {
    transform: scale(1.05);
}

.connect-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.connect-link:hover {
    text-decoration: underline;
}

/* Form Styles matching screenshot */
.connect-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border-color: var(--border-color);
    background-color: var(--bg-primary);
}

.form-textarea {
    resize: none;
    height: 130px;
}

.btn-submit-screenshot {
    width: 100%;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 1.1rem;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform 0.2s var(--transition-ease), box-shadow 0.2s var(--transition-ease), background-color 0.2s ease, color 0.2s ease;
}

.btn-submit-screenshot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 51, 34, 0.1);
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-submit-screenshot:active {
    transform: translateY(0);
}

.btn-arrow-icon {
    transition: transform 0.2s ease;
}

.btn-submit-screenshot:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}

.form-feedback {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.form-feedback.success-msg {
    background: rgba(105, 240, 174, 0.05);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.form-feedback.error-msg {
    background: rgba(255, 82, 82, 0.05);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--transition-ease), transform 0.6s var(--transition-ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    /* Fold grid lines on tablet views */
    .grid-v-line {
        left: 45%;
    }
    
    .grid-intersection-square {
        left: calc(45% - 8px);
    }
    
    .timeline-v-line {
        left: 10px;
    }
    
    .timeline-entry-intersection-square {
        left: 5px;
    }
    
    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-focus {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-light);
        padding-top: 3rem;
    }

    .editorial-edu-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .campaign-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats-wrapper {
        margin: 2rem auto 0 auto;
    }
    
    .hero-visual {
        height: 380px;
        margin-top: 1rem;
    }
    
    .shape-yellow-image-far-right {
        right: -40px;
        width: 100px;
        height: 100px;
    }
    
    .shape-grey-top-right {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .skills-languages-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .skills-languages-row .lang-separator {
        display: none;
    }

    .form-row-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1100;
    }

    /* Mobile Nav Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right var(--transition-speed) var(--transition-ease);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Hamburger active states */
    .menu-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .menu-toggle-active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero-container {
        padding-top: 1rem;
        gap: 2.5rem;
    }
    
    .hero-name {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }
    
    .hero-typewriter-wrap {
        font-size: 1.1rem;
        min-height: 2rem;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .stats-arc-container {
        display: none;
    }
    
    .profile-pic-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .shape-grey-left, 
    .shape-grey-stats, 
    .shape-grey-top-right,
    .shape-yellow-image-far-right,
    .shape-grey-image-bottom-left, 
    .shape-grey-image-bottom-right {
        display: none !important;
    }

    .editorial-skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .campaign-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .campaign-intro-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .giant-word {
        font-size: 15vw;
    }

    .hyphen-block {
        width: 10vw;
        height: 2vw;
    }

    .editorial-title {
        font-size: 1.8rem;
    }

    .campaign-metrics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FLOATING PILL DESIGN (ABOUT & SKILLS)
   ========================================================================== */

.skills-floating-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.core-skills-title {
    font-family: var(--font-headings);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.04em;
    z-index: 2;
    position: relative;
}

.floating-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827; /* Dark text for light pills */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatPill ease-in-out infinite alternate;
}

.floating-pill:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    z-index: 10;
}

.floating-pill span.icon {
    font-size: 1.3rem;
}

/* Colors matching screenshot style */
.pill-green { background-color: #bbf7d0; }
.pill-blue { background-color: #bfdbfe; }
.pill-purple { background-color: #e9d5ff; }
.pill-yellow { background-color: #fef08a; }
.pill-peach { background-color: #fed7aa; }

/* Positioning & Animations */
.pos-1 { top: 15%; left: 15%; transform: rotate(-8deg); animation-duration: 4s; }
.pos-2 { top: 5%; left: 45%; transform: rotate(5deg); animation-duration: 5s; animation-delay: 0.5s; }
.pos-3 { top: 20%; right: 10%; transform: rotate(-4deg); animation-duration: 4.5s; animation-delay: 1s; }
.pos-4 { bottom: 25%; left: 8%; transform: rotate(12deg); animation-duration: 5.5s; animation-delay: 0.2s; }
.pos-5 { bottom: 35%; right: 12%; transform: rotate(-10deg); animation-duration: 4.2s; animation-delay: 0.8s; }
.pos-6 { bottom: 12%; left: 40%; transform: rotate(18deg); animation-duration: 4.8s; animation-delay: 1.5s; }
.pos-7 { top: 50%; left: 5%; transform: rotate(-15deg); animation-duration: 5.2s; animation-delay: 0.6s; }
.pos-8 { top: 60%; right: 5%; transform: rotate(20deg); animation-duration: 4.6s; animation-delay: 1.2s; }

/* About Section Specific Pills */
.about-pill-1 { position: absolute; top: -30px; right: 0; transform: rotate(15deg); animation-duration: 5s; }
.about-pill-2 { position: absolute; bottom: -20px; left: -10px; transform: rotate(-12deg); animation-duration: 6s; }

.about-summary-wrapper {
    position: relative; /* For absolutely positioned accent pills */
}

@keyframes floatPill {
    from { margin-top: 0; }
    to { margin-top: -20px; }
}

@media (max-width: 768px) {
    .skills-floating-wrapper {
        min-height: auto;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    .core-skills-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    .floating-pill {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0) !important;
        animation: none;
        width: 100%;
        justify-content: center;
    }
    .about-pill-1, .about-pill-2 {
        display: none; /* Hide decorative pills on mobile */
    }
}

.hero-inline-pic-wrapper { margin-top: 2rem; margin-bottom: 2rem; }
.hero-inline-pic { max-width: 240px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 4px solid var(--card-bg); display: block; object-fit: cover; aspect-ratio: 3/4; }

.hero-name { position: relative; display: inline-block; z-index: 1; }

.surname-highlight { position: relative; display: inline-block; z-index: 1; }
.surname-highlight::before { content: ''; position: absolute; top: -125px; left: 50%; transform: translateX(-50%); width: 75px; height: 75px; background-color: var(--btn-bg); opacity: 1; border-radius: 50%; z-index: -1; pointer-events: none; }

.custom-svg-arrow {
    position: absolute;
    top: -305px;
    left: 23%;
    width: 670px;
    height: 330px;
    z-index: 100;
    pointer-events: none;
    color: #FDD835;
    opacity: 0.85;
    overflow: visible;
}

@media (max-width: 900px) {
    .custom-svg-arrow {
        display: none;
    }
}



/* Skills & Experience Background Particles */
.skills-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.skills-bg-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    transition: background-color var(--transition-speed) ease;
}

/* Sage green circle (matching new pills color) */
.circle-sage {
    width: 280px;
    height: 280px;
    background-color: #DCE0D0;
    opacity: 0.18;
    top: 10%;
    left: -100px;
    animation: floatSkillsCircle 16s infinite ease-in-out alternate;
}

/* Small sage green circle */
.circle-sage-small {
    width: 140px;
    height: 140px;
    background-color: #DCE0D0;
    opacity: 0.12;
    bottom: 5%;
    left: 15%;
    animation: floatSkillsCircle 14s infinite ease-in-out alternate;
    animation-delay: -3s;
}

/* New: Small yellow circle (top-right) */
.circle-yellow-top {
    width: 60px;
    height: 60px;
    background-color: #fdd835;
    opacity: 0.2;
    top: 15%;
    right: 15%;
    animation: floatSkillsCircle 10s infinite ease-in-out alternate-reverse;
    animation-delay: -1s;
}

/* New: Medium sage green circle (middle-right) */
.circle-sage-middle {
    width: 180px;
    height: 180px;
    background-color: #DCE0D0;
    opacity: 0.15;
    top: 68%;
    right: -50px;
    animation: floatSkillsCircle 18s infinite ease-in-out alternate;
    animation-delay: -5s;
}

/* Dark mode adjustments to prevent circles from being too bright */
html[data-theme="dark"] .circle-sage {
    opacity: 0.04;
}

html[data-theme="dark"] .circle-sage-small {
    opacity: 0.03;
}

html[data-theme="dark"] .circle-yellow-top {
    opacity: 0.08;
}

html[data-theme="dark"] .circle-sage-middle {
    opacity: 0.04;
}

@keyframes floatSkillsCircle {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

/* Timeline Background Decorative Circles */
.timeline-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: background-color var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.circle-yellow-right {
    width: 200px;
    height: 200px;
    background-color: #fdd835; /* Yellow */
    opacity: 0.15;
    right: 2%;
    top: 25%;
    animation: floatHeroCircle1 18s infinite ease-in-out alternate;
}

/* Dark mode adjustments to prevent circles from being too bright */
html[data-theme="dark"] .circle-yellow-right {
    opacity: 0.05;
}


