    /* ===== GLOBAL RESET & BASE STYLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* ===== SMOOTH SCROLLING WITH WEIGHT ===== */
    html {
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
    }

    body {
        font-family: 'Nata Sans', sans-serif;
        line-height: 1.6;
        background-color: #000;
        color: #fff;
        overflow-x: hidden;
    }

    /* ===== NAVIGATION BAR CONTAINER ===== */
    .navbar {
        background-color: #000;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: transform 0.3s ease;
        transform: translateY(0);
    }

    /* ===== NAVBAR HIDE STATE ===== */
    .navbar.hidden {
        transform: translateY(-100%);
    }

    /* ===== NAVBAR SHOW STATE ===== */
    .navbar.visible {
        transform: translateY(0);
    }

    /* ===== NAVIGATION INNER CONTAINER & LAYOUT ===== */
    .nav-container {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: relative;
    }

    /* ===== LOGO STYLING ===== */
    .nav-logo img {
        height: 24px;
        width: auto;
        margin-top: 8px;
        margin-left: 8px;
    }

    /* ===== HOME BUTTON (CENTER STAR SYMBOL) ===== */
    .nav-home {
        position: absolute;
        left: 50%;
        top: 15px;
        transform: translateX(-50%);
        text-decoration: none;
        color: #fff;
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.5rem;
        font-weight: 100;
        letter-spacing: 2.5px;
        transition: all 0.3s ease;
        padding: 0.8rem 1.6rem;
        outline: none;
    }

    /* ===== HOME BUTTON HOVER EFFECT ===== */
    .nav-home:hover {
        color: #ff1493;
        transform: translateX(-50%) scale(1.15);
    }

    /* ===== NAVIGATION MENU (WORK, ABOUT, CONTACT) ===== */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        margin-left: auto;
        margin-top: 5px;
        transform: translateY(3px);
    }

    /* ===== NAVIGATION LINKS STYLING ===== */
    .nav-link {
        font-family: 'Nata Sans', sans-serif;
        color: #fff;
        text-decoration: none;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 1.1rem;
        transition: color 0.3s ease;
        padding: 1rem 0.6rem;
        outline: none;
        position: relative;
    }

    /* ===== NAVIGATION LINKS HOVER EFFECT ===== */
    .nav-link:hover {
        color: #ff1493;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 13px;
        left: 50%;
        background-color: #ff1493;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 70%;
    }

    /* ===== MOBILE HAMBURGER MENU ICON ===== */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    /* ===== HAMBURGER MENU BARS ===== */
    .bar {
        width: 30px;
        height: 4px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.3s;
    }

    /* ===== MAIN HOME SECTION CONTAINER ===== */
    .home-section {
        height: 100vh;
        padding-top: 110px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background-color: #000000;
        gap: 35px;
        scroll-snap-align: start;
    }

/* ===== VIDEO CONTAINER ===== */
.video-container {
    width: 100%;
    max-width: 1800px;
    height: 100vh; /* Much taller - full viewport height */
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: -10px;
}

/* ===== VIDEO ELEMENT STYLING ===== */
.hero-video {
    width: 100%; 
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' - this prevents cropping */
    object-position: center;
    transform: scale(1.02); 
}



    /* ===== "GRAPHIC DESIGNER" TEXT CONTAINER ===== */
    .bottom-text {
        text-align: center;
        margin-top: -20px;
    }

    /* ===== "GRAPHIC DESIGNER" TEXT STYLING WITH SHINE EFFECT ===== */
    .bottom-text h2 {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 300;
        font-style: italic;
        margin-top: -20px;
        color: #fff;
        letter-spacing: 0.3px;
        background: linear-gradient(110deg, #fff 45%, #ffffff80 50%, #fff 55%);
        background-size: 200% 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shine 4s linear infinite;
    }

    /* ===== SHINE ANIMATION KEYFRAMES ===== */
    @keyframes shine {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    /* ===== SECOND SECTION ===== */
    .hello-section {
        height: 84vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px;
        padding-top: 120px;
        padding-left: 15%;
        scroll-snap-align: start;
    }

    .hello-title {
        font-family: 'Nata Sans', sans-serif;
        font-size: 7rem;
        font-weight: 300;
        font-style: italic;
        color: #fff;
        margin-bottom: 0rem;
        margin-top: -20px;
        letter-spacing: -3px;
        align-self: flex-start;
        display: inline-block;
    }

    /* ===== BOUNCING LETTERS ANIMATION ===== */
    .bounce-letter {
        display: inline-block;
        animation: letterBounce 2s ease-in-out infinite;
    }

    @keyframes letterBounce {
        0%, 100% { 
            transform: translateY(0px); 
        }
        50% { 
            transform: translateY(-12px); 
        }
    }

    .hello-description {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: #ccc;
        text-align: left;
        max-width: 700px;
        line-height: 1.6;
        align-self: center;
        margin-left: -10%;
        margin-bottom: 1rem;
    }

    /* ===== LEARN MORE SECTION ===== */
    .learn-more {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        align-self: left;
        margin-top: 15px;
        margin-left: 17.2%;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        text-decoration: none;
    }

    .learn-more:visited {
        text-decoration: none;
    }

    .learn-more:hover {
        text-decoration: none;
    }

    .learn-more:active {
        text-decoration: none;
    }

    .arrow {
        width: 32px;
        height: 32px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .arrow::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #ffffff;
        border-top: 1.5px solid #ffffff;
        transform: rotate(45deg) scale(1.2);
        margin-left: -5px;
    }

    .learn-more-text {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.3rem;
        font-weight: 300;
        color: #ccc;
        letter-spacing: 0.5px;
    }

    .learn-more:hover .arrow {
        transform: scale(0.8) rotate(45deg);
    }

    .learn-more-text .about-me {
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .learn-more:hover .learn-more-text .about-me {
        color: #ff1493;
        transform: scale(1.15);
    }

    /* ===== NEW WORK SECTION WITH SCROLL ROWS ===== */
    .work-section {
        height: 100vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        scroll-snap-align: start;
        position: relative;
        margin-top: 5vh;
    }

    .scroll-rows-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 80px;
        transform: translateY(-40px); /* Move row content up */
    }

    .scroll-row {
        height: 280px;
        overflow: hidden;
        position: relative;
    }

    .scroll-track {
        display: flex;
        gap: 40px;
        height: 100%;
        width: fit-content;
        will-change: transform;
    }

    .project-item {
        width: 500px;
        height: 280px;
        flex-shrink: 0;
        border-radius: 12px;
        overflow: hidden;
        background-color: #111;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .project-item {
        width: 500px;
        height: 280px;
        flex-shrink: 0;
        border-radius: 12px;
        overflow: hidden;
        background-color: #111;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .project-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }



    /* ===== SEE ALL PROJECTS SECTION ===== */
    .see-all-projects {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        text-decoration: none;
        color: inherit;
    }

    .see-all-projects:visited {
        text-decoration: none;
        color: inherit;
    }

    .see-all-projects:hover {
        text-decoration: none;
    }

    .see-all-projects .arrow {
        width: 32px;
        height: 32px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .see-all-projects .arrow::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 1.5px solid #ffffff;
        border-top: 1.5px solid #ffffff;
        transform: rotate(45deg) scale(1.2);
        margin-left: -5px;
    }

    .see-all-text {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.3rem;
        font-weight: 300;
        color: #ccc;
        letter-spacing: 0.5px;
    }

    .see-all-projects:hover .arrow {
        transform: scale(0.8) rotate(45deg);
    }

    .see-all-text .all {
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .see-all-projects:hover .see-all-text .all {
        color: #ff1493;
        transform: scale(1.15);
    }

    /* Mobile responsive for work section */
    @media screen and (max-width: 768px) {
        .see-all-projects {
            bottom: 30px;
        }
        
        .see-all-text {
            font-size: 1.1rem;
        }
    }

    @media screen and (max-width: 480px) {
        .see-all-projects {
            bottom: 25px;
        }
    }



    /* ===== LOADING ANIMATION STYLES ===== */
    body {
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    /* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
    *:focus {
        outline: none;
    }

    .nav-link:focus,
    .nav-home:focus {
        outline: none;
    }

    .learn-more:focus {
        outline: none;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
        min-height: 60vh;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 20px 60px 20px;
        scroll-snap-align: start;
        margin-bottom: 50px;
        margin-top: 15vh;
        position: relative;
    }

    .contact-container {
        max-width: 800px;
        text-align: center;
        position: relative;
        z-index: 1;
        transform: translateY(-40px);
    }

    .contact-title {
        font-family: 'Nata Sans', sans-serif;
        font-size: 8rem;
        font-weight: 300;
        font-style: italic;
        color: #ffffff;
        letter-spacing: -3px;
        margin-left: -0px;
        margin-top: -20vh;  
        display: inline-block;
    }

    .contact-subtitle {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.2rem;
        font-weight: 300;
        color: #bbbbbb;
        text-align: center;
        margin: -20px 0 25px 0;
        letter-spacing: 0.5px;
    }

    /* ===== CONTACT LINKS (NOW ICON BUTTONS) ===== */
    .contact-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-top: -25px;
        width: fit-content;
        margin: 5px auto 0 auto;
        transform: scale(1.1)
    }

    .contact-link {
        color: #000000;
        text-decoration: none;
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        padding: 15px;
        border: none;
        border-radius: 50%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        background: #ffffff;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
        color: #000000;
        transition: all 0.3s ease;
    }

    .contact-link:hover {
        color: #ffffff;
        background: #ff1493;
        transform: scale(1.1);
    }

    .contact-link:hover .contact-icon {
        color: #ffffff;
        transform: scale(1.1);
    }

    /* Remove text labels - icons only */
    .contact-text {
        display: none;
    }

    /* Responsive adjustments for the subtitle */
    @media screen and (max-width: 768px) {
        .contact-subtitle {
            font-size: 1rem;
            margin: 8px 0 20px 0;
        }
    }

    @media screen and (max-width: 480px) {
        .contact-subtitle {
            font-size: 0.9rem;
            margin: 5px 0 15px 0;
        }
    }

    /* ===== FOOTER SECTION ===== */
    .footer {
        background-color: #000000;
        padding: 25px 20px 20px 20px;
        border-top: 1px solid #ddd;
    }

    .footer-container {
        max-width: 1800px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-left {
        display: flex;
        align-items: center;
        margin-bottom: -10px;
    }

    .footer-logo img {
        height: 20px;
        width: auto;
    }

    .footer-right {
        display: flex;
        align-items: center;
    }

    .footer-text {
        font-family: 'Nata Sans', sans-serif;
        font-size: 0.9rem;
        font-weight: 300;
        color: #dfdfdf;
        letter-spacing: 0.5px;
    }

    /* ===== FOOTER RESPONSIVE STYLES ===== */
    @media screen and (max-width: 768px) {
        .footer {
            padding: 20px 20px 15px 20px;
        }
        
        .footer-container {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .footer-text {
            font-size: 0.8rem;
        }
    }

    @media screen and (max-width: 480px) {
        .footer {
            padding: 18px 15px 12px 15px;
        }
        
        .footer-text {
            font-size: 0.75rem;
        }
    }

    /* ===== MOBILE RESPONSIVE STYLES (SMALL PHONES) ===== */
    @media screen and (max-width: 480px) {
        /* Small mobile navbar adjustments */
        .nav-container {
            padding: 0 12px;
            height: 50px;
            flex-direction: row;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 18px;
            margin-top: 4px;
            margin-left: 3px;
        }

        .nav-home {
            position: static;
            transform: none;
            top: auto;
            order: 2;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            padding: 0.5rem 1rem;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 50px;
            flex-direction: column;
            background-color: #000;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            border-top: 1px solid #333;
            padding: 1.5rem 0;
            gap: 1rem;
            justify-content: center;
            margin-left: 0;
            margin-top: 0;
            order: 3;
            transform: none;
        }

        .nav-link {
            font-size: 1rem;
            padding: 0.7rem 1rem;
        }

        .hamburger {
            display: flex;
            order: 3;
        }

        /* Small mobile home section */
        .home-section {
            padding-top: 70px;
            gap: 15px;
        }

        .video-container {
            max-width: 90%;
            height: 40vh;
            border-radius: 4px;
        }

        .bottom-text {
            margin-top: 5px;
        }

        .bottom-text h2 {
            font-size: 0.7rem;
            letter-spacing: 0.1px;
        }

        /* Small mobile hello section */
        .hello-section {
            padding-left: 8%;
            padding-top: 100px;
        }

        .hello-title {
            font-size: 2.5rem;
        }

        .hello-description {
            font-size: 0.9rem;
            max-width: 95%;
        }

        .learn-more {
            margin-left: 0%;
        }

        .arrow {
            width: 22px;
            height: 22px;
            border: 1px solid #ccc;
        }

        .arrow::after {
            width: 4px;
            height: 4px;
            border-right: 1px solid #ccc;
            border-top: 1px solid #ccc;
        }
    }

    /* ===== MOBILE RESPONSIVE STYLES (LARGE PHONES) ===== */
    @media screen and (min-width: 481px) and (max-width: 768px) {
        /* Mobile navbar adjustments */
        .nav-container {
            padding: 0 15px;
            height: 55px;
            flex-direction: row;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 21px;
            margin-top: 6px;
            margin-left: 5px;
        }

        .nav-home {
            position: static;
            transform: none;
            top: auto;
            order: 2;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: 2px;
            padding: 0.6rem 1.2rem;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 55px;
            flex-direction: column;
            background-color: #000;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            border-top: 1px solid #333;
            padding: 2rem 0;
            gap: 1.5rem;
            justify-content: center;
            margin-left: 0;
            margin-top: 0;
            order: 3;
            transform: none;
        }

        .nav-link {
            font-size: 1.1rem;
            padding: 0.8rem 1rem;
        }

        .hamburger {
            display: flex;
            order: 3;
        }

        /* Mobile home section adjustments */
        .home-section {
            padding-top: 90px;
            gap: 25px;
        }

        .video-container {
            max-width: 95%;
            height: 50vh;
            border-radius: 6px;
        }

        .bottom-text {
            margin-top: 8px;
        }

        .bottom-text h2 {
            font-size: 0.9rem;
            letter-spacing: 0.2px;
        }

        /* Mobile hello section adjustments */
        .hello-section {
            padding-left: 10%;
            padding-top: 110px;
        }

        .hello-title {
            font-size: 4rem;
        }

        .hello-description {
            font-size: 1.2rem;
            max-width: 90%;
        }

        .learn-more {
            margin-left: 0%;
        }

        .arrow {
            width: 28px;
            height: 28px;
            border: 1.5px solid #ccc;
        }

        .arrow::after {
            width: 6px;
            height: 6px;
            border-right: 1px solid #ccc;
            border-top: 1px solid #ccc;
        }
    }

    /* ===== TABLET RESPONSIVE STYLES ===== */
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .nav-container {
            max-width: 1200px;
            padding: 0 25px;
            height: 65px;
        }

        .nav-logo img {
            height: 22px;
            margin-top: 7px;
            margin-left: 6px;
        }

        .nav-home {
            font-size: 1.6rem;
            font-weight: 300;
            letter-spacing: 2.2px;
            padding: 0.7rem 1.4rem;
            top: 12px;
        }

        .nav-link {
            font-size: 1.05rem;
            padding: 1rem 0.7rem;
        }

        .nav-menu {
            gap: 2.5rem;
            margin-top: 3px;
            transform: translateY(2px);
        }

        .video-container {
            max-width: 1400px;
            height: 65vh;
            border-radius: 8px;
        }

        .home-section {
            gap: 30px;
            padding-top: 100px;
        }

        .bottom-text {
            margin-top: 10px;
        }

        .bottom-text h2 {
            font-size: 1rem;
            letter-spacing: 0.25px;
        }

        .hello-title {
            font-size: 6rem;
        }

        .hello-description {
            font-size: 1.4rem;
        }

        .arrow {
            width: 30px;
            height: 30px;
            border: 2px solid #ccc;
        }

        .arrow::after {
            width: 7px;
            height: 7px;
            border-right: 1.5px solid #ccc;
            border-top: 1.5px solid #ccc;
        }
    }

    /* ===== DESKTOP RESPONSIVE STYLES ===== */
    @media screen and (min-width: 1025px) and (max-width: 1440px) {
        .nav-container {
            max-width: 1600px;
            padding: 0 25px;
            height: 70px;
        }

        .nav-logo img {
            height: 24px;
            margin-top: 8px;
            margin-left: 8px;
        }

        .nav-home {
            font-size: 1.5rem;
            font-weight: 100;
            letter-spacing: 2.5px;
            padding: 0.8rem 1.6rem;
            top: 15px;
        }

        .nav-link {
            font-size: 1.1rem;
            padding: 1rem 0.6rem;
        }

        .nav-menu {
            gap: 2rem;
            margin-top: 5px;
            transform: translateY(3px);
        }

        .video-container {
            max-width: 1800px;
            height: 75vh;
        }

        .home-section {
            gap: 35px;
            padding-top: 110px;
        }

        .bottom-text {
            margin-top: 20px;
        }

        .bottom-text h2 {
            font-size: 1.1rem;
            letter-spacing: 0.3px;
        }

        .hello-title {
            font-size: 7rem;
        }

        .hello-description {
            font-size: 1.5rem;
        }

        .arrow {
            width: 32px;
            height: 32px;
            border: 2px solid #ffffff;
        }

        .arrow::after {
            width: 8px;
            height: 8px;
            border-right: 1.5px solid #ffffff;
            border-top: 1.5px solid #ffffff;
        }
    }

    /* ===== LARGE DESKTOP STYLES ===== */
    @media screen and (min-width: 1441px) and (max-width: 1920px) {
        .nav-container {
            max-width: 2000px;
            padding: 0 30px;
            height: 80px;
        }

        .nav-logo img {
            height: 28px;
            margin-top: 10px;
            margin-left: 10px;
        }

        .nav-home {
            font-size: 2.1rem;
            font-weight: 400;
            letter-spacing: 2.8px;
            padding: 1rem 2rem;
            top: -5px;
        }

        .nav-link {
            font-size: 1.3rem;
            padding: 1.2rem 0.8rem;
        }

        .nav-menu {
            gap: 3rem;
            margin-top: -15px;
            transform: translateY(5px);
        }

        .video-container {
            max-width: 1800px;
            height: 75vh;
            border-radius: 10px;
        }

        .home-section {
            gap: 40px;
            padding-top: 120px;
        }

        .bottom-text {
            margin-top: 12px;
        }

        .bottom-text h2 {
            font-size: 1.3rem;
            letter-spacing: 0.5px;
        }

        .hello-title {
            font-size: 8rem;
        }

        .hello-description {
            font-size: 1.7rem;
        }

        .arrow {
            width: 36px;
            height: 36px;
            border: 2px solid #ccc;
        }

        .arrow::after {
            width: 9px;
            height: 9px;
            border-right: 2px solid #ccc;
            border-top: 2px solid #ccc;
        }
    }

    /* ===== ULTRA-WIDE DESKTOP STYLES (4

    /* ===== ULTRA-WIDE DESKTOP STYLES (4K & ULTRAWIDE) ===== */
    @media screen and (min-width: 1921px) {
        .nav-container {
            max-width: 2200px;
            padding: 0 40px;
            height: 90px;
        }

        .nav-logo img {
            height: 32px;
            margin-top: 12px;
            margin-left: 12px;
        }

        .nav-home {
            font-size: 2.3rem;
            font-weight: 400;
            letter-spacing: 3px;
            padding: 1.1rem 2.2rem;
            top: -7px;
        }

        .nav-link {
            font-size: 1.4rem;
        }

        .nav-menu {
            gap: 4rem;
            margin-top: -17px;
            transform: translateY(7px);
        }

        .video-container {
            max-width: 2000px;
            height: 80vh;
            border-radius: 12px;
        }

        .home-section {
            gap: 45px;
            padding-top: 130px;
        }

        .bottom-text {
            margin-top: 14px;
        }

        .bottom-text h2 {
            font-size: 1.5rem;
            letter-spacing: 0.6px;
        }

        .hello-title {
            font-size: 9rem;
        }

        .hello-description {
            font-size: 1.8rem;
        }

        .arrow {
            width: 40px;
            height: 40px;
            border: 2.5px solid #ccc;
        }

        .arrow::after {
            width: 10px;
            height: 10px;
            border-right: 2.5px solid #ccc;
            border-top: 2.5px solid #ccc;
        }
    }

    /* ===== VERY SHORT SCREENS (HEIGHT OPTIMIZATION) ===== */
    @media screen and (max-height: 600px) {
        .video-container {
            height: 40vh;
        }
        
        .home-section {
            gap: 15px;
        }

        .bottom-text {
            margin-top: 6px;
        }
    }

    /* ===== HAMBURGER MENU ANIMATIONS (ALL MOBILE SIZES) ===== */
    @media screen and (max-width: 768px) {
        .nav-menu.active {
            left: 0;
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-home:hover {
            color: #ff1493;
            transform: scale(1.05);
        }
    }

    /* ===== PERFORMANCE OPTIMIZATIONS ===== */
    .project-item,
    .project-item img,
    .scroll-track {
        will-change: transform;
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }

    /* ===== REDUCED MOTION SUPPORT ===== */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        .bottom-text h2 {
            animation: none;
            background: #fff;
            -webkit-text-fill-color: #fff;
        }
        
        .bounce-letter {
            animation: none;
        }
    }

    /* ===== ABOUT PAGE STYLES ===== */
    .about-section {
        min-height: 100vh;
        background-color: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 20px 60px 20px;
    }

    .about-container {
        max-width: 1400px;
        width: 100%;
    }

    .about-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 100px;
        align-items: start;
    }

    .about-text {
        color: #ffffff;
        max-width: 800px;
    }

    .about-title {
        font-family: 'Nata Sans', sans-serif;
        font-size: 4rem;
        font-weight: 300;
        font-style: italic;
        color: #ffffff;
        margin-bottom: 40px;
        margin-top: 0;
        letter-spacing: -2px;
    }

    .about-description {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1.8;
        color: #ffffff;
    }

    .about-description p {
        margin-bottom: 24px;
    }

    .about-description p:last-child {
        margin-bottom: 0;
    }

    /* ===== ABOUT IMAGE WITH VIDEO HOVER ===== */
    .about-image {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        transform: scale(1.15);
        margin-top: 8vh;
        overflow: hidden;
        right: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .about-static-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: opacity 0.3s ease;
    }

    .about-hover-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Hover effects */
    .about-image:hover .about-static-image {
        opacity: 0;
    }

    .about-image:hover .about-hover-video {
        opacity: 1;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .about-section {
            padding: 60px 15px 40px 15px;
        }
        
        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
            align-items: center;
        }
        
        .about-text {
            max-width: 100%;
        }
        
        .about-title {
            font-size: 3rem;
            margin-bottom: 30px;
        }
        
        .about-description {
            font-size: 1.1rem;
        }
        
        .about-image {
            align-items: center;
        }
        
        .about-image img {
            margin-top: 5vh;
            margin-right: 0;
            max-width: 350px;
            height: 350px;
            transform: scale(1.1);
        }
    }

    @media screen and (max-width: 480px) {
        .about-section {
            padding: 50px 15px 40px 15px;
        }
        
        .about-title {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        
        .about-description {
            font-size: 1rem;
        }
        
        .about-image img {
            margin-top: 3vh;
            margin-right: 0;
            max-width: 280px;
            height: 280px;
            transform: scale(1.05);
        }
    }

    /* ===== NEW BOTTOM INFO SECTION ===== */
.bottom-info-section {
    background-color: #000000;
    padding: 80px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-info-container {
    max-width: 1400px;
    width: 100%;
}

.bottom-info-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

/* ===== BOTTOM VERTICAL IMAGE ===== */
.bottom-vertical-image {
    margin-top: -170px;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: scale(1);
}

.bottom-vertical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.bottom-vertical-image:hover img {
    transform: scale(1.05);
}

/* ===== BOTTOM INFO BOXES - THICK VERTICAL BOXES ===== */
.bottom-info-boxes {
    margin-top: -150px;
    display: flex;
    flex-direction: row; /* Boxes side by side */
    gap: 25px; /* Slightly larger gap for thicker boxes */
    padding-bottom: 50px;
    height: 600px; /* Match the image height */
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px; /* More horizontal padding for thicker boxes */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1; /* Each box takes equal width (thicker) */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text horizontally */
    height: 100%; /* Full height (600px - tall) */
    max-width: 300px; /* Increased from 200px to 300px for thicker boxes */
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 20, 147, 0.3);
    transform: translateY(-5px);
}

.info-box h3 {
    font-family: 'Nata Sans', sans-serif;
    font-size: 1.4rem; /* Slightly larger for thicker boxes */
    font-weight: 400;
    color: #ff1493;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 0.5px;
}

.info-box p {
    font-family: 'Nata Sans', sans-serif;
    font-size: 1.1rem; /* Slightly larger for thicker boxes */
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .bottom-info-section {
        padding: 60px 15px 40px 15px;
    }
    
    .bottom-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bottom-vertical-image {
        height: 400px;
        max-width: 300px;
        margin: 0 auto;
        margin-top: 0;
    }
    
    .bottom-info-boxes {
        margin-top: 0;
        flex-direction: column; /* Stack vertically on mobile */
        height: auto;
        gap: 25px;
    }
    
    .info-box {
        padding: 25px 20px;
        height: auto;
        max-width: none; /* Remove width limit on mobile */
    }
    
    .info-box h3 {
        font-size: 1.3rem;
    }
    
    .info-box p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .bottom-info-section {
        padding: 50px 15px 40px 15px;
    }
    
    .bottom-vertical-image {
        height: 350px;
        max-width: 250px;
    }
    
    .info-box {
        padding: 20px 15px;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
    }
    
    .info-box p {
        font-size: 0.95rem;
    }
}


/* ===== PROJECTS HEADING ADJUSTMENT ===== */
.projects-heading {
    text-align: center;
    margin-bottom: 50px; /* Reduced from 100px to 50px */
    margin-top: 0;
}

.projects-title {
    font-family: 'Nata Sans', sans-serif;
    font-size: 7rem;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin: 0;
    letter-spacing: -3px;
    display: inline-block;
}

/* ===== ENSURE PROJECTS SECTION DOESN'T OVERLAP FOOTER ===== */
.projects-carousel-section {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow-y: visible;
    overflow-x: visible;
    overscroll-behavior: none; /* Changed from contain */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: scroll-position;
    background-color: #000;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15vh 0 0 0; /* Remove bottom padding */
    margin-bottom: 0; /* Ensure no margin */
}

    .projects-carousel-section::-webkit-scrollbar {
        display: none;
    }

    .projects-heading {
        text-align: center;
        margin-bottom: 100px;
    }

    .carousel-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 50px 15vh 50px; /* Increased bottom padding from 0 to 15vh */
    transform: scale(1);
}

    .carousel-track {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        width: 100%;
    }

    .project-card {
        transform-origin: top center;
        will-change: transform, filter;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        position: relative;
        
        height: 360px;
        width: 100%;
        overflow: hidden;
        background-color: #111;
        cursor: pointer;
        border-radius: 12px;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-5px);
    }

    .project-image {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .project-card:hover .project-image img {
        transform: scale(1.05);
    }

    .project-info {
        position: absolute;
        bottom: 25px;
        right: 25px;
        text-align: left;
        color: #fff;
        background: rgba(0, 0, 0, 0.2);
        padding: 5px 18px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        max-width: 360px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: scale(0.95);
    }

    .project-info h3 {
        font-family: 'Nata Sans', sans-serif;
        font-size: 1.35rem;
        font-weight: 300;
        margin-bottom: 0px;
        color: #fff;
        margin-top: 0;
    }

    .project-info p {
        font-family: 'Nata Sans', sans-serif;
        font-size: 0.81rem;
        font-weight: 300;
        color: #ccc;
        line-height: 1.4;
        margin-bottom: 9px;
    }

    /* Mobile Responsive */
    @media screen and (max-width: 1024px) {
        .carousel-track {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .carousel-container {
            padding: 0 40px;
        }
    }

    @media screen and (max-width: 768px) {
        .carousel-track {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .carousel-container {
            padding: 0 25px;
            transform: scale(1);
        }
        
        .projects-title {
            font-size: 4rem;
        }
        
        .projects-subtitle {
            font-size: 1.2rem;
        }
    }


/* ===== PROJECTS PAGE FOOTER ALWAYS VISIBLE ===== */
.projects-footer {
    background-color: #000000;
    padding: 40px 20px 30px 20px;
    border-top: 1px solid #333;
    position: static; /* Changed from relative */
    z-index: 1;
    margin-top: 0;
}


/* ===== DISABLE SCROLL SNAP FOR PROJECTS PAGE ===== */
.projects-page html {
    scroll-snap-type: none !important;
}

.projects-page body {
    scroll-snap-type: none !important;
}

.projects-page * {
    scroll-snap-align: none !important;
}


/* ===== MODERN CURSOR STYLES ===== */
* {
    cursor: default;
}

/* Pointer cursor for interactive elements */
a, 
button, 
.nav-link, 
.nav-home, 
.learn-more, 
.see-all-projects, 
.contact-link, 
.project-item, 
.project-card, 
.hamburger {
    cursor: pointer;
}

/* Text cursor for text inputs and editable content */
input[type="text"], 
input[type="email"], 
input[type="password"], 
textarea, 
[contenteditable="true"] {
    cursor: text;
}

/* Default cursor for non-interactive elements */
body, 
div, 
span, 
p, 
h1, h2, h3, h4, h5, h6, 
img, 
video {
    cursor: default;
}

/* Remove any custom cursor styles that might interfere */
.video-container,
.hero-video,
.about-image,
.large-image {
    cursor: default;
}



.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-enlarged {
    transform: scale(2);
}

 * {
        cursor: none !important;
    }
    
    /* Custom cursor styling */
    .custom-cursor {
        position: fixed;
        width: 12px;
        height: 12px;
        background-color: white;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.3s ease;
        mix-blend-mode: difference;
        transform: translate(-50%, -50%);
    }
    
    .cursor-enlarged {
        transform: translate(-50%, -50%) scale(2.5);
    }
    
    /* Your existing logo styles */
    .nav-logo img {
        height: 16px !important;
        width: auto;
    }
    
    .footer-logo img {
        height: 16px !important;
        width: auto;
    }
    
    /* Responsive adjustments for logos */
    @media screen and (max-width: 480px) {
        .nav-logo img, .footer-logo img {
            height: 12px !important;
        }
    }
    
    @media screen and (min-width: 481px) and (max-width: 768px) {
        .nav-logo img, .footer-logo img {
            height: 14px !important;
        }
    }
    
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .nav-logo img, .footer-logo img {
            height: 15px !important;
        }
    }
    
    @media screen and (min-width: 1441px) and (max-width: 1920px) {
        .nav-logo img, .footer-logo img {
            height: 18px !important;
        }
    }
    
    @media screen and (min-width: 1921px) {
        .nav-logo img, .footer-logo img {
            height: 20px !important;
        }
    }