/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: #1a2027;
    font-family: 'Khand', sans-serif;
    color: #fff;

}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* ===== LINE BREAK HELPERS ===== */
.mobile-br {
    display: none;
}

.desktop-br {
    display: block;
}

/* ===== MOBILE HEADER LOGO ===== */
.mobile-logo {
    display: none;
}

/* ===== HAMBURGER (mobile only) ===== */
.hamburger {
    display: none;
    /* position: fixed;
    top: 24px;
    right: 24px; */
    z-index: 200;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #161c27;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.open span {
    background: #f5ff8c;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(26, 32, 39, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}


.nav-overlay-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-overlay-link {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s;
}

.nav-overlay-link:hover,
.nav-overlay-link.active {
    color: #f5ff8c;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

}



.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* dark vignette overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(26, 32, 39, 0.15) 0%, rgba(26, 32, 39, 0.75) 60%, rgba(26, 32, 39, 0.92) 100%);
    z-index: 1;
}

/* ===== CENTERED LOGO (absolute center of screen) ===== */
.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: clamp(200px, 22vw, 360px);
    max-width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#animatedLogo {
    width: 100%;
    height: auto;
    display: block;
    /* filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45)); */
    transition: transform 0.3s ease;
}

#animatedLogo:hover {
    transform: scale(1.02);
}

#animatedLogo #background {
    display: none;
}

#animatedLogo #base polygon {
    fill: #f5ff8c;
    stroke: #1a2027;
    stroke-width: 3px;
    stroke-linejoin: round;
}

#animatedLogo rect {
    fill: #f5ff8c;
    /* stroke: #f5ff8c; */
    stroke-width: 3px;
    stroke-linejoin: round;
    transition: fill 0.3s ease;
}

#animatedLogo #outline-group {
    display: block;
}

#animatedLogo #outline-group polygon {
    fill: #1A2027;
    stroke: #1A2027;
    stroke-width: 3px;
    stroke-linejoin: round;
}

#animatedLogo #labels {
    display: none !important;
}

@keyframes bassFlash {
    0% {
        fill: #f5ff8c;
        /* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)); */
    }

    100% {
        fill: #f5ff8c;
        filter: none;
    }
}

.bass-hit {
    animation: bassFlash 0.25s ease-out;
}

/* ===== BOTTOM AREA ===== */
.hero-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 2rem;
    gap: 1.4rem;
}

/* ===== SCROLL DOWN TEXT ===== */
.scroll-down {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f5ff8c;
    animation: floatY 2.4s infinite ease-in-out;
}

/* ===== KEYFRAMES ===== */
@keyframes eqBounce {
    0% {
        height: 12%;
    }

    100% {
        height: 92%;
    }
}

@keyframes floatY {

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

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

/* ===== RESPONSIVE: MOBILE (max-width 768px) ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero-logo img {
        width: clamp(180px, 55vw, 300px);

    }

    .hero-bottom {
        padding: 0 1rem 1.25rem;
        gap: 1rem;
    }

    .player {
        max-width: 100%;
    }

    .player-inner {
        padding: 0.7rem 0.85rem;
        gap: 0.75rem;
    }

    .player-art {
        width: 48px;
        height: 48px;
    }

    .player-title {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .player-artist {
        font-size: 0.78rem;
    }

    .player-play {
        width: 36px;
        height: 36px;
    }

    .play-icon {
        font-size: 0.75rem;
    }

    .scroll-down {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

/* ===== RESPONSIVE: very short screens ===== */
@media (max-height: 550px) {
    .hero-logo img {
        width: 160px;
    }

    .hero-bottom {
        gap: 0.6rem;
        padding-bottom: 0.75rem;
    }
}

/* ==========================================================================
   NUMBERS SECTION
   ========================================================================== */
.numbers-section {
    min-height: 100vh;
    /* background: rgba(245, 255, 140, 1);
     */
    background: #F5FF8C;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 4rem;
}


.numbers-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.headline {
    font-family: 'Khand', sans-serif;
    font-size: clamp(5rem, 10vw, 11rem);
    font-weight: 700;
    line-height: 0.82;
    text-align: center;
    color: rgba(26, 30, 39, 1);
    text-transform: uppercase;
    letter-spacing: -4px;
}

.stat {
    position: absolute;
    padding: 1rem 1.5rem;
    transform: rotate(-5deg);
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 1px;
    text-align: center;
}

.stat:hover {
    transform: rotate(0deg) scale(1.08);
}

.stat span {
    display: block;
    font-family: 'Khand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat p {
    font-family: 'Khand', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Green Card */
.stat-1 {
    background: rgba(31, 146, 112, 1);
    color: #fff;
    left: 15%;
    top: 60%;
}

/* White Card */
.stat-2 {
    background: #fff;
    color: rgba(26, 30, 39, 1);
    right: 15%;
    top: 5%;
    transform: rotate(-4deg);
}

/* Purple Card */
.stat-3 {
    background: rgba(174, 159, 255, 1);
    color: rgba(26, 30, 39, 1);
    right: 18%;
    bottom: 10%;
    transform: rotate(6deg);
}


@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }

    .mobile-br {
        display: block;
    }

    .nav {
        position: fixed;
        top: 25px;
        left: 12px;
        right: 12px;

        display: flex;
        justify-content: space-between;
        align-items: center;

        height: 45px;
        padding: 0 14px;

        background: rgba(26, 32, 39, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        /* border: 1px solid rgba(245, 255, 140, 0.12); */
        border-radius: 20px;

        z-index: 1000;
    }

    .mobile-logo {
        display: block;
        /* position: fixed;
        top: 10px;
        left: 24px; */
        z-index: 200;
        mix-blend-mode: difference;
    }

    .mobile-logo img {
        height: 28px;
        width: auto;
        /* filter: invert(1) grayscale(1) brightness(2); */
    }

    .hamburger {
        display: flex;
        mix-blend-mode: difference;
    }

    .hamburger span {
        background: #ffffff !important;
    }

    .numbers-section {
        padding: 6rem 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .numbers-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .headline {
        font-size: 17.5vw;
        line-height: 0.8;
        letter-spacing: -2px;
        margin-bottom: 2rem;
        text-align: center;
    }

    .stat {
        position: absolute;
        padding: 0.5rem 0.8rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        z-index: 10;
        min-width: 10vw;
        text-align: center;
    }

    .stat span {
        font-size: 1.2rem !important;
        font-weight: 700;
        line-height: 1;
        display: block;
    }

    .stat p {
        font-size: 0.6rem !important;
        font-weight: 700;
        letter-spacing: 0.5px;
        line-height: 1.1;
        margin-top: 2px;
        white-space: nowrap;
    }

    /* White Card (stat-2) */
    .stat-2 {
        background: #ffffff !important;
        color: #161c27 !important;
        top: 15% !important;
        right: 2% !important;
        left: auto !important;
        bottom: auto !important;
        transform: rotate(6deg) !important;
    }

    /* Purple Card (stat-1) */
    .stat-1 {
        background: #ae9fff !important;
        color: #161c27 !important;
        top: 45% !important;
        left: 2% !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(-8deg) !important;
    }

    /* Dark Card (stat-3) */
    .stat-3 {
        background: #161c27 !important;
        color: #f5ff8c !important;
        bottom: 12% !important;
        right: 4% !important;
        left: auto !important;
        top: auto !important;
        transform: rotate(6deg) !important;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-banner {
    min-height: 100vh;
    background: #1F9270;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
    position: relative;
}

.services-banner .section-title {
    color: #F5FF8C;
    font-size: clamp(4.5rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.75;
    text-transform: uppercase;
    margin-bottom: -15px;
    letter-spacing: -3px;
    z-index: 1;
}

.services-banner .service-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    margin: -10px auto;
    /* negative margin to create overlapping stack */
    transform-origin: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-banner .service-row span {
    font-size: clamp(2rem, 5.8vw, 5rem);
    font-weight: 700;
    line-height: 0.85;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: -1px;
}

.services-banner .dark {
    background: #1A2027;
}

.services-banner .dark span {
    color: #AE9FFF;
}

.services-banner .light {
    background: #F5FF8C;
}

.services-banner .light span {
    color: #1A2027;
}

/* Individual widths and rotations matching the design reference */
.services-banner .service-row:nth-of-type(1) {
    /* width: min(85vw, 1200px); */
    transform: rotate(-3.5deg);
    z-index: 2;
}

.services-banner .service-row:nth-of-type(2) {
    /* width: min(80vw, 1100px); */
    transform: rotate(1.5deg);
    z-index: 3;
}

.services-banner .service-row:nth-of-type(3) {
    /* width: min(90vw, 1260px); */
    transform: rotate(-2deg);
    z-index: 4;
}

.services-banner .service-row:nth-of-type(4) {
    /* width: min(97vw, 1420px); */
    transform: rotate(1deg);
    z-index: 5;
}

/* Mobile responsive adjustments for Services */
@media (max-width: 768px) {
    .services-banner {
        padding: 80px 15px;
    }

    .services-banner .section-title {
        font-size: 17.5vw;
        margin-bottom: 5px;
        letter-spacing: -2px;
    }

    .services-banner .service-row {
        width: 95% !important;
        padding: 12px 0;
        margin: -4px auto;
    }

    .services-banner .service-row span {
        white-space: normal;
        text-align: center;
        line-height: 0.95;
        font-size: clamp(2.5rem, 5vw, 2.5rem);
    }
}

/* ==========================================================================
   ARTIST SHOWCASE SECTION
   ========================================================================== */
.artist-showcase {
    min-height: 100vh;
    background: #161c27;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-text {
    position: absolute;
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ae9fff;
    font-size: clamp(5rem, 10vw, 11rem);
    line-height: 0.8;
    text-align: center;
    z-index: 1;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    z-index: 2;
    padding: 0 70px;
    margin-top: 2rem;
}

.poster-stack-wrapper {
    position: relative;
    width: 320px;
    height: 470px;
}

.poster-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) rotate(-3deg);
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.5s;
    z-index: 1;
}

.poster-stack.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(22, 28, 39, 0.85);
    border: 2px solid rgba(245, 255, 140, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: #f5ff8c;
    transition: fill 0.3s ease;
}

.carousel-arrow:hover {
    background: #f5ff8c;
    border-color: #f5ff8c;
}

.carousel-arrow:hover svg {
    fill: #161c27;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.poster {
    position: absolute;
    inset: 0;
}

.poster-back {
    background: #ae9fff;
    transform: rotate(5deg);
}

.poster-middle {
    background: #1f9270;
    transform: rotate(-3deg);
}

.poster-main {
    background: #1f9270;
    padding: 14px;
    transform: rotate(1deg);
}

.poster-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.poster-header {
    display: block;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.poster-content img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.poster-footer {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
}

.poster-footer h3 {
    color: #f5ff8c;
    font-family: 'Khand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.poster-footer p {
    color: #f5ff8c;
    font-family: 'Khand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.poster-back.green,
.poster-main.green {
    background: #1f9270;
}

.poster-middle.green {
    background: #ae9fff;
}

.poster-back.dark,
.poster-main.dark {
    background: #1a2027;
}

.poster-middle.dark {
    background: #1f9270;
}

.poster-back.purple,
.poster-main.purple {
    background: #ae9fff;
}

.poster-middle.purple {
    background: #1f9270;
}

.see-more {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #ae9fff;
    border: none;
    padding: 8px 24px;
    font-family: 'Khand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #161c27;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3;
    margin: 0;
}

.see-more:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .artist-showcase {
        padding: 60px 20px;
    }

    .artist-showcase .bg-text {
        font-size: 17.5vw;
        line-height: 0.8;
        letter-spacing: -2px;
        margin-bottom: 2rem;
        text-align: center;
    }

    .carousel-container {
        padding: 0 50px;
        margin-top: 1rem;
    }

    .poster-stack-wrapper {
        width: 270px;
        height: 400px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .poster-header {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .poster-content img {
        height: 200px;
    }

    .poster-footer h3 {
        font-size: 1.8rem;
    }

    .poster-footer p {
        font-size: 0.95rem;
    }

    .artist-showcase .see-more {
        position: absolute;
        bottom: 20px;
        right: 20px;
        padding: 6px 16px;
        font-size: 1.2rem;
    }
}

@media (max-width: 380px) {
    .carousel-container {
        padding: 0 40px;
    }

    .poster-stack-wrapper {
        width: 220px;
        height: 330px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .poster-header {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .poster-content img {
        height: 180px;
    }

    .poster-footer h3 {
        font-size: 1.4rem;
    }

    .poster-footer p {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   FOUNDERS SECTION
   ========================================================================== */
.founders {
    background: #f5ff8c;
    min-height: 100vh;
    padding: 80px 20px;
    overflow: hidden;
}

.founders .container {
    max-width: 1200px;
    margin: auto;
}

.founders .title {
    font-family: 'Khand', sans-serif;
    color: #1a1e27;
    text-align: center;
    font-size: clamp(5rem, 9vw, 9rem);
    font-weight: 700;
    line-height: 0.82;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.founders .founder-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.founders .founder {
    position: relative;
}

.founders .founder-left {
    transform: rotate(-2deg);
    z-index: 1;
}

.founders .founder-right {
    margin-left: -40px;
    transform: rotate(2deg);
    z-index: 2;
}

.founders .image-box {
    width: 420px;
    height: 320px;
    padding: 12px;
    border: 4px solid #1a1e27;
}

.founders .image-box.green {
    background: #1f9270;
}

.founders .image-box.purple {
    background: #ae9fff;
}

.founders .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 4px solid #1a1e27;
}

.founders .name {
    position: absolute;
    bottom: -25px;
    left: 12px;
    right: auto;
    padding: 2px 14px;
    font-family: 'Khand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1e27;
    border: 4px solid #1a1e27;
    z-index: 10;
}

.founders .founder-right .name {
    left: 12px;
    right: auto;
}

.founders .green-tag {
    background: #1f9270;
    color: #f5ff8c;
}

.founders .purple-tag {
    background: #ae9fff;
    color: #1a1e27;
}

.founders .description {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-family: 'Khand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #1a1e27;
}

/* Responsive adjustments for Founders section */
@media (max-width: 768px) {
    .founders {
        padding: 50px 15px;
    }

    .founders .founder-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        margin-bottom: 60px;
    }

    .founders .founder {
        width: auto;
    }

    .founders .founder-left {
        transform: rotate(-3deg);
    }

    .founders .founder-right {
        margin-left: 0;
        transform: rotate(3deg);
    }

    .founders .image-box {
        width: 300px;
        height: 230px;
        border: 4px solid #1a1e27;
    }

    .founders .name {
        font-size: 1.8rem;
        bottom: -20px;
        left: 10px;
        right: auto;
        border: 3px solid #1a1e27;
        padding: 1px 10px;
    }

    .founders .founder-right .name {
        left: 10px;
        right: auto;
    }

    .founders .description {
        font-size: 1.25rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .founders .title {
        font-size: 17.5vw;
    }
}

/* ==========================================================================
   ORIGINALS SECTION
   ========================================================================== */
.originals-section {
    min-height: 100vh;
    background: #1a2027;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.originals-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.originals-section .title {
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #f5ff8c;
    font-size: clamp(5rem, 9vw, 10rem);
    line-height: 0.8;
    letter-spacing: -2px;
}

.originals-section .subtitle {
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    color: #1f9270;
    font-size: clamp(3rem, 2vw, 2.3rem);
    text-transform: uppercase;
    line-height: 0.8;
    /* margin-top: 1rem; */
}

.originals-section .dive-btn {
    margin-top: 1.2rem;
    background: #f5ff8c;
    color: #1a2027;
    text-decoration: none;
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 2vw, 2.5rem);
    padding: 0.1rem 1.4rem;
    transform: rotate(-3deg);
    transition: 0.3s ease;
    position: absolute;
    right: 40%;
    bottom: -10%;
}

.originals-section .dive-btn:hover {
    transform: rotate(0deg) scale(1.05);
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
    background: #1F9270;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
    font-family: 'Khand', sans-serif;
}

.testimonial-section .testimonial-title {
    color: #F5FF8C;
    text-align: center;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: .9;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: 'Khand', sans-serif;
}

.testimonial-section .cards-wrapper {
    position: relative;
    width: min(900px, 90vw);
    height: 700px;
}

.testimonial-section .review-card {
    position: absolute;
    padding: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.testimonial-section .review-card h3 {
    font-family: 'Khand', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.0;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-section .review-card h3 span {
    font-size: .7em;
    opacity: 0.8;
}

.testimonial-section .review-card p {
    font-family: 'Khand', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 600;
}

/* Card 1 */
.testimonial-section .card-1 {
    width: 50%;
    background: #F5FF8C;
    color: #1A2027;
    top: 0;
    left: 50%;
    transform: translateX(-35%) rotate(8deg);
    z-index: 1;
}

/* Card 2 */
.testimonial-section .card-2 {
    width: 50%;
    background: #AE9FFF;
    color: #1A2027;
    top: 130px;
    left: 10%;
    transform: rotate(-3deg);
    z-index: 2;
}

/* Card 3 */
.testimonial-section .card-3 {
    width: 50%;
    background: #1A2027;
    color: #fff;
    top: 270px;
    left: 38%;
    transform: rotate(-3deg);
    z-index: 3;
}

/* Card 4 */
.testimonial-section .card-4 {
    width: 50%;
    background: #AE9FFF;
    color: #1A2027;
    top: 410px;
    left: 12%;
    transform: rotate(3deg);
    z-index: 4;
}

/* Tablet responsive adjustments */
@media (max-width: 992px) {
    .testimonial-section .cards-wrapper {
        width: 95%;
        height: 650px;
    }

    .testimonial-section .card-1 {
        width: 65%;
        left: 50%;
        transform: translateX(-35%) rotate(8deg);
    }

    .testimonial-section .card-2 {
        width: 65%;
        left: 8%;
    }

    .testimonial-section .card-3 {
        width: 65%;
        left: 28%;
    }

    .testimonial-section .card-4 {
        width: 65%;
        left: 10%;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .testimonial-section {
        min-height: auto;
        padding: 60px 15px;
    }

    .testimonial-section .cards-wrapper {
        position: relative;
        width: 100%;
        max-width: 480px;
        height: 580px;
        margin: 0 auto;
    }

    .testimonial-section .review-card {
        position: absolute;
        padding: 15px;
    }

    .testimonial-section .card-1 {
        width: 72%;
        top: 0;
        left: 50%;
        transform: translateX(-35%) rotate(8deg);
    }

    .testimonial-section .card-2 {
        width: 72%;
        top: 130px;
        left: 10%;
        transform: rotate(-3deg);
    }

    .testimonial-section .card-3 {
        width: 72%;
        top: 260px;
        left: 22%;
        transform: rotate(-3deg);
    }

    .testimonial-section .card-4 {
        width: 72%;
        top: 390px;
        left: 15%;
        transform: rotate(4deg);
    }

    .testimonial-section .review-card h3 {
        font-size: 1.6rem;
    }

    .testimonial-section .review-card p {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   CLIENT LOGOS MARQUEE SECTION
   ========================================================================== */
.clients-wrapper-section {
    background: #f5ff8c;
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-section {
    width: 100%;
    max-width: 1100px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-section .title {
    font-family: 'Khand', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.85;
    color: #1a1e27;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 40px;
}

.clients-blob-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blob-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Stagger effect — row 2 indented */
.row-2 {
    padding: 0 60px;
}

.blob-pill {
    flex: 1;
    background: #1a1e27;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 80px;
    cursor: default;
    transition: background 0.25s ease;
    min-width: 0;
}

.blob-pill:hover {
    background: #7b7b5b;
}

.pill-name {
    font-family: 'Khand', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: #f5ff8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-logo {
    max-height: 38px;
    max-width: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Force monochrome white by default to look clean and visible on dark background */
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

/* Exclude Coke Studio from the default white filter to preserve internal contrast */
.client-logo[src*="cook-studio"] {
    filter: none;
    opacity: 0.75;
}

.blob-pill:hover .client-logo {
    /* Show original colors on hover */
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Custom scale adjustments for logos with large transparent borders/thin text */
.client-logo[src*="universal"] {
    transform: scale(1.65);
}

.blob-pill:hover .client-logo[src*="universal"] {
    transform: scale(1.7);
}

.client-logo[src*="cook-studio"] {
    transform: scale(1.3);
}

.blob-pill:hover .client-logo[src*="cook-studio"] {
    transform: scale(1.35);
}

.client-logo[src*="nexa"] {
    transform: scale(1.3);
}

.blob-pill:hover .client-logo[src*="nexa"] {
    transform: scale(1.35);
}

.client-logo[src*="desi-trill"] {
    transform: scale(1.2);
}

.blob-pill:hover .client-logo[src*="desi-trill"] {
    transform: scale(1.25);
}

/* Responsive */
@media (max-width: 768px) {
    .blob-row {
        flex-wrap: wrap;
    }

    .row-2 {
        padding: 0;
    }

    .blob-pill {
        flex: 1 1 40%;
        height: 60px;
        padding: 0 12px;
    }

    .client-logo {
        max-height: 26px;
    }
}

@media (max-width: 480px) {
    .blob-pill {
        flex: 1 1 45%;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    min-height: 100vh;
    background: #f5ff8c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
}

.contact-section .contact-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-section .contact-left h2 {
    font-family: 'Khand', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.85;
    color: #1a1e27;
    font-weight: 700;
}

.contact-section .contact-left p {
    margin-top: 20px;
    font-family: 'Khand', sans-serif;
    color: #7b7b5b;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 0.9;
    max-width: 500px;
    text-transform: uppercase;
}

.contact-section .contact-right {
    width: 100%;
}

.contact-section .field {
    position: relative;
    margin-bottom: 35px;
}

.contact-section .label {
    position: absolute;
    top: -12px;
    left: 10px;
    background: #1a1e27;
    color: #f5ff8c;
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    padding: 3px 12px;
    transform: rotate(-5deg);
    z-index: 2;
}

.contact-section .field input,
.contact-section .field textarea {
    width: 100%;
    border: 4px solid #1a1e27;
    background: transparent;
    padding: 18px;
    font-family: 'Khand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1e27;
    outline: none;
}

.contact-section .field input::placeholder,
.contact-section .field textarea::placeholder {
    color: #b0af72;
}

.contact-section .message-field textarea {
    height: 180px;
    resize: none;
    background: transparent;
}

.contact-section .submit-btn {
    width: 100%;
    border: none;
    background: #1a1e27;
    color: #f5ff8c;
    height: 75px;
    font-family: 'Khand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-section .submit-btn:hover {
    transform: translateY(-5px);
}

/* Mobile responsive adjustments for Contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-section .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-section .contact-left h2 {
        font-size: 4rem;
    }

    .contact-section .contact-left p {
        font-size: 1.4rem;
    }

    .contact-section .field input,
    .contact-section .field textarea {
        padding: 14px;
        font-size: 1.4rem;
    }

    .contact-section .label {
        font-size: 0.9rem;
        top: -10px;
    }

    .contact-section .submit-btn {
        height: 60px;
        font-size: 1.6rem;
    }

    .originals-section .title {
        font-size: 17.5vw;
    }

    .originals-section .subtitle {
        font-size: 12.5vw;
    }

    .originals-section .dive-btn {
        font-size: 10vw;
        padding: 0.1rem 0.5rem 0 0.5rem;
        bottom: -15%;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background: #1a2027;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(245, 255, 140, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    /* max-width: 1600px; */
    position: relative;
}

.main-footer .footer-brand {
    font-size: clamp(21.5vw, 8vw, 32vw);
    font-weight: 700;
    line-height: 0.8;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f5ff8c 10%, rgba(26, 32, 39, 0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    /* position: absolute; */
    bottom: 0;

}

.main-footer .footer-copyright {
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    font-weight: 700;
    /* letter-spacing: 0.18em; */
    color: #f5ff8c;
    text-transform: uppercase;
    margin-top: -4vw;
    opacity: 0.9;
    user-select: none;
    white-space: nowrap;
}

/* Mobile responsive adjustments for Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 20px 1px 0px;
    }

    .main-footer .footer-copyright {
        margin-top: -1.5vw;
        letter-spacing: 0.12em;
        font-size: clamp(0.6rem, 1.1vw, 1.25rem);
    }

}