:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --accent-color: #26D367;
    /* Mountain Meadow Green */
    --accent-hover: #1db954;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --container-width: 1200px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-center {
    text-align: center;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loader-logo span {
    color: var(--accent-color);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default for custom cursor */
}

html {
    scroll-behavior: initial;
    /* Managed by Lenis */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Custom Cursor */
.cursor {
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dd-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dd-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    color: #000;
    background: rgba(38, 211, 103, 0.08);
    border-left-color: #26d367;
}

.dropdown-menu li a i {
    font-size: 14px;
    color: #26d367;
    width: 18px;
    text-align: center;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(38, 211, 103, 0.3);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: #fff;
}

/* Compact Hero Layout */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 40px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-new-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Increased inner gap */
}

.hero-new-layout h1 {
    font-size: clamp(40px, 10.8vw, 115px);
    /* Slightly smaller for compactness and long words */
    font-weight: 800;
    line-height: 0.9;
    margin: 0;
    color: #000;
    letter-spacing: -3px;
    display: flex;
    align-items: baseline;
}

.word-left,
.word-right {
    display: inline;
    white-space: nowrap;
}

.top-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.top-row h1 span.dot:first-of-type {
    margin-right: 20px;
    /* Reduced gap to fit larger words on one row */
}

.dot {
    display: inline-block;
    width: clamp(8px, 1.5vw, 15px);
    height: clamp(8px, 1.5vw, 15px);
    border-radius: 50%;
    margin-left: 12px;
    vertical-align: bottom;
    margin-bottom: 0.1em;
}

.dot.pink {
    background-color: #ff2d55;
}

.dot.yellow {
    background-color: #ffcc00;
}

.dot.teal {
    background-color: #26D367;
}

.dot.orange {
    background-color: #ff6600;
}

.middle-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 70px;
}

.hero-desc {
    max-width: 380px;
    margin-top: 20px;
}

.hero-desc p {
    font-size: 15px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    opacity: 0.8;
}

.bottom-row {
    display: flex;
    justify-content: center;
    padding-right: 100px;
}

@media (max-width: 992px) {
    .hero-new-layout h1 {
        font-size: 55px;
    }

    .middle-row {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        gap: 10px;
    }

    .hero-desc {
        text-align: left;
        margin-top: 10px;
    }

    .bottom-row {
        justify-content: flex-start;
        padding-right: 0;
        margin-top: 0;
    }

    .starburst {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    /* Full-screen hero, content stretches top-to-bottom */
    .hero {
        min-height: 100dvh;
        padding-top: 80px;
        padding-bottom: 48px;
        display: flex;
        align-items: stretch;
    }

    .hero>.container {
        display: flex;
        align-items: stretch;
        width: 100%;
    }

    /* Left-aligned editorial column — fills full available height */
    .hero-new-layout {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 26px;
        width: 100%;
        min-height: calc(100dvh - 128px);
        padding-left: 20px;
        border-left: 5px solid var(--accent-color);
    }

    /* Brand badge on top via pseudo-element */
    .hero-new-layout::before {
        content: '✦ Digital Marketing Agency';
        display: block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent-color);
        order: 0;
        margin-bottom: 0;
    }

    .middle-row {
        display: contents;
    }

    /* Words — big, tight letter-spacing, relaxed line-height to spread */
    .hero-new-layout h1 {
        font-size: 52px;
        letter-spacing: -2px;
        line-height: 1.05;
        margin: 0;
        text-align: left;
    }

    /* Dissolve top-row so DEFINE and DESIGN become direct flex items */
    .top-row {
        display: contents;
    }

    /* Dissolve the h1 wrapper too so the spans are direct items */
    .top-row h1 {
        display: contents;
    }

    /* Each word span — becomes a direct flex item */
    .word-left,
    .word-right {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 52px;
        font-weight: 800;
        font-family: 'Plus Jakarta Sans', sans-serif;
        letter-spacing: -2px;
        line-height: 1.0;
    }

    .middle-row>h1 {
        order: 2;
        display: block;
        text-align: left;
        margin: 0;
    }

    .bottom-row {
        order: 3;
        justify-content: flex-start;
        padding-right: 0;
        margin-bottom: 0;
    }

    /* Description — sits at the bottom, separated from words */
    .hero-desc {
        order: 4;
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .hero-desc p {
        font-size: 14px;
        line-height: 1.65;
        color: #666;
        max-width: 280px;
        margin: 0;
    }

    /* Scroll hint at very bottom */
    .hero-new-layout::after {
        content: '↓ Scroll to explore';
        display: block;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #aaa;
        order: 5;
        padding-top: 16px;
    }

    .dot {
        display: inline-block;
        width: 9px;
        height: 9px;
        margin-left: 4px;
        vertical-align: bottom;
    }
}

/* Hero Floating Decorative Icons */
.hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    color: #000;
    opacity: 0.08;
    font-weight: 900;
    line-height: 1;
}

.fi-1 {
    top: 15%;
    right: 8%;
    font-size: 65px;
    animation: heroFloat1 6s ease-in-out infinite;
}

.fi-2 {
    bottom: 20%;
    left: 5%;
    font-size: 45px;
    animation: heroFloat2 7s ease-in-out infinite;
}

.fi-3 {
    top: 35%;
    right: 25%;
    font-size: 30px;
    opacity: 0.05;
    animation: heroFloat3 8s ease-in-out infinite;
}

.fi-4 {
    bottom: 30%;
    right: 15%;
    font-size: 55px;
    animation: heroFloat1 5s ease-in-out infinite reverse;
}

.fi-5 {
    top: 25%;
    left: 15%;
    font-size: 14px;
    opacity: 0.1;
    color: var(--accent-color);
    animation: heroFloat2 6s ease-in-out infinite;
}

.fi-6 {
    bottom: 12%;
    right: 35%;
    font-size: 35px;
    animation: heroFloat3 7s ease-in-out infinite;
}

.fi-7 {
    top: 55%;
    left: 35%;
    font-size: 18px;
    opacity: 0.05;
    animation: heroFloat1 9s ease-in-out infinite;
}

@keyframes heroFloat1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@keyframes heroFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-10deg);
    }
}

@keyframes heroFloat3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -15px) rotate(10deg);
    }

    66% {
        transform: translate(-8px, 10px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .fi-1 {
        font-size: 40px;
    }

    .fi-2 {
        font-size: 30px;
    }

    .fi-4 {
        font-size: 35px;
    }

    .fi-6 {
        font-size: 22px;
    }

    .fi-3,
    .fi-7 {
        display: none;
    }
}

/* About Story Section (New Design) */
.about-story {
    background: #ffffff;
    padding: 60px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column - Media */
.story-main-media {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background: #000;
}

.about-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-gallery {
    display: flex;
    gap: 20px;
}

.small-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    aspect-ratio: 4/3;
}

.small-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.img-tags span {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

/* Right Column - Content */
.tag-with-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tag-with-line .accent-line {
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.main-heading {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #000;
}

.main-heading .highlight {
    color: var(--accent-color);
}

.story-description {
    margin-bottom: 50px;
}

.story-description p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-weight: 400;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.stat-item .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #000;
}

.stat-item .plus {
    color: var(--accent-color);
    font-size: 20px;
}

.stat-item small {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

.story-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.team-avatars {
    display: flex;
    align-items: center;
}

.team-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    object-fit: cover;
}

.team-avatars img:first-child {
    margin-left: 0;
}

.watch-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.watch-intro:hover .play-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.stats-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
}

.plus {
    color: var(--accent-color);
    font-size: 24px;
    margin-left: 5px;
}

.stats-list small {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 5px;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Stacked Services Section */
.services-stack-section {
    position: relative;
    background: #fdfdfd;
    padding: 0;
}

.stack-container {
    width: 100%;
}

.stack-cards {
    display: flex;
    flex-direction: column;
}

.service-stack-card {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9f8f4;
    /* Sophisticated Cream White */
}

.stack-card-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    padding: 0 5%;
}

.stack-img {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-stack-card:hover .stack-img img {
    transform: scale(1.05);
}


.stack-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #080808;
}

.card-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 4px;
}

.card-title {
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.card-title .highlight {
    color: var(--accent-color);
    display: block;
}

.card-desc {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 500px;
}

.stack-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 36px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.stack-cta-btn:hover {
    transform: scale(1.05);
    background: #000;
    color: #fff;
}

/* Individual Card Accents */
.card-1 {
    z-index: 1;
}

.card-2 {
    z-index: 2;
}

.card-3 {
    z-index: 3;
}

.card-4 {
    z-index: 4;
}

.card-5 {
    z-index: 5;
}

.card-6 {
    z-index: 6;
}

/* Responsive */
@media (max-width: 768px) {
    .service-stack-card {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 80px;
    }

    /* Switch from grid to flex column so order works */
    .stack-card-inner {
        display: flex;
        flex-direction: column;
        padding: 0 24px 60px;
        gap: 16px;
        align-items: flex-start;
    }

    /* Dissolve .stack-content so its children become direct flex items */
    .stack-content {
        display: contents;
    }

    /* Order: number → title → image → desc → button */
    .card-num {
        order: 1;
    }

    .card-title {
        order: 2;
    }

    .stack-img {
        order: 3;
    }

    .card-desc {
        order: 4;
    }

    .stack-cta-btn {
        order: 5;
    }

    .stack-img {
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 16px;
        margin: 4px 0;
    }

    .card-title {
        font-size: clamp(28px, 9vw, 44px);
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .card-desc {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .stack-cta-btn {
        padding: 14px 26px;
        font-size: 13px;
    }
}

/* Why Choose Us Section (Grid-Based Scattered Layout) */
.why-choose-us {
    padding: 60px 0;
    /* background:
        linear-gradient(135deg, #ffffff 0%, #e8edf5 30%, #f5f0ff 60%, #eef8f3 100%); */
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Glowing accent orbs */
.why-choose-us::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 211, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.why-orb-left {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.why-scatter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px 40px;
    max-width: 1100px;
    margin: 30px auto 0;
    position: relative;
    padding: 30px 20px;
}

.dashed-svg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.dashed-svg-container svg {
    width: 100%;
    height: 100%;
}

.why-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-card-scatter {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: #ffffff;
    padding: 12px;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
    transform: rotate(var(--rot)) translate(var(--tx), var(--ty));
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2;
    /* Ensures cards stay ABOVE the dashed lines */
}

/* Individual Scatter Accents */
.scatter-1 {
    --rot: -5deg;
    --tx: -20px;
    --ty: 10px;
}

.scatter-2 {
    --rot: 3deg;
    --tx: 30px;
    --ty: -20px;
}

.scatter-3 {
    --rot: -3deg;
    --tx: -15px;
    --ty: -30px;
}

.scatter-4 {
    --rot: 5deg;
    --tx: 25px;
    --ty: 15px;
}

.why-card-scatter:hover {
    transform: rotate(0deg) translateY(-20px) scale(1.05);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.card-dots {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.card-dots span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-dots span:first-child {
    margin-right: -18px;
    z-index: 2;
}

.card-dots span:last-child {
    opacity: 0.9;
    z-index: 1;
}

/* Themes */
.card-yellow .card-dots span {
    background: #fee440;
}

.card-yellow .card-inner {
    background: #fffdf2;
}

.card-purple .card-dots span {
    background: #9b5de5;
}

.card-purple .card-inner {
    background: #f9f6ff;
}

.card-pink .card-dots span {
    background: #f15bb5;
}

.card-pink .card-inner {
    background: #fff4fc;
}

.card-blue .card-dots span {
    background: #00bbf9;
}

.card-blue .card-inner {
    background: #f4faff;
}

.card-inner {
    padding: 35px 20px 25px;
    border-radius: 22px;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 25px;
    display: inline-block;
}

.why-card-scatter h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: -0.5px;
}

.why-card-scatter p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 850px) {
    .why-scatter-grid {
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }

    .dashed-svg-container {
        display: none;
    }

    .why-card-scatter {
        transform: rotate(var(--rot)) !important;
        margin: 0 auto;
    }
}

/* Trusted By Section (Double Slider) */
.trusted-by {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.trusted-heading {
    font-size: clamp(28px, 3.5vw, 48px);
    /* Slightly smaller, more refined */
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 40px;
    /* Reduced from 80px */
    color: #000;
    letter-spacing: -1.5px;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Reduced gap between rows */
    pointer-events: none;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 60px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    /* Reduced gap between items */
    min-width: 100%;
}

.brand-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    opacity: 0.7;
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.brand-item img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: 0.4s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Animations */
.track-rtl .marquee-content {
    animation: scroll-rtl 40s linear infinite;
}

.track-ltr .marquee-content {
    animation: scroll-ltr 40s linear infinite;
}

@keyframes scroll-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 60px));
    }
}

@keyframes scroll-ltr {
    from {
        transform: translateX(calc(-100% - 60px));
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive adjustments for marquee */
@media (max-width: 768px) {
    .brand-item {
        padding: 15px 25px;
    }

    .brand-item img {
        height: 25px;
    }

    .marquee-container {
        gap: 20px;
    }
}


/* Portfolio Section (Full-Width Slider) */
.work {
    padding: 60px 0;
    background: #fff;
}

.work-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.work-slider {
    overflow: hidden;
    padding: 10px 0;
}

.work-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.work-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Portfolio Navigation */
.work-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.work-nav.prev {
    left: 5px;
}

.work-nav.next {
    right: 5px;
}

.work-nav:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 992px) {
    .work-item {
        flex: 0 0 calc(50% - 10px);
    }

    .work-item img {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .work-item {
        flex: 0 0 80%;
    }

    .work-slider-wrapper {
        padding: 0 30px;
    }

    .work-item img {
        height: 200px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.testimonials-section .container {
    z-index: 2;
}

.testimonial-header {
    margin: 0;
}

.testi-badge {
    background: rgba(38, 211, 103, 0.15);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.testi-heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.highlight {
    color: var(--accent-color);
}

.testi-heading .highlight {
    color: #26d367;
    /* Golden color from design */
}

.testi-subtext {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.floating-avatar-area {
    position: relative;
    height: 380px;
    /* Reduced for a more compact, boutique look */
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 20;
}

.avatar-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #fff;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 5;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-item:hover,
.avatar-item.active {
    transform: scale(1.15);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(38, 211, 103, 0.2);
    z-index: 10;
}

/* Industry Standard Swarm Positioning */
.av-pos-1 {
    top: 15%;
    left: 15%;
    width: 60px;
    height: 60px;
}

.av-pos-2 {
    top: 48%;
    left: 12%;
    width: 75px;
    height: 75px;
}

.av-pos-3 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.av-pos-4 {
    top: 10%;
    right: 18%;
    width: 65px;
    height: 65px;
}

.av-pos-5 {
    top: 45%;
    right: 15%;
    width: 85px;
    height: 85px;
}

.av-pos-6 {
    top: 32%;
    left: 35%;
    width: 65px;
    height: 65px;
}

/* Fills center-left gap */
.av-pos-7 {
    top: 40%;
    right: 35%;
    width: 60px;
    height: 60px;
}

/* Fills center-right gap */
.av-pos-8 {
    top: 15%;
    right: 38%;
    width: 70px;
    height: 70px;
}

/* Fills middle-top gap */

/* Floating Animation */
@keyframes float-slow {

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

    50% {
        transform: translate(0, -15px);
    }
}

.avatar-item:nth-child(odd) {
    animation: float-slow 7s ease-in-out infinite;
}

.avatar-item:nth-child(even) {
    animation: float-slow 5s ease-in-out infinite -2s;
}

.testi-display-wrapper {
    max-width: 900px;
    margin: -100px auto 0;
    /* Pulled up significantly */
    position: relative;
    z-index: 15;
}

.testi-card-container {
    background: transparent;
    padding: 0;
    /* Removed padding to tighten gap */
    border-radius: 40px;
    text-align: center;
    position: relative;
}

.testi-card {
    background: #ffffff;
    padding: 65px 35px 35px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    position: relative;
    /* CRITICAL: Sub-elements now move with this card */
    margin: 0 auto;
    /* Removed top margin */
}

.testi-card-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 8px solid #fff;
    position: absolute;
    top: -55px;
    /* Half overlap relative to the moving card */
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 20;
}

.testi-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.client-quote {
    font-size: 16px;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Google Button Style */
.testi-google-btn {
    display: flex;
    justify-content: center;
}

.gbp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 40px;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.gbp-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.google-icon {
    width: 24px;
    height: 24px;
}

/* Navigation Buttons Positioned on Edges */
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
    z-index: 25;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testi-nav.prev {
    left: -30px;
}

.testi-nav.next {
    right: -30px;
}

.testi-nav:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .testi-slider-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .floating-avatar-area {
        height: 180px;
        /* Shorter arc for mobile */
    }

    .avatar-item {
        border-width: 3px;
    }

    /* Shrink all avatars proportionally on mobile */
    .av-pos-1 {
        top: 20%;
        left: 5%;
        width: 40px;
        height: 40px;
    }

    .av-pos-2 {
        top: 60%;
        left: -2%;
        width: 50px;
        height: 50px;
    }

    .av-pos-3 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
    }

    .av-pos-4 {
        top: 15%;
        right: 5%;
        width: 45px;
        height: 45px;
    }

    .av-pos-5 {
        top: 55%;
        right: -2%;
        width: 55px;
        height: 55px;
    }

    .av-pos-6 {
        top: 40%;
        left: 25%;
        width: 40px;
        height: 40px;
    }

    .av-pos-7 {
        top: 45%;
        right: 25%;
        width: 40px;
        height: 40px;
    }

    .testi-display-wrapper {
        margin-top: -30px;
        /* Pull card closer since arc is smaller */
    }

    .testi-card-container {
        padding: 50px 10px 30px;
    }

    .testi-card {
        padding: 60px 20px 30px;
    }

    .client-name {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .client-quote {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .testi-card-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
        border-width: 5px;
    }

    .testi-subtext {
        margin-bottom: 40px;
    }
}

/* Final CTA Section */
.trusted-by {
    padding-bottom: 20px;
    /* Tighten gap before testimonials */
}

/* End Unified Styles */

/* Footer */
/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
    border: 3px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Premium Black Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

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

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--accent-color);
}

.brand-tagline {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-info span {
    color: #ffffff;
    font-weight: 600;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: 25px;
    transition: 0.4s;
}

.footer-cta-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #64748b;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #ffffff;
}

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-visual {
        display: none;
    }

    .about-grid,
    .services-grid,
    .work-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-dropdown {
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: unset;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 10px;
        padding: 8px 0;
        margin-top: 12px;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 36px;
    }

    section {
        padding: 50px 0;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON (all pages)
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================
   PERFORMANCE OPTIMISATIONS
   ============================================ */

/* GPU-accelerate elements that will animate */
.hero,
.hero-content,
.hero-headline,
.floating-icon,
.work-track,
.marquee-track,
.custom-cursor,
.cursor-follower {
    will-change: transform;
}

/* Hide custom cursor on touch / mobile devices */
@media (hover: none),
(pointer: coarse) {

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

/* Respect user's motion preference — disable heavy animations */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-icon {
        animation: none !important;
    }

    .marquee-track {
        animation: none !important;
    }
}

/* =========================================
   NEW PORTFOLIO DESIGN (Global shared)
   ========================================= */
.np-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.np-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.np-header-left {
    max-width: 600px;
    text-align: left;
}

.np-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.np-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    line-height: 1.2;
    letter-spacing: -1px;
}

.np-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.np-header-right {
    flex-shrink: 0;
}

.np-btn {
    background: #111;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.np-btn i {
    font-size: 14px;
    transition: 0.3s;
}

.np-btn:hover {
    background: #26d367;
}

.np-btn:hover i {
    transform: translate(3px, -3px);
}

/* Slider Track */
.np-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.np-slider {
    overflow: hidden;
    padding: 20px 0 40px;
}

.np-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.np-card {
    flex: 0 0 clamp(320px, 30vw, 400px);
    position: relative;
    border-radius: 32px;
}

.np-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 32px;
    display: block;
    transition: 0.4s ease;
}

.np-card:hover img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Cutout Button Wrapper */
.np-card-btn-wrap {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-bottom-right-radius: 33px;
    border-top-left-radius: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px;
    z-index: 2;
}

.np-card-btn-wrap::before {
    content: '';
    position: absolute;
    top: -24px;
    right: 0;
    width: 24px;
    height: 24px;
    background: transparent;
    border-bottom-right-radius: 24px;
    box-shadow: 12px 12px 0 0 #fff;
    pointer-events: none;
}

.np-card-btn-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-bottom-right-radius: 24px;
    box-shadow: 12px 12px 0 0 #fff;
    pointer-events: none;
}

/* Expand Button */
.np-btn-icon {
    width: 60px;
    height: 60px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: none;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.np-btn-icon i {
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.np-card:hover .np-btn-icon {
    background: #26d367;
    color: #fff;
    transform: translate(2px, -2px) scale(1.05);
}

/* Lightbox Fullscreen */
.np-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.np-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.np-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.np-lightbox.active img {
    transform: scale(1);
}

.np-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.3s;
}

.np-lightbox-close:hover {
    color: #26d367;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .np-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .np-card {
        flex: 0 0 clamp(280px, 85vw, 350px);
        min-width: unset;
    }
}