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

:root {
    --lime: #d2d644;
    --dark: #2d3a3a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #a0a0a0;
}

@font-face {
    font-family: 'Cabinet Grotesk Black';
    src: url('../fonts/CabinetGrotesk-Black.woff2') format('woff2');
    font-weight: 800;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Bold';
    src: url('../fonts/CabinetGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Extrabold';
    src: url('../fonts/CabinetGrotesk-Extrabold.woff2') format('woff2');
    font-weight: 600;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Extralight';
    src: url('../fonts/CabinetGrotesk-Extralight.woff2') format('woff2');
    font-weight: 500;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Light';
    src: url('../fonts/CabinetGrotesk-Light.woff2') format('woff2');
    font-weight: 400;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Medium';
    src: url('../fonts/CabinetGrotesk-Medium.woff2') format('woff2');
    font-weight: 300;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Regular';
    src: url('../fonts/CabinetGrotesk-Regular.woff2') format('woff2');
    font-weight: 200;
    /* Define the weight for this specific font file */
    font-style: normal;
}

@font-face {
    font-family: 'Cabinet Grotesk Thin';
    src: url('../fonts/CabinetGrotesk-Thin.woff2') format('woff2');
    font-weight: 100;
    /* Define the weight for this specific font file */
    font-style: normal;
}

body {
    font-family: 'Cabinet Grotesk Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cabinet Grotesk Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: normal;
}


/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(200, 255, 0, 0.2);
    border-color: var(--lime);
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
}

.cursor-tooltip {
    position: fixed;
    padding: 0.8rem 1.5rem;
    background: var(--lime);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    transform: translate(-50%, calc(-100% - 20px));
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--lime), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #9333ea, transparent);
    top: 50%;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--lime), transparent);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -100px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(200, 255, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 255, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Navigation CSS */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--light);
    display: flex;
}

.logo img {
    width: 100px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--lime);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    width: 35px;
    height: 25px;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 9999;
}

.hamburger.active {
    z-index: 9999;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    z-index: 9999;
}

.hamburger.active span:first-child {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:last-child {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: none;
}

.mobile-links {
    list-style: none;
    text-align: center;
    /* pointer-events: auto; */
}

.mobile-menu.active .mobile-links {
    pointer-events: auto;
}

.mobile-links li {
    margin: 2rem 0;
}

.mobile-links a {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: var(--light);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.mobile-links a:hover {
    color: var(--lime);
}

/* Hero Section */
.hero {
    margin-top: 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero-content {
    max-width: 1600px;
    width: 100%;
}

.hero-label {
    font-size: 1.2rem;
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    letter-spacing: 0.15em;
    /* text-transform: uppercase; */
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero h1 .highlight {
    color: var(--lime);
    display: inline-block;
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--lime);
    opacity: 0.2;
    z-index: -1;
}

.hero-description {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--gray);
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--lime);
    color: var(--dark);
    border: 2px solid var(--lime);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Work Section */
.featured-work {
    padding: 8rem 5% 12rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
}

.slider-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-slide {
    min-width: 100%;
    height: 700px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.work-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.work-slide:hover::before {
    left: 100%;
}

.work-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.3), rgba(147, 51, 234, 0.3));
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.work-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.95) 100%);
}

.work-info {
    position: absolute;
    bottom: 8rem;
    left: 0;
    right: 0;
    padding: 0 4rem;
    z-index: 2;
}

.work-category {
    font-size: 0.9rem;
    border-radius: 50px;
    display: inline;
    padding: 0.75%;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    background-color: transparent;
    border: 1px solid var(--lime);
    color: var(--lime);
}

.work-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    padding-top: 20px;
}

.work-description {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-arrow {
    min-width: 60px;
    height: 60px;
    padding: 0 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    gap: 0.5rem;
}

.slider-arrow:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--dark);
    transform: scale(1.05);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.arrow-icon {
    font-size: 1.2rem;
}

.arrow-text {
    font-size: 0.85rem;
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.3s ease;
}

.slider-arrow:hover .arrow-text {
    max-width: 200px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dot.active {
    width: 40px;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--lime);
    animation: fillDot 7s linear forwards;
}

@keyframes fillDot {
    to {
        width: 100%;
    }
}

.view-project-btn {
    padding: 1.2rem 2.5rem;
    background: var(--lime);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: none;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.view-project-btn:hover {
    background: var(--light);
    box-shadow: 0 10px 30px rgba(200, 255, 0, 0.4);
}

.about {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--light);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--lime);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: 4rem 0 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact {
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lime);
}

/* Footer */
footer {
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--lime);
}

/* Responsive */
@media (max-width: 968px) {
    .lightbox-close {
        position: fixed;
        top: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: var(--lime);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(200, 255, 0, 0.4);
    }
    
    .lightbox-wrapper {
        cursor: default;
    }

    .cursor {
        display: none !important;
    }

    .cursor-follower {
        display: none !important;
    }

    .featured-work {
        padding-top: 0;
    }

    .work-slide {
        height: 500px;
    }

    .work-image img {
        height: 500px;
    }

    .work-title {
        margin-bottom: 0;
    }

    .work-category {
        padding: 3%;
        background-color: transparent;
        border: 1px solid var(--lime);
        color: var(--lime);
    }

    .work-info {
        padding: 0 2rem;
        bottom: 8rem;
    }

    .slider-controls {
        left: 3%;
        /* transform: translateX(-50%); */
        bottom: 3rem;
    }

    .slider-arrow {
        border: 1px solid var(--lime);
        color: var(--lime);
    }

    .slider-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 1rem;
    }

    .view-project-btn {
        display: inline-block;
        /* left: 50%; */
        right: 3%;
        bottom: 3rem;
        /* transform: translateX(-50%); */
    }

    .arrow-text {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        /* width: 100%; */
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .services {
        padding-top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding-top: 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact {
        padding-top: 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .lightbox-close {
        position: fixed;
        top: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: var(--lime);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(200, 255, 0, 0.4);
    }
    
    .lightbox-wrapper {
        cursor: default;
    }
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}