/* =====================================================
   WTX Main Styles
   Base / desktop styles only.
   Responsive rules have been moved to responsive.css.
   ===================================================== */
::selection {
    background-color: #FFCE00;
    color: #161616;
}

::-moz-selection {
    background-color: #FFCE00;
    color: #161616;
}

img,
svg {
    width: 100%;
    height: auto;
}

:root {
    --primary: #FFCE00;
    --bg-dark: #161616;
    --bg-card: #161616;
    --bg-pill: #161616;
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Lenis Recommended CSS */

/* Text reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: none;
    align-items: start;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: "Montserrat", sans-serif !important;
    line-height: 1.6;
    overflow-x: clip;
    font-optical-sizing: auto;
    font-style: normal;
    padding-top: 0px;
}

/* Typography */

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 1rem 0;
}

li {
    list-style-type: none;
}

ol,
ul {
    padding: 0;
}

/* Header & Navigation */

header {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 80px;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: #161616;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
    margin-right: 40px;
}

/* Dave Holloway style nav hover */

.nav-links a {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    opacity: 0.8;
    height: 1.4em;
    line-height: 1.8;
    overflow: hidden;
    display: inline-block;
    transition: opacity 0.4s ease;
    padding: 0;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a span {
    display: block;
    line-height: 26px;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 24px;
}

.nav-links a span::after {
    content: attr(data-text);
    display: block;
    color: var(--primary);
}

.nav-links a:hover span,
.nav-links a.active span {
    transform: translateY(-50%);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-contact {
    background: #fff;
    color: #000 !important;
    padding: 0.8rem 2rem 0.8rem 3.5rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: inset(-50px 0 0 0 round 7px);
    /* mask bottom/left but allow dude to come up top */
    transition: var(--transition);
}

.btn-contact:before {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -20px;
    width: 60px;
    height: 59px;
    background: url(../images/dude-full.png) no-repeat bottom center;
    background-size: contain;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.25s ease;
    display: none;
}

.btn-contact:hover:before {
    background: url(../images/dude-full.png) no-repeat bottom center;
    background-size: contain;
    height: 60px;
    width: 56px;
    transform: translateY(-18px);
    /* comes top on hover */
    bottom: -20px;
    left: 5px;
}

.btn-contact:hover {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 234, 0, 0.2);
}

/* Mobile Toggle */

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

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

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

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

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

/* Hero Section */

.hero {
    width: 100%;
    height: 76vh;
    min-height: 520px;
    display: block;
    position: relative;
    top: 0;
    z-index: 10;
    overflow: hidden;
    background: #161616;
    border-bottom: none !important;
}

/* Prevent horizontal overflow from ScrollTrigger pin-spacer */
.pin-spacer {
    overflow-x: hidden !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 3px);
    overflow: hidden;

    /* remove old mask */
    -webkit-mask-image: none;
    mask-image: none;
}

.hero-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 3px);
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    display: block;
}

#hero-video {
    width: 100%;
    height: calc(100% + 3px);
    object-fit: cover;
    opacity: 1;
    display: block;
}

/* bottom gradient behind text */
.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top,
            #161616 0%,
            rgba(22, 22, 22, 0.98) 20%,
            rgba(22, 22, 22, 0.82) 45%,
            rgba(22, 22, 22, 0.45) 72%,
            rgba(22, 22, 22, 0) 100%);
}

/* this removes the thin yellow line */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 8px;
    background: #161616;
    z-index: 4;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    z-index: 10;
    left: 8%;
    right: 3%;
    bottom: 40px;
    width: auto;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hero-subtext {
    font-size: 36px;
    color: #fff;
    margin-bottom: 0;
    opacity: 1;
    padding: 0;
    transform: none;
    line-height: 1.1;
    padding: 0 0 10px 10px;
}

.hero-main-title {
    font-size: 120px;
    line-height: 0.86;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
    letter-spacing: -3px;
    padding-bottom: 0;
    margin: 0;
    opacity: 1;
    transform: none;
    font-weight: 700;
    line-height: 103px;
}

.hero-main-title span {
    color: #ffffff;
    display: block;
}

/* second section merge */
.intro-section {
    background: #161616 !important;
    margin-top: -2px !important;
    padding: 42px 0 60px;
    border-top: none !important;
    position: relative;
    z-index: 20;
}

/* Intro Section */

.intro-text {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    max-width: 988px;
    line-height: 45px;
    margin: 0 auto;
}

/* Portfolio Section */

.portfolio-header {
    margin-bottom: 2rem;
}

.portfolio-flex {
    display: flex;
    gap: 6rem;
}

.portfolio-left {
    flex: 0 0 350px;
    position: sticky;
    top: 8rem;
    height: fit-content;
}

.portfolio-right {
    flex: 1;
}

.portfolio-left .see-all {
    display: inline-block;
    margin-top: 2rem;
}

.section-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .card-image {
    transform: scale(1.05);
}

.center-link {
    text-align: center;
    margin-top: 4rem;
}

.see-all {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.see-all:hover {
    color: #fff;
}

/* Services List */

.section-title-large {
    font-size: 64px;
    text-align: center;
    margin-bottom: 0px;
}

.services-list {
    border-top: 1px solid var(--glass-border);
}

.services-list-mobile {
    display: none;
}

.service-item {
    padding: 2rem 5%;
    border-bottom: 1px solid #909090;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* overflow: hidden; removed to allow dude to pop out */
}

.service-item:hover {
    background: #FFCE00;
    color: #000;
    z-index: 100;
    /* Ensure hovered item stays above neighbors */
    overflow: visible !important;
    clip-path: inset(-200px 0 0 0);
    /* Override .reveal overflow:hidden, clip bottom but allow top overflow */
}

.service-item:hover h3,
.service-item:hover .service-arrow {
    color: #000;
}

.service-item:hover p {
    color: #000;
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover .service-hover-content {
    opacity: 1;
}

.service-item h3 {
    font-size: 36px;
    margin-bottom: 0.8rem;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #909090;
}

.service-item p {
    color: #ffffff;
    font-size: 16px;
    max-width: 650px;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.service-hover-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover .service-hover-content {
    opacity: 1;
}

.service-char {
    width: 610px;
    height: 313px;
    background: url('../images/dude_whiteboard.png') no-repeat bottom center;
    background-size: contain;
    display: none;
    position: absolute;
    right: 15%;
    bottom: -156px;
    z-index: 101;
    top: auto;
}

.service-item.has-dude:hover .service-char {
    display: block;
    animation: peekUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.service-item.branding:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715109/Branding_logwyv.webp');
}

.service-item.strategy:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715111/Strategy_z8v3qy.webp');
}

.service-item.creative:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715109/Creative_Design_and_Editing_oxb7ar.webp');
}

.service-item.digital-marketing:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715110/Digital_Marketing_gw3xw2.webp');
}

.service-item.media-production:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715111/Media_Production_ngctfu.webp');
}

.service-item.web-dev:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715112/Web_Development_asdjbl.webp');
}

.service-item.advertising:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715109/Advertising_mcsinw.webp');
}

.service-item.marketing:hover .service-char {
    background-image: url('https://res.cloudinary.com/pjlblqur/image/upload/v1784715110/Marketing_gckl9c.webp');
}

@keyframes peekUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.service-arrow {
    display: none;
}

.service-item:hover .service-arrow {
    display: none;
}

/* Brands Grid */

.section-title-medium {
    font-size: 64px;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
}

.brands-section {
    overflow: hidden;
    padding: 3rem 0px;
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.brands-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 120s linear infinite;
    white-space: nowrap;
    padding: 0;
}

.marquee-content.reverse {
    animation: scroll-right 120s linear infinite;
}

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

    to {
        transform: translateX(-25%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-25%);
    }

    to {
        transform: translateX(0);
    }
}

.brand-pill {
    background: #2D2D2D;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    display: flex !important;
    /* Force flex to override .magnetic display */
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    white-space: nowrap;
}

.brand-pill:hover {
    background: #2D2D2D;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
}

.brand-pill span {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Testimonials Section */

.testimonials-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.testimonial-card {
    background: #151515;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 234, 0, 0.1);
}

.test-content {
    flex: 1.5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-quote {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.test-client-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.test-client-brand img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.test-client-brand span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.test-photo-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.test-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,10 a20,20 0 1,0 0,40 a20,20 0 1,0 0,-40' fill='none' stroke='%23FFEA00' stroke-width='4'/%3E%3Cpath d='M15,50 a8,8 0 1,0 0,16 a8,8 0 1,0 0,-16' fill='none' stroke='%23FFEA00' stroke-width='3'/%3E%3Cpath d='M50,15 a6,6 0 1,0 0,12 a6,6 0 1,0 0,-12' fill='none' stroke='%23FFEA00' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: 1;
    opacity: 0.8;
}

.highlight-green {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,10 a20,20 0 1,0 0,40 a20,20 0 1,0 0,-40' fill='none' stroke='%23A3E635' stroke-width='4'/%3E%3Cpath d='M15,50 a8,8 0 1,0 0,16 a8,8 0 1,0 0,-16' fill='none' stroke='%23A3E635' stroke-width='3'/%3E%3Cpath d='M50,15 a6,6 0 1,0 0,12 a6,6 0 1,0 0,-12' fill='none' stroke='%23A3E635' stroke-width='2'/%3E%3C/svg%3E");
}

.test-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.9;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.test-client-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 3;
    color: #fff;
    text-align: center;
}

.test-client-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.test-client-info p {
    font-size: 0.7rem;
    color: #ccc;
    margin: 0;
}

/* CTA Block */

.cta-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 0;
}

.cta-left {
    flex: 1;
}

.cta-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-button {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 120px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    transition: var(--transition);
    line-height: 1;
    font-size: 65px;
    position: relative;
    text-decoration: none;
}

.cta-button:hover {
    color: var(--primary);
    letter-spacing: 0.05em;
    text-shadow: 0 0 50px rgba(255, 234, 0, 0.4);
}

.cta-arrow {
    width: 0.7em;
    height: 0.7em;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-left {
    opacity: 0;
    width: 0;
    margin-right: 0;
}

.arrow-right {
    opacity: 1;
    width: 0.7em;
    margin-left: 1.5rem;
}

.cta-button:hover .arrow-left {
    opacity: 1;
    width: 0.7em;
    margin-right: 1.5rem;
}

.cta-button:hover .arrow-right {
    opacity: 0;
    width: 0;
    margin-left: 0;
}

/* Footer */

.footer-section {
    padding: 50px 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr auto auto auto 1fr;
    gap: 3rem;
    margin-bottom: 0rem;
}

.footer-col h4,
.footer-links h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 400;
    color: #909090 !important;
}

.footer-col p {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #000;
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 234, 0, 0.2);
}

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

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a,
.footer-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    opacity: 0.8;
    height: 1.15em;
    line-height: 1.15;
    overflow: hidden;
    display: inline-block;
    transition: opacity 0.4s ease;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-nav a span,
.footer-links a span {
    display: block;
    line-height: 1.15;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav a span::after,
.footer-links a span::after {
    content: attr(data-text);
    display: block;
    color: var(--primary);
}

.footer-nav a:hover span,
.footer-links a:hover span {
    transform: translateY(-1.15em);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    position: relative;
}

.footer-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    white-space: nowrap;
}

/* Animations & Effects */
/* ==============================
/* Lock scroll while loading/splash screen is active */
body:has(#splash:not(.hide)) {
    overflow: hidden !important;
}

#splash {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #161616;
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: scale(1);
    transition:
        opacity 1s cubic-bezier(0.76, 0, 0.24, 1),
        transform 1.2s cubic-bezier(0.76, 0, 0.24, 1),
        filter 1s ease;
}

#splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.15);
    filter: blur(8px);
}

.splash-video {
    width: 100%;
    max-width: 80vw;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition:
        transform 1.25s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.9s ease,
        filter 1s ease;
}

#splash.hide .splash-video {
    transform: scale(2.8);
    opacity: 0;
    filter: blur(10px);
}



.reveal {
    overflow: hidden;
}

.reveal>* {
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active>* {
    transform: translateY(0);
    color: #f9f9f9;
    font-weight: 500;
}

.magnetic {
    display: inline-block;
    text-align: center;
    padding: 11px 20px 10px 20px;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
}

/* Responsive */

/* About Page Specific Styles */

.about-hero-section {
    padding: 100px 0 4rem;
}

.about-banner-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 4.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.about-intro-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-intro-left h2 .dot {
    color: var(--primary);
}

.about-intro-left h2 .light {
    font-weight: 300;
}

.about-brand-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0 0 8px;
    list-style: none;
}

.about-brand-row li img {
    width: 55px;
}

.about-brand-row li {
    display: flex;
    align-items: center;
}

.about-brand-row .light {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.powered-by {
    font-size: 20px;
    color: #909090 !important;
    margin-top: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.about-desc {
    font-size: 24px;
    line-height: 32px;
    color: #909090 !important;
    font-weight: 400;
    margin: 0;
}

.process-section {
    padding: 4rem 0 4rem;
}

.process-title-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

.process-title-wrapper p {
    color: #ffffff !important;
    font-size: 32px;
}

.process-main-title {
    font-size: 64px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: #ffce00 !important;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}

.process-images {
    position: relative;
}

.process-images img {
    width: 100%;
    height: auto;
}

.process-section ul {
    border: 1px solid #161616;
    padding: 0;
}

.process-section ul li {
    padding: 0;
    border-right: 1px solid #161616;
    border-top: 1px solid #161616;
}

.process-section ul li:first-child,
.process-section ul li:nth-child(2),
.process-section ul li:nth-child(3),
.process-section ul li:nth-child(4) {

    border-top: none;
}

.process-section ul li:last-child,
.process-section ul li:nth-child(4) {
    border-right: none;
}

.process-images h4 {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #161616;
    font-size: 32px;
    font-weight: 500;
    background: #ffffff;
}

.process-row {
    display: flex;
    align-items: center;
    padding: 2.2rem 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-align: left;
}

.process-row:last-child {
    border-bottom: none;
}

.process-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 4.2rem;
    padding-right: 2.8rem;
}

.process-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    width: 110px;
    flex-shrink: 0;
    transition: color 0.4s ease;
    letter-spacing: -0.02em;
}

.process-row:hover .process-number {
    color: var(--primary);
}

.process-info {
    flex-grow: 1;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.process-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.process-row:hover .process-detail {
    color: #ffffff;
}

.bold-copy-section {
    padding: 5rem 0;

    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bold-copy-section:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.bold-copy-text {
    font-size: 70px;
    color: #505050;
    font-size: 128px;
}





.bold-copy-gallery ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.bold-copy-gallery img {
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    transform: rotate3d(1, 1, 1, 15deg);
    /* Hover animation: start small and fade in */
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.bold-copy-gallery ul li:hover img {
    opacity: 1;
    transform: scale(1.2) rotate3d(1, 1, 1, 0deg);
}

/* Improve gallery animation */

.bold-copy-gallery ul li {
    transition: transform 0.4s ease;
    padding: 0;
}

.bold-copy-gallery ul li:hover {
    transform: scale(1.05);
}

.bold-copy-gallery ul li img {
    /* Use opacity and transform for reveal; keep display block for layout */
    display: block;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin: -100px;
}

.bold-copy-gallery ul li:hover img {
    opacity: 1;
    transform: scale(1);
}

/* Animate gallery container on section hover */

.bold-copy-gallery {
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bold-copy-section:hover .bold-copy-gallery {
    animation: fadeInScale 0.5s forwards;
}

.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.insta-section {
    padding: 6rem 0 4rem;
    text-align: center;
}

.insta-title-wrapper {
    margin-bottom: 4rem;
}

.insta-main-title {
    font-size: 64px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: #ffffff;
    letter-spacing: -0.01em;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1.2fr) 0.5fr;
    gap: 1.5rem;
    width: 100%;
}

.insta-grid img {
    width: 65px;
    margin: 0 auto;
}

.insta-post-card {
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    cursor: pointer;
    display: block;
    background: #111;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 1.5rem;
    text-align: center;
}

.insta-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-caption {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-post-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.insta-post-card:hover .insta-img {
    transform: scale(1.05);
}

.insta-follow-card {
    border-radius: 24px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    padding: 20px 10px;
    height: 100%;
}

.insta-follow-card:hover {
    background: #191919;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.insta-follow-card svg {
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-follow-card:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.insta-follow-text {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: normal;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    display: block;
    width: 100%;
}

.bottom-cta-section {
    padding: 8rem 0 6rem;
    background: bottom;
}

.bottom-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-cta-left {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
    font-family: var(--font-heading);
}

.bottom-cta-right {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.bottom-cta-right span {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 0.4s ease;
}

.bottom-cta-arrow {
    font-size: 62px !important;
    font-weight: 500;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    line-height: 1;
}

.bottom-cta-arrow2 {
    font-size: 17px !important;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    line-height: 1;
    width: 30px;
}

.bottom-cta-right:hover span,
.bottom-cta-right:hover .bottom-cta-arrow {
    color: var(--primary);
}

.insta-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
    opacity: 0.7;
}

.works-page-section {
    padding: 120px 0 130px;
    background: #151515;
}

.works-page-title {
    text-align: center;
    margin-bottom: 18px;
}

.works-page-title h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

.works-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.works-filter-btn {
    border: 0;
    outline: 0;
    background: #3f3f3f;
    color: #F9F9F9;
    font-size: 20px;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

.works-filter-btn.active,
.works-filter-btn:hover {
    background: #ffffff;
    color: #111111;
}

.works-grid-wrap {
    width: min(1500px, calc(100% - 32px));
    margin: 0 auto;
}

.works-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
}

.works-card {
    min-height: 322px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    padding: 5px;
    border-radius: 25px;
    background: #161616;
    width: 33.3333%;
}

.works-card:nth-child(3n) {
    border-right: 0;
}

.works-card:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.works-card.empty {
    background: transparent;
    cursor: default;
}

.works-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.35s ease;
}

.works-card:hover .works-card-img {
    opacity: 1;
}

.works-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.works-card:hover::after {
    opacity: 1;
}

.works-card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.3s ease;
}

.works-card:hover .works-card-content {
    opacity: 1;
    transform: translateY(0);
}

.works-card-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin: 0 0 6px;
}

.works-card-category {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0;
}

.works-cta-spacer {
    padding-top: 10px;
}


/* Career 5-slide middle section */

.careers-page {
    background: #151515;
    color: #ffffff;
    min-height: 100vh;
}

.careers-page main .container {
    max-width: 95%;
    margin: 0 auto;
}

.career-test-section {
    padding-top: 140px;
}

.career-test-section .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.career-slide {
    grid-column: 1;
    grid-row: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 40px 0 50px;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.career-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Slide 1 */

.careers-title {
    grid-row: 1;
    grid-column: 1;
    z-index: 10;
    position: relative;
    /* to ensure z-index works if needed */
    pointer-events: none;
    /* so text doesn't steal clicks from anything below, just in case */
}

.careers-title * {
    pointer-events: auto;
    /* let the text be selectable */
}

.careers-title h1 {
    font-size: 64px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -2.4px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
}

.careers-title p {
    color: #8b8b8b;
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 22px;
}

.careers-title p strong {
    color: #c5c5c5;
    font-weight: 600;
}

.career-banner {
    width: 100%;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
    background: #fec20a;
}

.career-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Buttons */

.career-next-btn {
    margin-top: 35px;
    border: 0;
    outline: 0;
    background: #ffffff;
    color: #111111;
    border-radius: 999px;
    padding: 15px 50px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}

.career-next-btn:hover {
    background: #ffcc00;
    border: 1px solid;
}

.quiz-card {
    position: relative;
    width: 100%;
    min-height: 533px;
    border-radius: 7px;
    overflow: hidden;
    background: #ffcc00;
    padding: 40px;
}

.quiz-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/carrer.png") center / cover no-repeat;
    filter: blur(3px);
    transform: scale(0.8);
    opacity: 1;
    width: 100%;
    height: 100%;
}

.quiz-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 204, 0, 0.86);
}

.quiz-card-inner {
    position: relative;
    z-index: 2;
    min-height: 355px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quiz-card-inner {
    min-height: 256px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #161616;
    font-size: 40px;
    margin-bottom: 25px;
}

.back-arrow {
    font-size: 40px;
    cursor: pointer;
}

.quiz-question {
    color: #111111;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.quiz-result-text {
    color: #111111;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -1.6px;
    margin-top: 62px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111111;
    font-size: 24px;
    cursor: pointer;
}

.quiz-option input {
    width: 20px;
    height: 20px;
    accent-color: #111111;
    background: transparent;
}

/* Jobs */

.jobs-section {
    padding-top: 90px;
    padding-bottom: 50px;
}

.jobs-heading h2 {
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: #ffffff;
}

.jobs-list {
    width: 100%;
}

.job-item {
    border-top: 1px solid #343434;
}

.job-item:last-child {
    border-bottom: 1px solid #343434;
}

.job-trigger {
    width: 100%;
    min-height: 74px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    padding: 20px 0 25px;
}

.job-title {
    display: block;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 4px;
}

.job-meta {
    display: block;
    color: #777777;
    font-size: 18px;
    margin-bottom: 5px;
}

.job-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #fff;
}

.job-item.active .job-icon {
    transform: rotate(90deg);
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.job-content-inner {
    padding-bottom: 30px;
}

.job-apply-btn {
    background: #edbe00;
    color: #000;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-bottom: 24px;
    transition: background 0.3s ease;
    display: block;
    width: 140px;
}

.job-apply-btn:hover {
    background: #e6d300;
}

.job-exp {
    font-size: 18px;
    color: #fff !important;
    margin-bottom: 16px !important;
}

.job-role-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff !important;
    margin-bottom: 8px !important;
}

.job-desc {
    font-size: 18px;
    color: #888 !important;
    line-height: 20px;
    margin-bottom: 0 !important;
}

/* Apply Modal Overlay */
.apply-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.apply-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.apply-modal {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 680px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.apply-modal-overlay.active .apply-modal {
    transform: translateY(0);
}

.apply-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.apply-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.apply-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.apply-form-group label {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 8px;
}

.apply-form-group input,
.apply-form-group textarea {
    background: #1e1e1e;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.apply-form-group input:focus,
.apply-form-group textarea:focus {
    border-color: #555;
}

.apply-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.btn-cancel {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #3a3a3a;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-cancel:hover {
    background: #2a2a2a;
}

.btn-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #eee;
}

/* Success Modal */
.success-modal {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.success-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 234, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-modal h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.success-modal p {
    color: #aaa;
    font-size: 14px;
}



/* Contact Form Block Only */

.contact {
    width: 100%;
    max-width: 610px;
    padding: 130px 0 0 !important;
}



.careers-page>main>.contact {
    margin: 0 auto 50px !important;
    max-width: 860px;
}

.careers-page>main>.contact h1 {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}

.contact h1 {
    margin-bottom: 40px;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -2.4px;
    color: #ffffff;
}

.contact-form {
    width: 100%;
    padding: 0 46px;
}

.input-line {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 12px;
    min-height: 35px;
}

.input-line label,
.message-box label {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    white-space: nowrap;
}

.input-line input,
.input-line select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 20px;
    border-bottom: 1px solid #3c3c3c;
    padding: 13px 0 13px 8px;
}

/* Prevent browser autofill white background */
.input-line input:-webkit-autofill,
.input-line input:-webkit-autofill:hover,
.input-line input:-webkit-autofill:focus,
.input-line input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input-line input::placeholder,
.message-box textarea::placeholder {
    color: #777777;
}

.input-line select {
    appearance: none;
    color: #ffffff;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23777777' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.input-line select option {
    background: #151515;
    color: #ffffff;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    border-bottom: 1px solid #3c3c3c;
    padding: 13px 20px 13px 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23777777' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    user-select: none;
    transition: border-bottom-color 0.3s ease;
}

.custom-select-trigger.open {
    border-bottom-color: #FFCE00;
}

.custom-options-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #151515;
    border: 1px solid #3c3c3c;
    border-top: none;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: 250px;
    overflow-y: auto;
}

.custom-options-container.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    padding: 12px 16px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.custom-option:hover,
.custom-option.selected {
    background: #FFCE00;
    color: #161616;
}

.message-box {
    margin-top: 14px;
}

.message-box label {
    display: block;
    margin-bottom: 8px;
}

.message-box textarea {
    width: 100%;
    height: 140px;
    padding: 15px;
    resize: none;
    border: 1px solid #3c3c3c;
    border-radius: 7px;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 20px;
    line-height: 1.5;
}

.input-line:focus-within {
    border-color: #777777;
}

.message-box textarea:focus {
    border-color: #777777;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 30%;
    margin-top: 20px;
}

.form-actions button {
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 7px;
    background: #f4f4f4;
    color: #111111;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.form-actions button:hover {
    background: #ffde00;
}

.form-actions p {
    color: #8d8d8d;
    font-size: 20px;
    line-height: 1.35;
}

.form-actions a {
    color: #ffffff;
    text-decoration: none;
}



.blogs-page {
    min-height: 100vh;
    background: #151515;
    color: #ffffff;
}

.blogs-section {
    padding: 120px 0 70px;
}

.blogs-container {
    width: 100%;
    max-width: 1510px;
    margin: 0 auto;
    padding: 0 34px;
}

.blogs-heading {
    margin: 0 0 58px;
    text-align: center;
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2.8px;
    color: #ffffff;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 70px;
    row-gap: 62px;
}

.blog-card {
    width: 100%;
}

.blog-image {
    display: block;
    width: 100%;
    height: 244px;
    border-radius: 7px;
    background: #d9d9d9;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.blog-image:hover {
    background: #eeeeee;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.3;
}

.blog-card h2 {
    margin: 10px 0 8px;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
    font-size: 20px;
}

.blog-card h2 a:hover {
    color: #ffcc00;
}

.blog-card p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.blog-card p a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.blog-card p a:hover {
    color: #ffcc00;
}

/* Responsive */

@media (max-width: 1200px) {
    .blogs-grid {
        column-gap: 42px;
    }

    .blog-image {
        height: 210px;
    }
}

@media (max-width: 992px) {
    .blogs-heading {
        font-size: 42px;
        margin-bottom: 44px;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 36px;
        row-gap: 50px;
    }

    .blog-image {
        height: 220px;
    }
}



.blog-detail-page {
    min-height: 100vh;
    background: #151515;
    color: #ffffff;
    padding: 100px 0 0 0;
}

.blog-detail-section {
    padding: 30px 0 70px;
}

.blog-detail-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    max-width: 1200px;
}

.blog-detail-header {
    margin-bottom: 12px;
}

.blog-detail-header h1 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.7px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
}

.blog-detail-image {
    width: 100%;
    height: 360px;
    margin: 8px 0 18px;
    border-radius: 4px;
    background: #d9d9d9;
}

.blog-small-intro {
    margin: 20px 0 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}



.blog-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1.1px;
}

.blog-content p {
    margin: 0 0 16px;
    color: #C2C2C2;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.blog-detail-cta {
    margin: 38px 0 56px;
    text-align: center;
}

.blog-detail-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 28px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.blog-detail-cta a:hover {
    background: #ffcc00;
}


.related-title {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    width: 100%;
}

.related-image {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 4px;
    background: #d9d9d9;
    text-decoration: none;
}

.related-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    color: #8a8a8a;
    font-size: 7px;
    line-height: 1.3;
}

.related-card h3 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 400;
}

.related-card h3 a {
    color: inherit;
    text-decoration: none;
}

.related-card h3 a:hover {
    color: #ffcc00;
}

/* ==============================
   Client Says Section
============================== */

.client-says-section {
    background: #111;
    color: #fff;
    padding: 70px 0 85px;
    overflow: hidden;
    text-align: center;
    /* ensure inner content centered */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-says-title {
    text-align: center;
    color: #fff;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.6px;
    margin: 0 0 50px;
}

.client-says-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 0 28px 12px;
    scroll-snap-type: x mandatory;
    justify-content: center;
    /* center items */
    margin: 0 auto;
    /* center container */
    width: 100%;
    max-width: 100%;
}

.client-says-row::-webkit-scrollbar {
    display: none;
}

.client-video-card {
    position: relative;
    flex: 0 0 330px;
    height: 430px;
    border-radius: 6px;
    overflow: hidden;
    background: #d6d6d6;
    border: 1px solid rgba(255, 255, 255, 0.08);
    scroll-snap-align: start;
    margin: 0 auto;
    /* center each card */
}

.client-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-sound {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    backdrop-filter: blur(8px);
}

.client-info-pill {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #151515;
    border-radius: 999px;
    min-height: 44px;
    padding: 7px 13px 7px 7px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.client-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #20e37a, #ffffff);
    display: block;
}

.client-icon.purple {
    background: url(../images/hotstar.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.client-info-pill h4 {
    margin: 0;
    color: #fff;
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
}

.client-info-pill p {
    margin: 2px 0 0;
    color: #bfbfbf;
    font-size: 8px;
    line-height: 1.2;
}


/* ==============================
   Short Story Long Section
============================== */

.short-story-section {
    color: #fff;
    padding: 35px 0 90px;
}

.short-story-title {
    text-align: center;
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.2px;
    margin: 0 0 40px;
}

.short-story-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.story-card {
    display: block;
    overflow: hidden;
}

.story-img {
    display: block;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 13px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.story-img {
    display: block;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 13px;
    overflow: hidden;
    position: relative;
}

.story-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.1);
}

.story-img {
    overflow: hidden;
}

.story-img img {
    transition: transform 0.35s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.1);
}

.story-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.story-card h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.story-see-all {
    text-align: center;
    margin-top: 22px;
}

.story-see-all a {
    color: #ffffff !important;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-see-all a:hover {
    color: #9a9a9a;
}

/* ==============================
   Bottom CTA Section
============================== */

.bottom-cta-section {
    padding: 0;
}

.bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 30px;
    gap: 40px;
}

.bottom-cta-small {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.bottom-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    flex-shrink: 0;
}


.reveal span.light {
    justify-content: center;
    display: inline-block;
    align-content: center;
    font-size: 45px;
    padding: 0px 0 0 5px;
    line-height: 42px;
    color: #ffffff;
}

.logo-india {
    max-width: 130px;
    align-items: flex-end;
}

.mobile-menu-overlay {
    display: none;
}

/* --- Asian Cinemas Case Study Page --- */
.cs-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.cs-asian-hero {
    padding: 10rem 0 1rem;
}

.cs-asian-header {
    margin-bottom: 1rem;
}

.cs-asian-title {
    font-size: 64px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.cs-asian-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cs-asian-tag {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-asian-info-grid {
    display: grid;
    grid-template-columns: 7fr 10fr 7fr;
    gap: 1.5rem;
    padding-top: 1rem;
}

.cs-asian-info-col h4 {
    font-size: 24px;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cs-asian-info-col p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.cs-gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.cs-gallery-track::-webkit-scrollbar {
    display: none;
}

.cs-gallery-item {
    flex: 0 0 calc((100% - 3rem) * 7 / 24);
    height: 400px;
    background: #d9d9d9;
    border-radius: 8px;
}

.cs-gallery-item-narrow {
    flex: 0 0 calc(((100% - 3rem) * 3 / 24) - 1.5rem);
}


.cs-section-label {
    font-size: 36px;
    color: #909090 !important;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.cs-section-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    color: #909090;
}

.cs-text-content {
    font-size: 18px;
    line-height: 1.8;
    color: #a3a3a3;
}

.cs-text-content p {
    margin-bottom: 10px;
    color: #C2C2C2;
}

.cs-text-content p span {
    font-weight: 600;
    color: #F9F9F9;
}

.cs-text-content h3 {
    padding-top: 10px;
}

.cs-text-content h4 {
    padding-bottom: 5px;
    padding-top: 10px;
}

.cs-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.cs-asian-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cs-asian-list li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
    color: #C2C2C2;
    font-size: 18px;
}

.cs-impact-list {
    display: flex;
    flex-direction: column;
}

.cs-impact-list p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    width: 100%;
}

.cs-impact-list strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.cs-impact-list h4 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.cs-back-to-top {
    background: #2D2D2D;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-back-to-top:hover {
    background: #fff;
    color: #000;
}

.footer-socials a svg {
    font-size: 20px;
    width: 25px;
}

.btn-contact {
    padding: 10px 15px !important;
    font-size: 20px;
}

.blog-container h2 {
    margin-top: 10px;
}

.mobile-about {
    display: none;
}

.mobile-we-clicked {
    display: none;
}

.slick-slide img {
    border-radius: 16px;
}

.intro-section h2 {
    padding: 60px 0;
    color: #909090 !important;
}

.intro-section h2 i {
    color: #FFFFFF !important;
}

.branding {
    position: relative;
    z-index: 9;
}

.strategy {
    position: relative;
    z-index: 10;
}

.strategy {
    position: relative;
    z-index: 99;
}

.blog-detail-images img {
    border-radius: 15px;
}

.cs-slick-slider .slick-prev,
.cs-slick-slider .slick-next {
    display: none !important;
}

.blog-card img {
    border-radius: 5px;
}

.quiz-progress svg {
    width: 45px;
}

.cs-content-wrapper p {
    font-size: 18px;
    color: #C2C2C2 !important;
    font-weight: 500 !important;
    padding: 0 0 10px;
}

/* ==============================
   Bottom CTA - Final Hover Like Video
============================== */

.bottom-cta-section {
    padding: 0;
    background: #161616;
    overflow: hidden;
}

.bottom-cta-section .container {
    max-width: 100%;
    padding: 0 34px;
}

.bottom-cta {
    height: 265px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left text - always constant */
.bottom-cta-small {
    flex: 0 0 38%;
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

/* Right side CTA area */
.bottom-cta-link.magnetic {
    position: relative;
    flex: 1;
    height: 160px;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    color: #999999;
    text-decoration: none;
}

/* Say less fixed */
.bottom-cta-link>span {
    position: absolute;
    left: 44%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    font-size: clamp(72px, 7vw, 128px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -2px;
    color: currentColor;
    white-space: nowrap;
    padding: 0;
    transition: all 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Arrow normal state - right side */
.bottom-cta-link .bottom-cta-arrow {
    position: absolute;
    left: calc(100% - 120px);
    top: 50%;
    width: 120px !important;
    height: 120px !important;
    transform: translateY(-50%);
    color: currentColor;
    opacity: 1;
    transition: color 0.35s ease;
}

/* Match arrow stroke weight to font-weight: 500 of "Say less" text */
.bottom-cta-link .bottom-cta-arrow path {
    stroke-width: 1.5;
}

/* Hover color */
.bottom-cta-link:hover {
    color: var(--primary);
}

/* Say less should NOT move on hover */
.bottom-cta-link:hover>span {
    left: 45%;
    transform: translate(-50%, -50%) !important;
    padding: 0 0 0 160px;
}

/* Hover arrow position - left side of Say less */
.bottom-cta-link:hover .bottom-cta-arrow {
    left: calc(44% - 378px);
    animation: arrowComeLeftToRight 0.65s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Arrow comes from left to right */
@keyframes arrowComeLeftToRight {
    0% {
        transform: translate(-80px, -50%);
        opacity: 0;
    }

    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bottom-cta-section .container {
        padding: 0 18px;
    }

    .bottom-cta {
        height: auto;
        padding: 40px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bottom-cta-small {
        flex: unset;
        font-size: 20px;
    }

    .bottom-cta-link.magnetic {
        width: 100%;
        height: 95px;
    }

    .bottom-cta-link>span {
        left: 58%;
        font-size: clamp(42px, 13vw, 72px);
    }

    .bottom-cta-link .bottom-cta-arrow {
        width: 72px !important;
        height: 72px !important;
        left: calc(100% - 72px);
    }

    .bottom-cta-link:hover>span {
        left: 58%;
    }

    .bottom-cta-link:hover .bottom-cta-arrow {
        left: calc(58% - 145px);
    }
}

.story-card img {
    border-radius: 5px;
}

.about {
    padding: 30px 0;
}

.works-card:hover {
    background-color: #161616;
}

/* ==============================
           Blossom Carousel - Collins Style
        ============================== */

.blossom-carousel-section {
    width: 100%;
    overflow: hidden;
    padding-top: 2rem;
}

.blossom-carousel {
    display: flex !important;
    align-items: center;
    gap: 28px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 24px calc((100vw - 1300px) / 2);
    scroll-snap-type: none;
    scroll-behavior: smooth;
    cursor: grab;
    scrollbar-width: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.blossom-carousel::-webkit-scrollbar {
    display: none;
}

.blossom-carousel.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.blossom-carousel .asset,
.blossom-carousel .explore-gallery {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
    height: 420px;
}

.blossom-carousel .asset img,
.blossom-carousel .asset video {
    height: 100%;
    width: auto;
    display: block;
    pointer-events: none;
}

.explore-gallery {
    width: min(480px, 36vw);
    aspect-ratio: 1 / 1;
    position: relative;
}

.explore-gallery__grid {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 14px;
}

.explore-gallery__stack {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.explore-gallery__stack .img {
    overflow: hidden;
    background: #111;
    border-radius: 14px;
}

.explore-gallery__stack .img-large {
    grid-row: span 2;
}

.explore-gallery__stack img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.explore-btn-md {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    border: none;
    outline: none;
    background: #ffffff;
    color: #161616;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.35s ease, transform 0.35s ease;
}

.explore-btn-md:hover {
    background: var(--primary, #FFCE00);
    transform: translateX(-50%) translateY(-4px);
}

.explore-btn-md svg {
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px;
}

.explore-btn-md svg path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .blossom-carousel {
        gap: 16px;
        padding: 0 18px 18px;
    }

    .blossom-carousel .asset,
    .blossom-carousel .explore-gallery {
        height: 300px;
    }

    .explore-gallery {
        width: 300px;
    }

    .explore-btn-md {
        font-size: 13px;
        padding: 12px 16px;
    }
}

.insta-video-link {
    position: relative;
    display: block;
    height: 100%;
}

.insta-video-icon {
    position: absolute;
    top: 50%;
    right: 0;
    width: 55px;
    height: 55px;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    left: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}

.insta-video-icon svg {
    width: 100%;
    height: 100%;
}

#moreCaseStudiesCarousel .asset {
    height: auto;
}

#moreCaseStudiesCarousel .asset img {
    object-fit: contain !important;
}

.thumbnail-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.thumbnail-video-icon svg {
    width: 100%;
    height: 100%;
}

.works-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.mobile-comic-scroll {
    display: none;
}

.mobile-comic {
    display: block;
    height: auto;
    pointer-events: none;
}

.social-media-heading {
    padding: 20px 0 20px;
}

.word-2 {
    padding: 0px 0 0 75px;
    margin: -13px 0 0px;
}

.word-3 {
    padding: 0 0 0 33px;
}

.swipe-indicator {
    display: none;
}

.film-showcase {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.film-showcase[hidden] {
    display: none !important;
}

.film-featured {
    position: relative;
    width: min(900px, 100%);
    margin: 0 auto 22px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
}

.film-featured iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.film-thumbnails-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.film-thumbnail-track {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 0 10px;
    overscroll-behavior-inline: contain;
}

.film-thumbnail-track::-webkit-scrollbar {
    display: none;
}

.film-thumbnail {
    position: relative;
    flex: 0 0 clamp(160px, 23vw, 280px);
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    background: #222;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.film-thumbnail:hover {
    transform: translateY(-3px);
}

.film-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.film-thumbnail::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.film-thumbnail::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: calc(50% + 2px);
    transform: translate(-50%, -50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
    pointer-events: none;
}

.film-scroll-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.film-scroll-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.film-scroll-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.works-grid-wrap.film-mode .works-grid {
    display: none !important;
}

.word-3 b {
    font-size: 60px;
    color: #ffce00;
}

.word-2 b {
    padding: 0 0 0 7px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .film-showcase {
        width: calc(100% - 24px);
    }

    .film-featured {
        margin-bottom: 14px;
        border-radius: 4px;
    }

    .film-thumbnail-track {
        gap: 8px;
    }

    .film-thumbnail {
        flex-basis: 155px;
    }

    .film-scroll-btn {
        display: none;
    }
}