* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #003C46;
    color: #F2F2F0;
    overflow-x: hidden;
    font-weight: 400;
    overflow-y: auto; /* Enable normal scrolling */
    cursor: none !important; /* Hide default cursor */
}

html {
    cursor: none !important;
}

a, button, input, textarea, select, [role="button"] {
    cursor: none !important;
}

/* Loading Screen - Full screen overlay shown while page loads */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003C46; /* Match site background color */
    z-index: 99999; /* Above all other content */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out; /* Smooth fade out */
    visibility: visible;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(242, 242, 240, 0.2);
    border-top-color: #F2F2F0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 16px;
    font-weight: 400;
    color: #F2F2F0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: 1px;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(233, 236, 238, 0.15); /* #E9ECEE with low opacity for glass effect */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1);
}

.custom-cursor.hidden {
    opacity: 0 !important;
}

/* Background Animation Canvas */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Underneath major elements */
    pointer-events: none; /* Don't interfere with mouse events */
    background: transparent;
}

.container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 60px;
    padding-bottom: 200px; /* Increased bottom padding for more space */
    /* Ensure container has proper height based on content */
    min-height: 1000px; /* Increased minimum height from 800px to 1000px to accommodate taller canvas */
    overflow: visible;
    z-index: 1;
    /* Clear any floats or absolute positioning issues */
    clear: both;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
    margin-left: 120px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10000; /* Very high z-index to stay above all sections */
}

.plus-sign {
    width: 44px;
    height: 44px;
    display: block;
    position: fixed;
    left: 60px;
    top: 40px;
    z-index: 10000; /* Very high z-index to stay above all sections */
    transform: translateX(-50%);
    /* Ensure perfect centering */
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease-in-out;
}

.plus-sign:hover {
    transform: translateX(-50%) rotate(45deg);
}

/* Hamburger Menu */
.hamburger-menu {
    background-color: #FF6B5C;
    border: none;
    border-radius: 4px; /* Small border radius */
    cursor: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px; /* Square button padding */
    width: 48px; /* Square dimensions */
    height: 48px;
    z-index: 10001; /* Very high z-index to stay above all sections */
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Multi-layer shadowing for depth */
    box-shadow: 
        0 2px 4px rgba(255, 107, 92, 0.3),
        0 4px 8px rgba(255, 107, 92, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1);
}

.hamburger-menu:hover {
    background-color: #ff5a4a;
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    
    /* Enhanced shadow on hover */
    box-shadow: 
        0 4px 8px rgba(255, 107, 92, 0.4),
        0 8px 16px rgba(255, 107, 92, 0.3),
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 107, 92, 0.5); /* Glow effect */
    
    animation: crazyHover 0.6s ease-in-out infinite alternate;
}

/* Crazy hover animation */
@keyframes crazyHover {
    0% {
        transform: translateY(-4px) scale(1.1) rotate(5deg);
    }
    25% {
        transform: translateY(-6px) scale(1.12) rotate(-3deg);
    }
    50% {
        transform: translateY(-4px) scale(1.1) rotate(5deg);
    }
    75% {
        transform: translateY(-6px) scale(1.12) rotate(-3deg);
    }
    100% {
        transform: translateY(-4px) scale(1.1) rotate(5deg);
    }
}

.hamburger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #FFFFFF; /* White lines on colored background */
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-menu:hover span {
    transform: scaleX(1.2);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.hamburger-menu:hover span:nth-child(1) {
    animation: linePulse 0.6s ease-in-out infinite;
    animation-delay: 0s;
}

.hamburger-menu:hover span:nth-child(2) {
    animation: linePulse 0.6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.hamburger-menu:hover span:nth-child(3) {
    animation: linePulse 0.6s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes linePulse {
    0%, 100% {
        transform: scaleX(1.2);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.4);
        opacity: 0.8;
    }
}

.hamburger-menu.active {
    background-color: #FF6B5C; /* Keep same color when active */
}

.hamburger-menu.active span {
    background-color: #003C46; /* Dark color when menu is open (visible on white navbar) */
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Vertical Navbar */
.vertical-navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(50% + 50px); /* Picture width (50%) + 50px */
    height: 100vh;
    background-color: #F2F2F0;
    z-index: 9999; /* Very high z-index to stay above all sections */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
    transition: right 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    cursor: none !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002; /* Very high z-index to stay above all sections */
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.vertical-navbar.open .close-menu {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
    pointer-events: auto;
}

.close-menu span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #003C46;
    transition: all 0.3s ease;
}

.close-menu span:nth-child(1) {
    transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.close-menu:hover span {
    background-color: #003C46;
    opacity: 0.7;
}

.vertical-navbar.open {
    right: 0;
}

.vertical-nav-link {
    text-decoration: none;
    color: #003C46;
    font-size: 72px; /* 3x larger (was 24px) */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: inline-block;
    position: relative;
}

/* Minimalistic fade-in/type-out animation */
@keyframes fadeInTypeOut {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        clip-path: inset(0 100% 0 0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-10px);
        clip-path: inset(0 50% 0 0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0% 0 0);
    }
}

.vertical-navbar.open .vertical-nav-link {
    opacity: 1;
    animation: fadeInTypeOut 0.6s ease-out forwards;
}

.vertical-navbar.open .vertical-nav-link:nth-child(2) {
    animation-delay: 0.1s;
}

.vertical-navbar.open .vertical-nav-link:nth-child(3) {
    animation-delay: 0.2s;
}

.vertical-navbar.open .vertical-nav-link:nth-child(4) {
    animation-delay: 0.3s;
}

.vertical-nav-link:hover {
    font-weight: 600;
}


/* Vertical Line Segments - Converted to relative positioning for scrolling layout */
.vertical-line-segment {
    position: absolute;
    left: 60px;
    width: 1px; /* Increased from 1px to 2px */
    background-color: #F2F2F0;
    z-index: 1;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.line-top {
    top: 130px;
    height: 70px; /* Slightly increased from 60px */
}

.line-middle {
    top: 240px;
    height: 560px; /* Vertical line height - adjusted to match scroll down indicator position */
    min-height: 560px; /* Minimum height to ensure line visibility */
}

.line-bottom {
    display: none; /* Remove bottom line as it was viewport-dependent */
}

.vertical-label {
    position: absolute;
    left: 60px;
    transform-origin: center;
    white-space: nowrap;
    font-size: 14px;
    z-index: 2;
    transform: translateX(-50%) rotate(-90deg);
    background-color: #003C46;
    padding: 0 16px;
    color: #F2F2F0;
}

.ux-label {
    top: 240px;
    font-size: 16px;
    font-weight: 700;
    color: #FF6B5C;
}

.year-label {
    top: 800px; /* Position below middle line (240px + 560px) */
    position: absolute;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    margin-left: 120px;
    margin-top: 150px; /* Halfway between 120px and 180px */
}

.stats-section {
    display: flex;
    gap: 60px;
    margin-bottom: 100px; /* Increased bottom margin */
    margin-left: 20px; /* Move slightly to the right */
    margin-top: -40px; /* Move up */
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px; /* Increased from 27px for better visibility of stat numbers (4+, 5+) */
    font-weight: 400; /* Regular */
    line-height: 1.2;
    margin-bottom: 8px;
    color: #F2F2F0; /* Same color as stat labels */
    opacity: 0.7; /* Same opacity as stat labels */
}

.stat-label {
    font-size: 19px; /* Middle between 18px and 21px */
    color: #F2F2F0;
    opacity: 0.7;
}

.stat-label-main {
    font-weight: 500; /* Medium for "Leads" and "Client Projects" */
    color: #F2F2F0; /* Same color as parent */
}

.stat-label-sub {
    font-weight: 400; /* Regular for "generated" and "completed" */
    color: #F2F2F0; /* Same color as parent */
}

.greeting-section {
    margin-top: 120px; /* Increased spacing */
    margin-bottom: 100px; /* Added bottom margin for more space */
}

.greeting {
    font-size: 190px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
    color: #F2F2F0;
    position: relative;
    display: inline-block;
}

.greeting-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.intro {
    font-size: 25px;
    line-height: 1.5;
    font-weight: 400;
}

.intro-bold {
    font-weight: 600;
}

.intro-name {
    font-weight: 400;
}

.intro-medium {
    font-weight: 500;
}

/* Scroll down indicator - positioned near left edge, aligned with vertical line end */
.scroll-down {
    font-size: 14px; /* Smaller text size for subtle indicator */
    font-weight: 500; /* Medium font weight */
    color: #F2F2F0;
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: 440px; /* Positioned lower on the page */
    left: 0; /* Aligned to left edge of main-content */
    display: inline-block;
}

.scroll-arrow {
    display: inline-block;
    margin-left: 6px;
}

/* Canvas Container */
.canvas-container {
    position: absolute;
    right: 0;
    top: 40px; /* Match container padding */
    width: 50%;
    height: calc(100% - 80px); /* Account for container padding */
    max-height: 1200px; /* Increased height limit from 800px to 1000px */
    min-height: 1000px; /* Increased minimum height from 600px to 800px */
    z-index: 3;
    cursor: none !important;
    pointer-events: auto;
    border-radius: 0 0 300px 300px; /* 100px border radius on both bottom corners */
    /* Prevent canvas from extending beyond container */
    overflow: hidden;
    /* Ensure it doesn't extend beyond container bounds */
    bottom: auto;
}

.canvas-container canvas {
    pointer-events: auto;
}

/* Quote Section - Second Section */
.quote-section {
    position: relative;
    width: 100%;
    background-color: #003C46;
    display: flex; /* Use flex to center content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 300px 60px; /* Increased vertical padding for more space */
    margin: 0; /* No margins - sections flow naturally */
    z-index: 2;
    /* Force new stacking context and ensure it's below container */
    isolation: isolate;
    /* Ensure it's in normal document flow */
    clear: both;
}

.quote-content {
    max-width: 1400px;
    padding-left: 120px;
    width: 100%;
    margin: 0 auto; /* Center content horizontally */
    text-align: left; /* Left align the text */
}

.quote-text {
    font-size: 80px; /* Increased font size */
    line-height: 1.4;
    color: #F2F2F0;
    font-weight: 200; /* ExtraLight as base */
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-align: left; /* Left align the text */
}

.quote-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.quote-letter.quote-highlight {
    color: #FF6B5C;
    /* Font weight is now controlled by JavaScript for individual words */
}

/* Third View Section */
.third-view-section {
    position: relative;
    width: 100%;
    background-color: #003C46;
    display: flex; /* Use flex to center content vertically */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    overflow: hidden;
    margin: 0; /* No margins - sections flow naturally */
    padding: 250px 0; /* Increased vertical padding from 200px to 250px */
    min-height: 900px; /* Increased minimum height from 700px to 900px */
    z-index: 2;
    /* Force new stacking context */
    isolation: isolate;
    /* Ensure it's in normal document flow */
    clear: both;
}

.third-view-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.third-view-content {
    position: relative;
    z-index: 10;
    width: fit-content;
    max-width: 1200px;
    margin: 0 auto; /* Center horizontally, no top margin for vertical centering */
    pointer-events: none;
    padding: 0 60px; /* Add horizontal padding */
}

.third-view-text {
    font-size: 32px;
    line-height: 1.5; /* Increased from 1.4 for better readability */
    color: #F2F2F0;
    font-weight: 400;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.third-view-highlight {
    color: #FF6B5C;
    font-weight: 600;
}

.third-view-medium {
    font-weight: 500;
    color: #F2F2F0;
}

.third-view-semibold {
    font-weight: 600;
    color: #F2F2F0;
}

/* Fourth View Section - Experience Summary */
.fourth-view-section {
    position: relative;
    width: 100%;
    background-color: #003C46;
    display: block; /* Change from flex to block for normal flow */
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 0; /* No margins - sections flow naturally */
    padding-top: 80px; /* Decreased from 150px to 80px */
    padding-bottom: 100px; /* Decreased from 200px to 100px */
    z-index: 2;
    /* Force new stacking context */
    isolation: isolate;
    /* Ensure it's in normal document flow */
    clear: both;
}

.experience-header {
    background-color: #003C46;
    padding: 40px 60px 30px 60px; /* Decreased padding from 80px/60px to 40px/30px */
}

.experience-title {
    font-size: 28px; /* Decreased from 35px to 28px */
    font-weight: 600;
    color: #F2F2F0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    opacity: 1; /* Ensure full opacity */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.experience-content {
    background-color: #F2F2F0; /* Changed from #FFFFFF */
    border-radius: 0 100px 0 0; /* Increased top-right border radius from 24px to 48px */
    padding: 50px; /* Decreased padding from 80px to 50px */
    max-width: 1200px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
}

.experience-entry {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 35px; /* Decreased gap from 50px to 35px */
    margin-bottom: 25px; /* Decreased margin from 40px to 25px */
    align-items: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    opacity: 1; /* Ensure full opacity */
}

.experience-entry:last-child {
    margin-bottom: 0;
}

.experience-content-column {
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    opacity: 1; /* Ensure full opacity */
}

.experience-date-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    opacity: 1; /* Ensure full opacity */
}

.experience-role {
    font-size: 18px; /* Decreased from 22px to 18px */
    font-weight: 600;
    color: #000000 !important; /* Force pure black */
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0 0 4px 0;
    line-height: 1.2;
    opacity: 1 !important; /* Force full opacity */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.experience-date {
    font-size: 28px; /* Decreased from 35px to 28px */
    font-weight: 700;
    color: #000000 !important; /* Force pure black */
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: right;
    opacity: 1 !important; /* Force full opacity */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.experience-date-now {
    color: #FF6B5C !important; /* Orange color */
}

.experience-description {
    font-size: 14px;
    font-weight: 400;
    color: #000000 !important; /* Force pure black */
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    opacity: 1 !important; /* Force full opacity */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.experience-description span {
    color: #000000 !important; /* Force pure black for all spans */
    opacity: 1 !important; /* Force full opacity */
}

.experience-regular {
    font-weight: 400;
}

.experience-medium {
    font-weight: 500;
}

.experience-semibold {
    font-weight: 600;
}

.experience-divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 25px 0; /* Decreased margin from 40px to 25px */
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Footer Section */
.footer-section {
    position: relative;
    width: 100%;
    background-color: #E6E9EB; /* Light grey background */
    padding: 50px 60px 60px 60px; /* Reduced padding for smaller height */
    margin: 0;
    z-index: 2;
    isolation: isolate;
    clear: both;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px; /* Reduced margin */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
}

.footer-email {
    font-size: 26px;
    font-weight: 600; /* Semibold */
    color: #FF6B5C; /* Coral/light red color */
    text-decoration: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-social-link {
    font-size: 30px;
    font-weight: 600;
    color: #003C46; /* Dark teal/blue-grey */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-social-link:hover {
    opacity: 0.7;
}

.footer-title-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.footer-title-wrapper {
    display: flex;
    width: fit-content;
    animation: scrollTitle 30s linear infinite;
    white-space: nowrap;
}

.footer-title {
    font-size: 80px;
    font-weight: 700;
    color: #000000;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    display: inline-block;
    padding-right: 100px; /* Space between instances */
}

.footer-title .title-semibold {
    font-weight: 600; /* Semibold */
    color: #000000;
}

.footer-title .title-extrathin {
    font-weight: 100; /* ExtraThin */
    color: #000000;
}

.footer-title .title-bold {
    font-weight: 700; /* Bold */
    color: #000000;
}

.footer-title .title-regular {
    font-weight: 400; /* Regular */
    color: #000000;
}

@keyframes scrollTitle {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Waterfall Columns */
.waterfall-column {
    position: relative;
    height: 600px; /* Fixed height instead of viewport height */
    overflow: hidden;
}

.waterfall-left {
    grid-column: 1;
}

.waterfall-right {
    grid-column: 3;
}

.waterfall-image {
    position: absolute;
    width: auto;
    height: auto;
    opacity: 0.8;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .greeting {
        font-size: 135px;
    }
    
    .canvas-container {
        width: 45%;
    }
    
    .quote-text {
        font-size: 60px; /* Increased responsive font size */
    }
    
    .quote-content {
        margin: 0 auto; /* Center content */
    }
    
    .third-view-text {
        font-size: 48px;
    }
    
    .footer-title {
        font-size: 56px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-social {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 30px;
    }
    
    .header {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav {
        margin-left: 0;
        gap: 20px;
    }
    
    .vertical-line {
        left: 30px;
    }
    
    .vertical-label {
        left: 10px;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .greeting {
        font-size: 90px;
    }
    
    .canvas-container {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }
    
    .quote-section {
        padding: 20px 30px;
        margin-top: 0; /* Remove margin-top for normal flow */
    }
    
    .third-view-section {
        margin-top: 0; /* Remove margin-top for normal flow */
    }
    
    .fourth-view-section {
        margin-top: 0; /* Remove margin-top for normal flow */
    }
    
    .quote-content {
        margin: 0 auto; /* Center content */
    }
    
    .quote-text {
        font-size: 40px; /* Increased mobile font size */
        line-height: 1.3;
    }
    
    .quote-section {
        padding: 200px 30px; /* Adjusted padding for mobile */
    }
    
    .third-view-text {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .experience-header {
        padding: 40px 30px 30px 30px;
    }
    
    .experience-content {
        padding: 40px 30px;
        border-radius: 0 60px 0 0; /* Increased top-right border radius for mobile to match desktop proportion */
    }
    
    .experience-entry {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .experience-date-column {
        justify-content: flex-start;
    }
    
    .experience-date {
        text-align: left;
    }
    
    .experience-role {
        font-size: 18px;
    }
    
    .experience-date {
        font-size: 18px;
    }
    
    .experience-description {
        font-size: 14px;
    }
    
    .footer-section {
        padding: 40px 30px 50px 30px;
    }
    
    .footer-title {
        font-size: 42px;
        padding-right: 60px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-contact-label {
        font-size: 12px;
    }
    
    .footer-email {
        font-size: 16px;
    }
    
    .footer-social-link {
        font-size: 12px;
    }
}

