/* Base layout */
:root {
    --nav-bg: #0b0b0b;
    --accent: #ffffff;
    --text-on-accent: #0b0b0b;
    --gap: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Geist Sans', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: #fff;
    /* white background as requested */
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center navbar horizontally */
    padding: 25px;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.nav {
    background: var(--nav-bg);
    padding: 0;
    border-radius: 100px;
    display: inline-block;
    box-shadow: 0 6px 58px rgb(255 133 0 / 5%);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 3px;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0;
    /* avoid reserved space when icon is collapsed */
    padding: 10px 16px;
    font-size: 16px;
    color: var(--accent);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background .28s ease, color .28s ease, transform .12s ease;
}

/* Logo image in navbar: keep same visual height as icons so it doesn't change nav vertical spacing */
.nav-logo-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-top: 4px;
}

img.nav-logo-img {}

.nav-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    width: 0;
    /* collapsed when inactive so it doesn't affect layout */
    height: 18px;
    overflow: hidden;
    transition: width .22s ease, opacity .22s ease, transform .22s ease;
    opacity: 0;
    transform: translateX(-6px);
}

.nav-item .label {
    display: inline-block;
    white-space: nowrap;
    margin-left: 0;
}

/* Active state: white pill reveals icon and dark text */
.nav-item.active .nav-btn {
    background: var(--accent);
    color: var(--text-on-accent);
    padding: 10px 18px;
}

.nav-item.active .icon {
    width: 18px;
    /* restore width only when active */
    margin-right: 10px;
    opacity: 1;
    transform: translateX(0);
}

/* Slight press animation */
.nav-btn:active {
    transform: translateY(1px)
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-top: 100px;
}

.hint {
    color: #666
}

/* Responsive: shrink spacing on small screens */
@media (max-width:420px) {
    .nav-list {
        gap: 8px
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 15px
    }
}

.label {
    font-family: 'Geist Sans', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}


#hero {
    border-radius: 30px;
    overflow: hidden;
    background-color: white;
    margin: 10px;
    border-radius: 18px;
    position: relative;
    /* allow absolutely positioned children to overlap */
}

#hero-video {
    width: 100%;
    aspect-ratio: 2.1;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Mobile / small screen adjustments: bottom icon-only navbar and full-height hero */
@media (max-width: 768px) {

    /* Move navbar to bottom and show icons only */
    .header {
        top: auto;
        bottom: 6px;
        padding: 8px 12px;
        pointer-events: auto;
        display: flex;
        justify-content: center;
    }

    .nav {
        background: rgba(11, 11, 11, 0.92);
        border-radius: 999px;
        box-shadow: 0 0px 30px rgb(255 210 38 / 20%);
    }

    .nav-list {
        gap: 15px;
    }

    /* hide text labels on small screens */
    .nav-item .label {
        display: none;
    }

    /* always show icons for mobile, and keep buttons compact */
    .nav-item .icon {
        width: 18px !important;
        opacity: 1 !important;
        transform: none !important;
        margin-right: 0 !important;
    }

    .nav-btn {
        padding: 8px;
        min-width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* make active pill subtle on mobile */
    .nav-item.active .nav-btn {
        background: #fff;
        color: var(--nav-bg);
        text-align: center;
        padding: 0;
    }

    /* ensure content won't be obscured by bottom nav */
    body {
        padding-bottom: 84px;
    }

    /* Make hero section occupy full viewport height */
    #hero {
        margin: 0;
        border-radius: 0;
        height: 100vh;
        overflow: hidden;
    }

    #hero-video {
        width: 100%;
        height: calc(100vh - 20px);
        aspect-ratio: auto;
        border-radius: 18px;
        display: block;
    }

    /* position scroll indicator near bottom of hero */
    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 28px;
        top: auto;
        margin-top: 0;
        position: absolute;
        gap: 6px;
        pointer-events: none;
    }
}

/* Scroll down mouse animation */
.scroll-indicator {
    position: absolute;

    /* sit inside hero near bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    z-index: 12;
    /* above header */
    pointer-events: none;
    /* allow clicks through to video */
    margin-top: -35px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #111;
    border-radius: 15px;
    position: relative;
    zoom: 0.4;
}

.wheel {
    width: 3px;
    height: 8px;
    background: #111;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-text {
    font-size: 12px;
    font-weight: 200;
    color: #111;
    letter-spacing: 0.5px;
    animation: fade-pulse 2s ease-in-out infinite;

}

@keyframes fade-pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Features section */
.features {
    padding: 60px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.features-top {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

.eyebrow {
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.features-title {
    font-size: 40px;
    line-height: 1.02;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.features-right p {
    color: #666;
    margin: 6px 0 0 0;
    font-size: 15px;
    font-weight: 300;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 50px;
}

.feature-card {
    background: #f6f6f6;
    border-radius: 14px;
    padding: 22px 22px;
    position: relative;
    min-height: 210px;
    transition: transform .5s cubic-bezier(.2, .9, .2, 1), box-shadow .5s ease, background .24s ease;
    will-change: transform;
    cursor: pointer;
}

.feature-card h3 {
    margin: 80px 0 8px 0;
    font-size: 18px;
    font-weight: 400;
}

.feature-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 300;
}

.icon-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    /* remove yellow circle */
    background: transparent;
    /* icons are already colored */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.icon-badge img {
    width: 22px;
    height: 22px;
    display: block
}


.icon-badge img {
    width: 35px;
    height: 35px;
}

/* Hover / focus interactions for feature cards */
.feature-card:hover,
.feature-card:focus-within {
    transform: scale(1.01) !important;
    box-shadow: 0 18px 36px rgba(66, 66, 66, 0.2);
    background: #ffffff;
    z-index: 6;
}

.feature-card:active {
    transform: translateY(-6px);
}

.feature-card:hover .icon-badge img,
.feature-card:focus-within .icon-badge img {
    transform: translateY(-4px) scale(1.02);
}

.icon-badge img {
    transition: transform .32s cubic-bezier(.2, .9, .2, 1);
}

/* Improve accessibility: show focus outline for keyboard users */
.feature-card:focus-within {
    outline: 2px solid rgba(11, 11, 11, 0.06);
    outline-offset: 6px;
}

@media (hover: none) {
    .feature-card {
        transition: none;
    }
}

@media (max-width:1000px) {
    .features-top {
        grid-template-columns: 1fr 300px
    }

    .features-title {
        font-size: 34px
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:560px) {
    .features-top {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .features-right {
        order: 2;
        text-align: left !important;
        margin-top: 10px !important;
        text-align: center !important;
    }

    .features-title {
        font-size: 36px;
        text-align: center;
    }

    .feature-cards {
        grid-template-columns: 1fr
    }

    .testimonials-controls {
        display: none !important;
    }

    .footer-inner.container {
        margin-bottom: 50px;
    }

    .a13 {
        display: none;
    }
}

.down-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #111;
    transform-origin: center;
    animation: arrow-bob 1.6s ease-in-out infinite;
    position: absolute;
    left: 100%;
    margin-top: 5px;
}

.down-arrow-1 {
    margin-top: -5px;
    animation-delay: 0.2s;
}

.features-right {
    text-align: right;
    margin-top: 40px;
}

@keyframes arrow-bob {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9
    }

    50% {
        transform: translateY(3px);
        opacity: 1
    }
}

/* Projects section - Modern redesign with premium look */
.projects {
    background: #000000;
    color: #fff;
    border-radius: 24px;
    padding: 80px 20px 0 20px;
    position: relative;
}

.projects-inner.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-top {
    margin-bottom: 60px;
    margin-top: 0;
}

.projects-title {
    font-size: 100px;
    line-height: 1;
    margin: 0 0 12px 0;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

.projects-desc {
    color: rgb(189 189 189 / 85%);
    margin: 0;
    font-weight: 100;
    font-size: 15px;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.project-card {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2, .9, .2, 1), box-shadow .35s cubic-bezier(.2, .9, .2, 1);
    position: relative;
    overflow: hidden;
}

.project-link {
    display: block;
    position: relative;
}

.project-thumb {
    background: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    height: 340px;
    transition: transform .5s cubic-bezier(.2, .9, .2, 1), filter .3s ease;
    position: relative;
    overflow: hidden;
    filter: grayscale(100%) contrast(1.1);
}

.project-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0) 100%);
    mix-blend-mode: normal;
    transition: opacity .35s ease;
    opacity: 1;
    z-index: 1;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
}

.project-card:active {
    transform: translateY(-4px);
}

.project-card:hover .project-thumb {
    transform: scale(1.2);
    filter: grayscale(10%) contrast(1.15);
}

.project-card:hover .project-thumb::after {
    opacity: 0.6;
}

.project-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 4px;
    border-radius: 16px;
}

.project-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.3px;
    z-index: 2;
    line-height: 1.3;
}

.project-sub {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    margin-bottom: 24px;
    transform: translateY(-32px);
}

.more-project-button {
    text-align: center;
    padding: 64px 0 32px 0;
    display: none;
}


@media (max-width:1200px) {
    .projects-inner.container {
        padding: 0 30px;
    }

    .projects-grid {
        gap: 20px;
    }

    .project-thumb {
        height: 300px;
    }
}

@media (max-width:1000px) {
    .projects-title {
        font-size: 64px
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-thumb {
        height: 280px;
    }
}

@media (max-width:560px) {
    .projects {
        padding: 60px 20px 0 20px;
        border-radius: 18px;
    }

    .projects-inner.container {
        padding: 0 20px;
    }

    .projects-top {
        margin-bottom: 40px;
    }


    .projects-title {
        font-size: 36px
    }

    .projects-desc {
        font-size: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-thumb {
        height: 240px;
    }

    .project-title {
        font-size: 18px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .project-sub {
        font-size: 11px;
        bottom: 0;
        left: 20px;
        right: 20px;
        margin-bottom: 20px;
        transform: translateY(-28px);
    }
}

.btn-outline {
    transition: all .5s ease;
}

.btn-outline:hover {
    background: rgb(255, 255, 255);
    color: #0b0b0b;
    transform: scale(1.04);
    box-shadow: 1px 1px 100px white;
}

/* Testimonials section */
.testimonials {
    padding: 70px 20px;
    background: #fff;
}

.testimonials-top {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 46px;
    /* make repeat 1fr 500px */
}

.testimonials-title {
    font-size: 40px;
    line-height: 1.02;
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.testimonials-desc {
    margin: 0;
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.testimonials-controls {
    display: inline-flex;
    gap: 10px;
    float: right;
    margin-top: -75px;
}

.t-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(11, 11, 11, 0.12);
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.t-btn.is-primary {
    background: #0b0b0b;
    color: #fff;
    border-color: #0b0b0b;
}

.t-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(11, 11, 11, 0.12);
}

.t-btn:active {
    transform: translateY(0);
}

.t-btn:focus-visible {
    outline: 3px solid rgba(11, 11, 11, 0.18);
    outline-offset: 3px;
}

.t-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.testimonials-track {
    display: flex;
    gap: 70px;
    overflow-x: auto;
    padding: 6px 4px 22px 4px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

/* Prevent text selection inside testimonials to avoid selection interfering with horizontal drag/scroll */
.testimonials-track,
.testimonials-track .testimonial,
.testimonials-track .testimonial * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    /* iOS Safari */
    text-align: justify;
}

.testimonials-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.testimonials-track::-webkit-scrollbar {
    height: 0;
}

.testimonials-track {
    scrollbar-width: none;
    /* Firefox */
}

.testimonial {
    flex: 0 0 clamp(240px, 23vw, 290px);
    scroll-snap-align: start;
    scroll-margin-left: 20px;
    transform: translateZ(0) scale(0.985);
    opacity: 0.72;
    transition: transform .55s cubic-bezier(.2, .9, .2, 1), opacity .55s ease;
}

.testimonial.is-active {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

.testimonial-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    margin-bottom: 28px;
    font-weight: 600;
    user-select: none;
}

.brand-mark {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: black;
    border-radius: 50%;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
}

.testimonial-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.testimonial-quote {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #505050;
    font-weight: 500;
}

/* Interactive scroll indicator (matches the thin line in the mock, but draggable) */
.t-scrollbar {
    margin-top: 34px;
    padding: 10px 2px;
    user-select: none;
    touch-action: none;
    cursor: pointer;
}

.t-scrollbar:focus-visible {
    outline: 3px solid rgba(11, 11, 11, 0.18);
    outline-offset: 4px;
    border-radius: 10px;
}

.t-scrollbar-track {
    height: 2px;
    background: rgba(11, 11, 11, 0.12);
    border-radius: 999px;
    position: relative;
}

.t-scrollbar-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 60px;
    background: rgba(11, 11, 11, 0.78);
    border-radius: 999px;
    transform: translateX(0);
    will-change: transform, width;
    transition: transform .22s cubic-bezier(.2, .9, .2, 1), width .22s cubic-bezier(.2, .9, .2, 1), background .22s ease;
}

.t-scrollbar:hover .t-scrollbar-thumb {
    background: rgba(11, 11, 11, 0.92);
}

.t-scrollbar.is-dragging .t-scrollbar-thumb {
    transition: none;
}

/* Skills / Tools rolling ticker (before footer) */
.skills-ticker {}

.skills-ticker-top {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
}

.skills-ticker-title {
    font-size: 40px;
    line-height: 1.05;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.skills-ticker-right p {
    color: #666;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    text-align: right;
}

.skills-ticker-wrap {
    margin: 0 10px;
    background: var(--nav-bg);
    border-radius: 18px;
    padding: 18px 0;
    overflow: hidden;

    /* nice edge fade like a “news” banner */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.skills-ticker-track {
    --ticker-gap: 16px;
    --ticker-speed: 28s;
    display: flex;
    width: max-content;
    gap: 0;
    align-items: center;
    will-change: transform;
    animation: skills-ticker-marquee var(--ticker-speed) linear infinite;
}

.skills-ticker-wrap:hover .skills-ticker-track {
    animation-play-state: paused;
}

.skills-ticker-group {
    display: flex;
}

.skills-ticker-row {
    list-style: none;
    margin: 0;
    padding: 0 10px;
    display: flex;
    gap: var(--ticker-gap);
    align-items: center;
}

.skills-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.skills-ticker-item img {
    width: 18px;
    height: 18px;
    display: block;
}

/* Hover / focus for individual skill badges: subtle lift and glow */
.skills-ticker-item:hover,
.skills-ticker-item:focus {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 160, 30, 0.06) inset;
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
}

.skills-ticker-item:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.08);
    outline-offset: 4px;
}

@keyframes skills-ticker-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1000px) {
    .skills-ticker-top {
        grid-template-columns: 1fr 320px;
    }

    .skills-ticker-title {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .skills-ticker {
        padding-top: 10px;
    }

    .skills-ticker-top {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .skills-ticker-title {
        font-size: 34px;
        text-align: center;
    }

    .skills-ticker-right p {
        text-align: center;
    }

    .skills-ticker-wrap {
        margin: 0 10px;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skills-ticker-track {
        animation: none;
    }

    .skills-ticker-wrap {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .skills-ticker-wrap::-webkit-scrollbar {
        height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        scroll-behavior: auto;
    }

    .testimonial {
        transition: none;
    }

    .t-scrollbar-thumb {
        transition: none;
    }
}

@media (max-width:900px) {
    .testimonials-title {
        font-size: 44px;
    }

    .testimonials-track {
        gap: 34px;
    }
}

@media (max-width:560px) {
    .testimonials-top {
        align-items: flex-start;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .t-btn {
        width: 42px;
        height: 42px;
    }
}

/* Footer section */
.footer {
    background: #0b0b0b;
    color: #fff;
    padding: 80px 20px 40px 20px;
    margin-top: 80px;
    border-radius: 18px 18px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 16px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 420px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 0px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #fff;
    font-family: 'Geist Sans', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    /* Match the visual style of .btn-outline (See More button) */
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Geist Sans', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: all .5s ease;
}

.btn-submit:hover {
    background: rgb(255, 255, 255);
    color: #0b0b0b;
    transform: scale(1.04);
    box-shadow: 1px 1px 100px white;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.3);
    outline-offset: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-contact-details {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.footer-email {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: -16px;
}

.footer-socials .footer-link svg {
    color: #fff;
    opacity: 0.8;
    transition: opacity .22s;
}

.footer-socials .footer-link:hover svg {
    opacity: 1;
}

.copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 300;
    transition: color .22s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 4px;
    border-radius: 4px;
}

@media (max-width:900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title {
        font-size: 38px;
    }
}

@media (max-width:560px) {
    .footer {
        padding: 60px 20px 30px 20px;
        margin-top: 60px;
    }

    .footer-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .eyebrow {
        text-align: center !important;
    }
}

#home {
    width: 100%;
    padding: 10px;
}

/* ===================== */
/* Animated Loading Screen */
#loading-screen {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s cubic-bezier(.4, 1, .4, 1), visibility 0.7s;
    z-index: 2000;
}

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

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    min-height: 80px;
    justify-content: center;
}


.loader-bar {
    width: 160px;
    height: 3px;
    background: #eee;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.loader-bar-inner {
    height: 100%;
    width: 100%;
    background: #ffb700;
    border-radius: 3px;
    animation: loading-bar-move 01s cubic-bezier(.4, 1, .4, 1) infinite;
}

@keyframes loading-bar-move {
    0% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.loader-text {
    color: #111;
    letter-spacing: 1.5px;
    animation: loader-text-fade 1.2s infinite alternate;
    text-shadow: none;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
}

@keyframes loader-text-fade {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ===================== */
/* Scroll Animation Classes */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1);
    will-change: opacity, transform;
}

header.animate-on-scroll {
    transform: translateY(10px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card>a {
    text-decoration: none;
}