

/* Force html to also have no spacing */
html {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
}

/* Eliminate any possible spacing from root elements */
html, body {
    height: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

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

        :root {
            --nav-bg: rgba(139, 131, 120, 0.8);
            --text-primary: #ffffff;
            --text-shadow: none
            --font-serif: 'Playfair Display', 'Times New Roman', serif;
            --font-sans: 'Poppins', 'Arial', sans-serif;
            --font-mono: 'Fira Code', 'Courier New', monospace;
            --font-display: 'Poppins', sans-serif;
            --transition-smooth: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bg: 4s ease-in-out;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-serif);
            color: var(--text-primary);
            overflow-x: hidden;
            background: transparent;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 1;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 1;
            transition: opacity 1s ease-out;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            text-align: center;
            color: var(--text-primary);
        }

        .loader-circle {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid var(--text-primary);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            margin: 0 auto 20px;
        }

        .loader-text {
            font-family: var(--font-serif);
            font-size: 16px;
            letter-spacing: 2px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* Navigation - Glass Morphism */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 80px);
            max-width: 1000px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 0;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.12) 0%, 
                rgba(255, 255, 255, 0.06) 50%, 
                rgba(255, 255, 255, 0.08) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        .navbar:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .nav-container {
            padding: 0 30px;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            gap: 50px;
            margin: 0;
            padding: 18px 0;
            position: relative;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-shadow: none;
            position: relative;
            padding: 8px 16px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-link:hover {
            color: rgba(255, 255, 255, 0.95);
            transform: translateY(-2px);
            text-shadow: none;
        }

        .nav-link:hover::before {
            opacity: 1;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .nav-name {
            font-weight: 500;
            font-size: 17px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding: 10px 20px;
        }

        .nav-name::before {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-name:hover {
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin: 0;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                
                url('assets/C1D332D8-9F6A-4F68-8127-46BB87339C4A_1_105_c.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.1) 30%, 
                rgba(0, 0, 0, 0.3) 70%,
                rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 122, 255, 0.1);
            z-index: 2;
        }

        .hero-container {
            width: 100%;
            height: 100vh;
            position: relative;
            padding: 80px 40px 40px;
            display: grid;
            grid-template-areas: 
                ". . greeting"
                "description . ."
                ". . timestamp";
            grid-template-columns: 2fr 1fr 2fr;
            grid-template-rows: 1fr 2fr 1fr;
            align-items: center;
            z-index: 3;
        }

        .hero-greeting {
            grid-area: greeting;
            justify-self: end;
            align-self: start;
            margin-top: 80px;
            text-align: right;
        }

        .greeting-text {
            font-family: var(--font-serif);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 400;
            color: var(--text-primary);
            text-shadow: none;
            line-height: 1.2;
            animation: fadeInRight 1.5s ease-out 0.5s both;
            position: relative;
            z-index: 3;
        }

        .hero-description {
            grid-area: description;
            justify-self: start;
            align-self: center;
            max-width: 500px;
        }

        .description-title {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 600;
            color: var(--text-primary);
            text-shadow: none;
            line-height: 1.3;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInLeft 1.5s ease-out 0.8s both;
            position: relative;
            z-index: 3;
        }

        .description-subtitle {
            font-family: var(--font-serif);
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            font-weight: 400;
            color: var(--text-primary);
            text-shadow: none;
            line-height: 1.4;
            margin-bottom: 30px;
            animation: fadeInLeft 1.5s ease-out 1.1s both;
            position: relative;
            z-index: 3;
        }

        .interests-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .interest-item {
            font-family: var(--font-serif);
            font-size: clamp(1.1rem, 2.2vw, 1.6rem);
            font-weight: 400;
            color: var(--text-primary);
            text-shadow: none;
            line-height: 1.6;
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            animation: fadeInLeft 1.5s ease-out both;
            z-index: 3;
        }

        .interest-item:nth-child(1) { animation-delay: 1.4s; }
        .interest-item:nth-child(2) { animation-delay: 1.6s; }
        .interest-item:nth-child(3) { animation-delay: 1.8s; }
        .interest-item:nth-child(4) { animation-delay: 2.0s; }

        .interest-item::before {
            content: '+';
            position: absolute;
            left: 0;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.2em;
        }

        .photo-note {
            font-size: 0.9em;
            opacity: 0.8;
            font-style: italic;
            margin-left: 10px;
        }

        .hero-timestamp {
            grid-area: timestamp;
            justify-self: end;
            align-self: end;
            margin-bottom: 40px;
        }

        .timestamp-text {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            text-shadow: none;
            letter-spacing: 1px;
            animation: fadeInUp 1.5s ease-out 2.2s both;
            position: relative;
            z-index: 3;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .scroll-arrow:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
            color: rgba(255, 255, 255, 1);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Projects Section with Mountain Background */
        .projects-section {
            min-height: 100vh;
            position: relative;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('assets/CBF89250-371D-404A-B4E2-8460AD491DA6_1_105_c.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: visible;
            padding: 140px 40px 40px;
            margin: 0;
            z-index: 1;
        }

        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 122, 255, 0.1);
            z-index: -1;
        }

        /* Experience Section with Coastal Village Background */
        .experience-section {
            min-height: 100vh;
            position: relative;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('assets/D213B68B-B8D2-4269-AA4F-341FA1EFDCC3_1_105_c.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: visible;
            padding: 140px 40px 100px;
            margin: 0;
            z-index: 1;
        }

        .experience-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 122, 255, 0.1);
            z-index: -1;
        }

        /* Timeline Container */
        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 80px;
            padding-top: 40px;
            position: relative;
            z-index: 2;
        }

        /* Timeline Layout */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding-bottom: 80px;
        }

        /* Timeline vertical line */
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, 
                rgba(255, 255, 255, 0.8) 0%,
                rgba(255, 255, 255, 0.6) 50%,
                rgba(255, 255, 255, 0.8) 100%);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        /* Timeline Item */
        .timeline-item {
            position: relative;
            margin: 80px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Alternating left and right */
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 60%;
            text-align: left;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 60%;
            text-align: right;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            left: calc(50% - 15px);
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: calc(50% - 15px);
        }

        /* Timeline Content */
        .timeline-content {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            cursor: pointer;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.08) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        .timeline-content:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 8px 25px rgba(0, 0, 0, 0.25),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
        }

        /* Timeline Arrow */
        .timeline-content::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            left: -30px;
            border-right-color: rgba(255, 255, 255, 0.2);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            right: -30px;
            border-left-color: rgba(255, 255, 255, 0.2);
        }

        /* Timeline Dot */
        .timeline-dot {
            position: absolute;
            top: 50%;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            border: 4px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            transform: translateY(-50%);
            z-index: 5;
            box-shadow: 
                0 0 20px rgba(255, 255, 255, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .timeline-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .timeline-content:hover + .timeline-dot,
        .timeline-item:hover .timeline-dot {
            transform: translateY(-50%) scale(1.3);
            box-shadow: 
                0 0 30px rgba(255, 255, 255, 0.8),
                0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .timeline-content:hover + .timeline-dot::before,
        .timeline-item:hover .timeline-dot::before {
            background: linear-gradient(135deg, #FF2D92 0%, #FF6B35 100%);
            transform: translate(-50%, -50%) scale(1.2);
        }

        /* Timeline Content Elements */
        .timeline-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: inline-block;
            opacity: 0.9;
        }

        .timeline-date {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: none;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .timeline-company {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-primary);
            text-shadow: none;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .timeline-role {
            font-family: var(--font-sans);
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .timeline-location {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: none;
            margin-bottom: 15px;
        }

        .timeline-description {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
            margin-bottom: 20px;
        }

        .timeline-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .timeline-skill {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 6px 12px;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: none;
            transition: all 0.2s ease;
        }

        .timeline-skill:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-1px);
        }

        /* Timeline Mobile Responsive */
        @media (max-width: 1024px) {
            .experience-section {
                padding: 80px 30px 120px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 80px;
                margin-right: 0;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 15px;
                right: auto;
            }
            
            .timeline-content::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .experience-section {
                padding: 60px 20px 100px;
            }
            
            .timeline-header {
                margin-bottom: 60px;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                margin: 50px 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 5px;
                width: 25px;
                height: 25px;
            }
            
            .timeline-dot::before {
                width: 10px;
                height: 10px;
            }
            
            .timeline-content {
                padding: 25px 20px;
            }
            
            .timeline-company {
                font-size: 1.3rem;
            }
            
            .timeline-role {
                font-size: 0.9rem;
            }
            
            .timeline-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .experience-section {
                padding: 50px 15px 80px;
            }
            
            .timeline-header {
                margin-bottom: 40px;
            }
            
            .timeline::before {
                left: 15px;
                width: 3px;
            }
            
            .timeline-item {
                margin: 40px 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 45px;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 0;
                width: 20px;
                height: 20px;
            }
            
            .timeline-dot::before {
                width: 8px;
                height: 8px;
            }
            
            .timeline-content {
                padding: 20px 15px;
                border-radius: 15px;
            }
            
            .timeline-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }
            
            .timeline-company {
                font-size: 1.1rem;
                margin-bottom: 6px;
            }
            
            .timeline-role {
                font-size: 0.85rem;
                margin-bottom: 8px;
            }
            
            .timeline-date {
                font-size: 0.8rem;
            }
            
            .timeline-location {
                font-size: 0.75rem;
                margin-bottom: 12px;
            }
            
            .timeline-description {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }
            
            .timeline-skills {
                gap: 6px;
            }
            
            .timeline-skill {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
        }

        /* About Section Mobile Responsive */
        @media (max-width: 1024px) {
            .about-section {
                padding: 80px 30px;
            }
            
            .about-section .section-text {
                font-size: clamp(1.2rem, 2.8vw, 1.6rem);
                max-width: 650px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 20px;
            }
            
            .about-section .section-content {
                max-width: 100%;
            }
            
            .about-section .section-text {
                font-size: clamp(1.1rem, 2.5vw, 1.4rem);
                max-width: 100%;
                line-height: 1.7;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 50px 15px;
            }
            
            .about-section .section-text {
                font-size: clamp(1rem, 2.2vw, 1.2rem);
                line-height: 1.6;
                text-shadow: none;
            }
        }

        /* Social Section Mobile Responsive */
        @media (max-width: 1024px) {
            .social-section {
                padding: 50px 30px;
                min-height: 30vh;
            }
            
            .social-links {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .social-section {
                padding: 40px 20px;
                min-height: auto;
            }
            
            .social-title {
                margin-bottom: 40px;
            }
            
            .social-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .social-card {
                padding: 25px 15px;
            }
            
            .social-icon {
                font-size: 2.5rem;
                margin-bottom: 12px;
            }
            
            .social-label {
                font-size: 1rem;
            }
            
            .social-handle {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .social-section {
                padding: 30px 15px;
            }
            
            .social-links {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 300px;
            }
            
            .social-card {
                padding: 20px 15px;
            }
            
            .social-icon {
                font-size: 2.2rem;
                margin-bottom: 10px;
            }
            
            .social-label {
                font-size: 0.95rem;
            }
            
            .social-handle {
                font-size: 0.75rem;
            }
        }

        /* iOS-style background overlay */
        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
            z-index: 1;
        }

        /* iOS-style floating elements */
        .projects-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
            animation: iosFloat 15s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes iosFloat {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
            50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
        }

        .projects-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 40px;
            position: relative;
            z-index: 2;
        }

        .projects-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--text-primary);
            text-shadow: none;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e6f0ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .projects-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Glass Card Grid */
        .glass-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.08) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        .glass-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.2),
                0 8px 25px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
        }

        /* Different card heights for variety */
        .glass-card.small { min-height: 280px; }
        .glass-card.medium { min-height: 350px; }
        .glass-card.large { min-height: 420px; }
        .glass-card.extra-large { min-height: 500px; }

        .card-header {
            position: relative;
            height: 120px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px 20px 0 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-icon {
            font-size: 48px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
        }

        .card-type {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            text-shadow: none;
        }

        .github-corner {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .github-corner:hover {
            background: rgba(0, 0, 0, 0.6);
            transform: scale(1.15) translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .card-content {
            padding: 25px;
            color: var(--text-primary);
        }

        .card-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            text-shadow: none;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .card-subtitle {
            font-family: var(--font-sans);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: none;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .card-description {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: none;
            margin-bottom: 20px;
        }

        .card-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tech-tag {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 6px 12px;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: none;
            transition: all 0.2s ease;
        }

        .tech-tag:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-1px);
        }

        .card-date {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: none;
            margin-bottom: 15px;
            text-align: right;
        }

        .card-links {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .card-link {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: var(--text-primary);
            text-decoration: none;
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-shadow: none;
        }

        .card-link:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        .card-location {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-shadow: none;
            margin-bottom: 10px;
        }

        /* About Section with Mountain Background */
        .about-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 40px 100px;
            position: relative;
            margin: 0;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('assets/8C911BC3-FE84-4AC2-B462-EFB439B15FAA_1_105_c.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 122, 255, 0.05);
            z-index: 1;
        }

        /* Social Links Section */
        .social-section {
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px 60px;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
               
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            margin: 0 !important;
            margin-top: -1px !important;
            z-index: 2;
        }

        .social-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 122, 255, 0.1);
            z-index: 1;
        }

        .social-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .social-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--text-primary);
            text-shadow: none;
            margin-bottom: 50px;
            padding-top: 40px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e6f0ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .social-link {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .social-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(255, 255, 255, 0.08) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        .social-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.2),
                0 8px 25px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
        }

        .social-icon {
            font-size: 3rem;
            color: var(--text-primary);
            margin-bottom: 15px;
            display: block;
        }

        .social-label {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            display: block;
            margin-bottom: 5px;
        }

        .social-handle {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            display: block;
        }

        /* Ensure no gaps between sections */
        section {
            margin: 0 !important;
            padding: 0 !important;
            display: block;
            border: none !important;
            outline: none !important;
        }
        
        /* Force sections to touch each other */
        .projects-section {
            border-bottom: none !important;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .about-section {
            border-bottom: none !important;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .experience-section {
            border-bottom: none !important;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
        
        .social-section {
            border-top: none !important;
            margin-top: 0 !important;
            padding-top: 60px !important;
        }

        .section-content {
            max-width: 1200px;
            text-align: center;
            color: var(--text-primary);
            position: relative;
            z-index: 3;
        }

        .about-section .section-content {
            max-width: 800px;
            text-align: center;
            color: var(--text-primary);
            position: relative;
            z-index: 3;
        }


        .section-text {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-section .section-text {
            font-family: var(--font-serif);
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-primary);
            text-shadow: none;
            font-weight: 400;
            text-align: center;
            position: relative;
            z-index: 4;
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .navbar {
                width: calc(100% - 40px);
                top: 15px;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                grid-template-areas: 
                    "greeting"
                    "description"
                    "timestamp";
                grid-template-rows: auto auto 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .hero-greeting,
            .hero-description,
            .hero-timestamp {
                justify-self: center;
            }
            
            .hero-greeting {
                margin-top: 20px;
            }
            
            .nav-menu {
                gap: 35px;
            }
            
            .nav-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                width: calc(100% - 30px);
                top: 10px;
                border-radius: 15px;
            }
            
            .nav-menu {
                gap: 25px;
                flex-wrap: wrap;
                padding: 15px 0;
            }
            
            .nav-link {
                font-size: 14px;
                padding: 6px 12px;
            }
            
            .nav-name {
                font-size: 15px;
                padding: 8px 16px;
            }
            
            .hero-container {
                padding: 90px 20px 40px;
                gap: 30px;
            }
            
            .nav-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                width: calc(100% - 20px);
                top: 10px;
                border-radius: 12px;
            }
            
            .hero-container {
                padding: 95px 15px 30px;
                gap: 25px;
            }
            
            .nav-menu {
                gap: 20px;
                padding: 12px 0;
            }
            
            .nav-link {
                font-size: 13px;
                padding: 5px 10px;
            }
            
            .nav-name {
                font-size: 14px;
                padding: 6px 12px;
            }
            
            .nav-container {
                padding: 0 10px;
            }
        }

        /* Glass Grid Mobile Responsive */
        @media (max-width: 1200px) {
            .glass-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 20px;
            }
            
            .projects-section {
                padding: 80px 30px;
            }
        }

        @media (max-width: 768px) {
            .glass-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .projects-section {
                padding: 60px 20px;
            }
            
            .projects-header {
                margin-bottom: 40px;
            }
            
            .glass-card {
                min-height: auto !important;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.2rem;
            }
            
            .card-description {
                font-size: 0.9rem;
            }
            
            .card-header {
                height: 100px;
            }
            
            .card-icon {
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            .projects-section {
                padding: 50px 15px;
            }
            
            .glass-card {
                margin: 0;
            }
            
            .card-content {
                padding: 18px;
            }
            
            .card-title {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .card-subtitle {
                font-size: 0.8rem;
            }
            
            .card-description {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }
            
            .card-header {
                height: 90px;
            }
            
            .card-icon {
                font-size: 36px;
            }
            
            .card-type {
                font-size: 0.7rem;
                padding: 4px 8px;
            }
            
            .github-corner {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            
            .card-tech {
                gap: 6px;
                margin-bottom: 15px;
            }
            
            .tech-tag {
                font-size: 0.65rem;
                padding: 3px 8px;
            }
            
            .card-links {
                flex-direction: column;
                gap: 8px;
            }
            
            .card-link {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
        }
   