/*
Theme Name: Yellow-Grouse
Theme URI: https://yellow-grouse-771589.hostingersite.com/
Author: Macrew Technologies Pvt. Ltd.
Author URI: http://example.com
Description: A lightweight, custom-built theme for the Yellow-Grouse project.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yellow-grouse
*/

/* Custom styles start here */
body {
    background-color: #f1f1f1;
    font-family: sans-serif;
}

/* @font-face {
    font-family: 'Atyp Display';
    src: url('fonts/Atyp Display TRIAL Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    
 
  } */

@font-face {
    font-family: 'Atyp Display';
    /* Move up/into the assets folder */
    src: url('assets/fonts/Atyp Display TRIAL Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Best practice for performance */
}

/* Google Fonts fallback */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --yellow: #d4f20d;
    --black: #0a0a0a;
    --dark: #111111;
    --white: #ffffff;
    --gray-bg: #f3f3f3;
    --gray: #888888;
    --border: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Atyp Display', serif;
    background: #fff;
    overflow-x: hidden;
}

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

/* ───── HEADER ───── */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid transparent;
    padding: 10px 20px;
}

.main-nav .sub-menu {
    background: #0000008a !important;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, box-shadow 0.3s;
}
body .global-content h2 {
    font-family: 'Atyp Display', serif;
   line-height: 60px;
  font-size: 44px;
  font-weight: 600;
    text-align: center;
   margin-bottom: 30px;
}
body .global-contant p {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
   .card-content .global-content .addon-title {
    margin-bottom: 20px !important;
}
.section-subtitle p {
    color: #fff;
    text-align: center;
}
.global-content .section-subtitle p {
    color: #000;
   font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
}
.package-card ul {
    list-style: none;
    margin: 20px 0 0 0px;
}

.pricing-sec-h h2{
    text-transform: capitalize;
    letter-spacing: 0;
}

.work-with-us .container h2.work-section-heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
}

.main-header nav ul {
    display: flex;
    align-items: center;
}

.main-header nav ul li {
    list-style: none;
}

.main-header .logo img {
    max-width: 250px;
    width: 100%;
}

.main-header.scrolled {

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    background-color: #00000070;
}

.btn-yellow.cta-btn {
    padding: 12px 24px 9px;
}

.header-inner {

    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 64px;
}

/* ───── LOGO ───── */
.main-header .logo {

    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

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

/* ───── NAV ───── */
.main-header nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.main-header nav a,
.main-header nav button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.45rem 0.9rem;
    color: #fff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    font-weight: 400;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.main-header nav a:hover,
.main-header nav button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.main-header nav button svg {
    transition: transform 0.25s;
    opacity: 0.55;
}

.main-header nav button.open svg {
    transform: rotate(180deg);
}

/* ───── DROPDOWN ───── */
.main-header .dropdown-wrap {
    position: relative;
}

.main-header .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 165px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.main-header .dropdown.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.main-header .dropdown a {
    display: block;
    padding: 0.55rem 0.9rem;
    color: var(--muted);
    font-size: 0.88rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.main-header .dropdown a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}









/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .6) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 80px 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    max-width: 55%;
}

.hero-eyebrow {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #E7FF1D;
    margin-bottom: 18px;
    display: block;
    line-height: 26px;
}

.hero h1 {
    font-family: 'Atyp Display';
    font-size: 66px;
    font-weight: 400;
    line-height: 83px;
    color: #fff;
}

.play-icon img {
    width: 40px;
}


.hero-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-sub {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    font-weight: 300;
    padding-left: 26px;
    border-left: 1px solid #fff;
    margin-top: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-yellow {
    background: #E7FF1D;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 24px 10px;
    text-decoration: none;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    line-height: 28px;
}

.btn-yellow:hover {
    opacity: .85;
}

.btn-ghost {
    background: transparent;
    color: #E7FF1D;
    border: 1px solid #E7FF1D;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 24px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ── STATIC LOGOS BAR ── */
.logos-static {
    background: #000;
    padding: 80px 20px;

}

.logos-static h2 {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Atyp Display', serif;
    margin: 0 0 50px 0;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}



/* ── SHARED SECTION ── */
.sec-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 10px;
    display: block;
}



/* ── VISION ── */
.vision {
    padding: 90px 20px 120px;
    background: #fff;
}

.sec-h {
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    color: #000;
    text-align: center;
}

.sec-sub {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
}

#p.sec-sub-process {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
    color: white;
}

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

.vvid-wrap {
    position: relative;
    height: 700px;
    background: #111;
    overflow: hidden;
}

.vvid-wrap h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 42px;
    line-height: 52px;
    margin: 60px 0 0 0;
    font-family: 'Atyp Display', serif;
}

.vvid-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vplay-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .12);
    transition: background .2s;
}

.vplay-overlay:hover {
    background: rgba(0, 0, 0, .28);
}

/* ── TESTIMONIALS — image + text cards ── */
.tc {
    text-align: center;
    margin: 0 0 60px 0;
}

.tc .sec-h {
    color: #fff;
}

.testimonial-main {
    color: #fff;
}

.testimonials {
    background: #282828;
    padding: 80px 20px;
}


/* ── Wrapper ── */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1320px;
    margin: 0 auto;
}


.testimonial-main .row {
    display: grid;
    grid-template-columns: 3fr 2.5fr;
    grid-template-rows: 300px;
    gap: 10px;
}

.testimonial-main .row-reverse {
    display: grid;
    grid-template-columns: 2.5fr 3fr;
    grid-template-rows: 300px;
    gap: 10px;
}

/* Each section: two cards side by side, stretching to fill row height */
.testimonial-main .section {
    display: grid;
    gap: 10px;
    height: 100%;
}

/* Large section: text wider than image */
.testimonial-main .section--large {
    grid-template-columns: 3fr 2fr;
}

/* Large section flipped: image first, text second */
.testimonial-main .section--large-flip {
    grid-template-columns: 2fr 3fr;
}

/* Small section: equal split */
.testimonial-main .section--small {
    grid-template-columns: 1fr 1fr;
}

/* ── Card base ── */
.testimonial-main .card {
    background: #1C1C1C;
    border: 1px solid #2E301C;
    border-radius: 11px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stars img {
    width: 14px;
    margin: 0 3px 0 0;
}

.testimonial-main .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

/* ── Text card ── */
.testimonial-main .card--text {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-main .card--text .quote {
    font-size: 13.5px;
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
}

.testimonial-main .card--text .reviewer {
    margin-top: 20px;
}

.testimonial-main .card--text .reviewer .name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* ── Image card ── */
.testimonial-main .card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SERVICE */

.service-video-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
}

.service-videos-section {
    padding: 80px 20px;
}

.service-video {
    text-align: center;
    padding: 0px 120px;
}

.btn-primary {
    display: inline-block;
    background: #282828;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 40px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 50px;
    margin-top: 40px;
}

.btn-primary:hover {
    opacity: .8;
}

.service-video-header {
    margin-bottom: 60px;
}

.video-tile {
    border-radius: 14px;
    overflow: hidden;
    height: 380px;
}

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

.services {
    padding: 120px 20px;
    background: #ffffff;
}

.services .sec-h {
    padding: 18px 0 26px 0;
    margin-bottom: 0px;
}

.services .sec-sub {
    margin: 0 auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 20px;
}

.hero-eyebrow.black-eyebrow {
    color: #000;
    margin: 0 auto;
    text-align: center;
}

.scard {
    background: #ECEDEF;
    padding: 32px 22px;
    transition: background .2s;
    cursor: pointer;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.scard-icon {
    width: 82px;
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50px;
}

.solution-content .hero-eyebrow.black-eyebrow {
    text-align: left;
    margin: 52px 0 16px 0;
    font-size: 14px;
}

.scard-icon img {
    width: 42px;
}

.scard-desc {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 42px;
}

.scard-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 32px;
}

.solution-content .btn-yellow {
    padding: 12px 36px;
    width: fit-content;
}




/* ── MARQUEE after services ── */

.mq-main {
    background: #fff;
    padding: 0 0 120px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.mq-bar {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.mq-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 48px;
    width: max-content;
    padding-right: 48px;
    /* matches gap so loop is seamless */
    animation: mq-left 32s linear infinite;
}

.mq-bar:nth-child(2) .mq-track {
    animation: mq-right 32s linear infinite;
}

/* .mq-track:hover {
    animation-play-state: paused;
} */
img.vide-thumb-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ── FEATURED WORK ── */
.featured {
    background: #282828;
    padding: 96px 0 380px 0;
}

.featured.featured-section .btn-yellow {
    width: fit-content;
    margin: 0 auto;
}

.feat-hdr {
    padding: 0 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.view-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--yellow);
    text-decoration: none;
    border-bottom: 1px solid var(--yellow);
    padding-bottom: 2px;
}

.feat-outer {
    overflow: hidden;
}

.feat-track {
    display: flex;
    gap: 16px;
    user-select: none;
    will-change: transform;
}


.feat-cta {
    text-align: center;
    padding: 44px 60px 0;
}

/* ── Marquee wrapper ── */
.marquee-row {
    overflow: hidden;
    width: 100%;
    margin-bottom: 14px;
    position: relative;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-row::before,
.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, #1c1c1c63, transparent);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, #1c1c1c63, transparent);
}

/* ── Moving belt ── */
.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
}

.marquee-track.right {
    animation: go-right 80s linear infinite;
}

.marquee-track.left {
    animation: go-left 80s linear infinite;
}

.marquee-track.right-slow {
    animation: go-right 80s linear infinite;
}

.marquee-track.right.row-medium {
    animation: go-right 80s linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes go-right {
    from {
        transform: translateX(0);
    }

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

@keyframes go-left {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ── Cards ── */
.card {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #2a2a2a;
}

.row-large .card {
    width: 420px;
    height: 250px;
}

.row-medium .card {
    width: 300px;
    height: 190px;
}

/* ── Video element fills the card ── */
.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: transform 0.45s ease, filter 0.35s ease;
    /* autoplay requires muted in most browsers */
}

.card:hover video {
    transform: scale(1.05);
    filter: brightness(0.45);
}

/* ── Overlay ── */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 14px 13px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: flex-end;
}

.play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.card:hover .play {
    background: #c8f230;
    border-color: #c8f230;
}

.play svg {
    width: 11px;
    height: 11px;
    fill: #fff;
    margin-left: 2px;
}

.card:hover .play svg {
    fill: #111;
}

.card-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
}






/* ── STATS ── */
.stats-inner {
    background: #E7FF1D;
    padding: 72px 40px;
}

.stats {
    margin: -295px 0 40px 0;
    /* box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06); */
}

.stats-inner .sec-h {
    max-width: 465px;
    margin: 0 auto;
}

.stat-num {
    font-size: 60px;
    font-weight: 400;
    line-height: 65px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 60px 0 60px 0;
}

.stats-row .stat-col:last-child {
    border: 0;
}

.stat-col {
    padding: 8px 36px;
    border-right: 1px solid rgba(0, 0, 0, .14);
    text-align: center;
}

.stat-col span {
    margin: 24px 0 0 0;
    display: inline-block;
}

.stat-lbl {
    font-size: 20px;
    margin-top: 26px;
    line-height: 28px;
}

.stats-foot {
    text-align: center;
    margin-top: 80px;
    font-size: 22px;
}

/* ── PRICING ── */
.pricing {
    background: #B4B9BF;
    padding: 96px 20px;
    margin-top: 13;
}

.pricing .hero-eyebrow.black-eyebrow {
    text-align: center;
}

/* .pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
} */

.pricing-head .sec-h {
    text-align: center;
}

/* .pricing-head-left {
    width: 50%;
} */

.pricing-head-right p {
    font-size: 23px;
    line-height: 32px;
    text-align: end;
    padding: 0px 200px;
}

/* .pricing-head-right {
    width: 34%;
} */

.ptag {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    display: block;
    margin-top: 45px;
    text-align: center;
    line-height: 32px;
}

.pcard:nth-child(2) .ptag {
    margin-bottom: 28px;
}

.pcard {
    padding: 50px 42px;
    position: relative;
    transition: background .2s;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    transition: .3s ease-in;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.pcard img {
    /* width: 40px; */
}

.ptitle {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 28px;
    text-align: center;
}

.pcard:hover {
    transform: scale(1.03);
    transition: .3s ease-in;
}




/* ── BLOG / FREE RESOURCES ── */
.blogs {
    padding: 96px 60px;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin-top: 60px;
}

.blogs .sec-h {
    max-width: 420px;
    margin: 0 auto;
}

.bcard {
    cursor: pointer;
    position: relative;
}

.blogs span.date {
    position: absolute;
    color: #fff;
    bottom: 147px;
    right: 21px;
}

.bcard-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eee;
    margin-bottom: 16px;
}

.bcard-img img {
    width: 100%;
    height: 309px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.bcard:hover .bcard-img img {
    transform: scale(1.04);
}

.btag {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 12px;
}

.btitle {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 18px;
    margin-top: 18px;
    width: 93%;
}

.bcard .btn-yellow {
    width: fit-content;
    font-size: 16px;
    padding: 10px 21px 10px;
    line-height: 25px;
}

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

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

@keyframes mq-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* ── CTA BAND ── */
.cta-band {
    margin-top: -385px;
    z-index: 4;
    position: relative;
}

.cta-inner {
    text-align: center;
    background: #E7FF1D;
    padding: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-inner h2 {
    margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 300;
}

.cta-inner .sec-h {
    margin: 0 0 40px 0;
}

.btn-dark {
    display: inline-block;
    background: #282828;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 40px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 50px;
}

.btn-dark:hover {
    opacity: .8;
}


/* Service page Banner */

.service-hero {
    position: relative;
    height: 589px;
    /* height: 730px;   */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero .hero-bg img {
    width: 100%;
    object-fit: cover;
    height: 589px;
    /* height: 730px; */
}

.service-hero .hero-bg {
    width: 100%;
}

.service-hero .hero-inner {
    position: absolute;
    left: 0;
}

.banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.service-hero .hero-inner {
    padding: 100px 64px 40px;
}

/* .banner-heading {
    font-size: 56px;
    line-height: 66px;
    font-weight: 400;
    font-family: 'Atyp Display';
    color: #fff;

} */

.banner-heading .accent-word {
    color: #E7FF1D;
}


.banner-heading .accent-word {
    color: #E7FF1D;
}

.service-vision .vision-header h2 {
    max-width: 595px;
    margin: 0 auto;
}

/* ─── SECTION 3 – STRATEGIC CONTENT ──────────────────── */
.approach-section {
    background: #1D1D1F;
    padding: 80px 20px;
}

.approach-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.approach-section .card-wide {
    grid-column: span 1;
}

.approach-section .cards-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.approach-section .service-card {
    background: #2D2D2F;
    border-radius: 16px;
    padding: 32px;
}

.approach-section .card-icon-wrap {
    width: 80px;
    height: 80px;
    background: #232324;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 54px;
    border-radius: 50px;
}

.approach-section .card-title {
    font-family: 'Atyp Display';
    font-weight: 400;
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.approach-section .card-desc {
    font-size: 18px;
    line-height: 28px;
    color: #ffffffa3;
    font-weight: 300;
}


/* ─── SECTION 4 – MARKET PRESENCE ────────────────────── */
.market-section {
    background: #fff;
    padding: 80px 20px;
}

/* Grid: 3 equal columns */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Each column is a wrapper that holds label-slot + card + label-slot */
.video-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Fixed-height label slot — always present, either filled or empty */
.label-slot {
    display: flex;
    align-items: center;
}

.video-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.22s ease;
    display: flex;
}

.related-card .thumb img {
    width: 100%;
    object-fit: cover !important;
    height: 300px;
    max-width: 100%;
}

.play-btn img {
    width: 40px;
}

.video-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


.video-label {
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.video-card video {
    width: 100%;
    /* height: 240px; */
    object-fit: cover;
    aspect-ratio: 9 / 5;
}

.video-card p {
    position: absolute;
    bottom: 20px;
    right: 15px;
    color: #fff;
    font-size: 18px;
    font-family: 'Atyp Display';
}

/* Build Trust Page CSS Start */

.why-this-matters {
    padding: 80px 20px;
}

/* Build Trust Page CSS End */

/* Unlock Event Potentia Page CSS Start */

.video-col {
    width: calc(33.33% - 30px);
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

.comparison-table {
    max-width: 900px;
    margin: auto;
    border-top: 1px solid #dcdcdc;
    padding: 20px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 22px 0;
    border-bottom: 1px solid #dcdcdc;
}

.sec-h {
    text-align: center;
    margin-bottom: 30px;

}

.comparison-table {
    border-top: none;
}

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

.with-without-video .hero-eyebrow {
    text-align: center;
    padding: 40px 0px 0px;
    color: #000000;
}

.with-without-video {
    padding: 100px 20px;
}

.with-without-header {
    text-align: center;
    margin-bottom: 70px;
}

/* .sec-h {
    font-size: 44px;
    font-weight: 600;
} */

/* GRID */

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */

.comparison-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* hover effect */
.comparison-card:hover {}

/* subtle tint */

.without-card {
    background: #ECEDEF;
}

.with-card {
    background: #ECEDEF;
}

/* TOP */

.card-top {
    text-align: center;
    margin-bottom: 30px;
}

.card-top h3 {
    font-size: 22px;
    margin-top: 40px;
}

/* ICON */

.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon.red {
    background: #fff;
}

.icon.green {
    background: #fff;
}

/* ITEMS */

.item {
    padding: 16px 0;
    border-bottom: 1px solid #fff;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    transition: all .2s ease;
}

/* hover text effect */
.item:hover {
    transform: translateX(5px);
    color: #000;
}

.item:last-child {
    border-bottom: none;
}

/* subtle left accent line */

.without-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    /* background:#e85c5c; */
    opacity: .4;
}

.with-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    /* background:#5bbd6a; */
    opacity: .4;
}

/* Unlock Event Potentia Page CSS End*/

/* ─── Timeline Wrapper ────────────────────────────────── */
.timeline {
    position: relative;
}

/* ─── Top & Bottom Content Rows ──────────────────────── */
.timeline-top,
.timeline-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

/* ─── Single Content Cell ─────────────────────────────── */
.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}

.step-content.empty {
    visibility: hidden;
    pointer-events: none;
}

/* top content sits above → connector line points DOWN */
.timeline-top .step-content {
    padding-bottom: 0;
    justify-content: flex-end;
}

/* bottom content sits below → connector line points UP */
.timeline-bottom .step-content {
    padding-top: 0;
    justify-content: flex-start;
}

/* Connector line between content and circle row */
.step-content::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);

}

.timeline-top .step-content::after {
    order: 10;
    /* line at the bottom of top content */
    margin-top: 20px;
}

.timeline-bottom .step-content::after {
    order: -1;
    /* line at the top of bottom content */
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Atyp Display';
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.step-desc {
    font-family: 'Atyp Display';
    font-size: 16px;
    font-weight: 300;
    line-height: 23px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 230px;
}

/* ─── Circle Row ──────────────────────────────────────── */
.circle-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    position: relative;
    margin: 0;
    padding: 16px 0;
}

/* Dashed line running through all circles */
.circle-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% / 10);
    /* start from center of first circle */
    right: calc(100% / 10);
    /* end at center of last circle */
    height: 1px;
    border-top: 1px dashed #E7FF1D;
    transform: translateY(-50%);
    z-index: 0;
}

.step-circle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #2E2E2E;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-number {
    font-size: 20px;
    font-weight: 400;
    color: #E7FF1D;

}

.production-section {
    background: #000;
    padding: 80px 20px 400px;
}

/* ─── SECTION 6 – COST OF INVISIBILITY ───────────────── */
.invisibility-section {
    background: #fff;
    padding: 80px 20px;
}


.invisibility-image-wrap {
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    height: 520px;
}

.invisibility-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
}

.invisibility-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 42px;
}

.invisibility-text-left {
    position: absolute;
    z-index: 2;
    top: 44px;
    left: 48px;
    max-width: 50%;
}

.invisibility-text-left h2 {
    color: #fff;
    text-align: left;
}

.invisibility-text-right {
    position: absolute;
    z-index: 2;
    bottom: 44px;
    right: 48px;
    max-width: 40%;
    text-align: right;
}

.invisibility-body {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    font-weight: 300;
}


section.partnership-footer {
    background: #b3b9bf;
}
.partnership-work-examples h2 {
    color: white;
   
}
footer {
    background: #282828;
    /* padding: 185px 60px 28px; */
    padding: 300px 60px 28px;
}
.single-post .cta-band {
    margin-top: -545px;
}
.single-post .container.footer-sec {
    padding-top: 50px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 65px;
    justify-content: center;
    align-items: center;
}

.footer-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-sec {
    padding-top: 80px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links img {
    width: 24px;
}

.footer-head a {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 60px;
}

.flogo {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
}

.fcol h5 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
}

.ftagline {
    color: #000000;
    line-height: 1.2;
    font-size: 35px;
    text-transform: uppercase;
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 7px;
    margin-bottom: 31px;
}

.terms-page ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.terms-page ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.terms-page ul li {
    border-right: 1px solid #fff;
    padding: 0 20px;
}

.terms-page ul li:last-child {
    border: 0;
}

.fcol ul {
    list-style: none;
}

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

.fcol ul a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color .2s;
    font-weight: 300;
}

.fcol ul a:hover {
    color: #E7FF1D;
}

.footer-btm span {
    font-size: 16px;
}

.footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    font-size: 12px;
    color: #fff;
    border-top: 1px solid #ffffff2b;
}

/* ai Page CSS Start */
.ai-fits-section {
    padding: 80px 20px 400px;
}

.ai-stages-grid.cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

.practice-section {
    background: #fff !important;
    padding-bottom: 80px !important;
}

.practice-section .tc p {
    color: #1d1d1f;
}

.practice-section h2 {
    color: #000 !important;
}

.practice-grid h3 {
    color: #000000;
}

.practice-grid.circle-row {
    grid-template-columns: repeat(4, 1fr);
}

.practice-grid .card-label {
    color: rgb(0 0 0 / 90%);
}

.practice-grid.circle-row::before {
    display: none;
}

.practice-grid p {
    color: rgb(0 0 0 / 70%);
}

/* SECTION */

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */

.practice-card {
    background: #ECEDEF;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* hover soft lift */

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ICON */

.practice-grid .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-grid .card-icon img {
    width: 35px;
    opacity: 0.8;
}

/* HEADING (Benefit 1 etc.) */

.practice-grid .card-heading {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

/* MAIN TITLE */

.practice-grid .card-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

/* DIVIDER LINE */

.practice-grid .card-label::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #ddd;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* DESCRIPTION */

.practice-grid.card-description {
    line-height: 1.7;
    max-width: 260px;
    margin: 15px auto 0;
}

/* ai Page CSS End */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

/* Home Page CSS End */
.mq-main {
    padding: 70px 0px !important;
}

.trusted-section {
    padding: 0px 20px 90px;
    background: #ffffff;
}

.trusted-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    color: #000;
}

.trusted-section p.section-subtitle {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
}

.trusted-card span.card-title {
    text-align: left;
    margin: 52px 0 16px 0;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    line-height: 26px;
}

.trusted-card p.card-description.scard-desc {
    margin-bottom: 0px;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 20px;
}

h2.section-title.sec-h {
    padding: 18px 120px 0px 120px;
}

.trusted-card {
    background: #ECEDEF;
    padding: 32px 22px;
    transition: background .2s;
    cursor: pointer;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trusted-card .card-icon {
    width: 82px;
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50px;
}

.trusted-card .card-icon img {
    width: 42px;
}

.services .scard {
    background: #fff !important;
}

.services .scard-icon {
    background: #ecedef;
}

.work-with-us {
    background: #ecedef;
    padding: 100px 20px 180px;
    margin-bottom: -82px;
}

.work-with-us .video-partner-sec {
    display: flex;
    gap: 20px;
    /* align-items: center; */
    width: 100%;
}

.work-with-us .container p.section-description {
    text-align: right;
    font-size: 18px;
    width: 60%;
    line-height: 32px;
}

.work-with-us .container h2.section-heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
}

.services p.sec-sub {
    max-width: 610px;
}

.work-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    gap: 14px;
}

.work-cards-grid .work-card {
    background: #fff;
    padding: 32px 22px 26px;
    transition: background .2s;
    cursor: pointer;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.work-cards-grid img {
    width: 50px;
}

.work-cards-grid .card-icon {
    width: 82px;
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    border-radius: 50px;
}

.work-cards-grid .work-card h3.card-title {
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
}

.work-cards-grid .work-card p.card-description {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 0px;
}

.work-cards-grid .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.pricing-head-right {
    margin: 60px 20px 0px;
}

.pricing-head-right p {
    font-size: 20px;
    text-align: center;
}

.card-label {
    font-size: 15px;
    font-weight: 600;
}

.pricing .ptitle {
    font-size: 23px;
    font-weight: 500;
    margin-top: 45px;
    margin-bottom: 0px;
}

.pricing .ptag {
    margin-bottom: 60px;
    margin-top: 20px;
}

.featured {
    padding: 96px 0 80px 0 !important;
}

.testimonials {
    position: relative;
    padding-top: 80px;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.marquee-track.right.row-large .cat-name {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    text-transform: uppercase;
    padding: 28px 23px;
}

.marquee-track.row-medium .cat-name {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.play {
    order: 3;
}

.card-info .client-name {
    color: #fff;
}

.row-large .card {
    height: 330px;
}

.card-info .card-tile {
    display: grid;
    gap: 10px;
    width: 100%;
}

.work-card {
    background: #f5f5f5;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-icon {
    margin-bottom: 20px;
}

.card-content {
    margin-top: 70px;
}


/* Mobile menu - nitika */
/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* CROSS */

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

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

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


/* ===== MOBILE MENU PANEL ===== */

#mobileMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 9999;
    padding: 90px 30px;
    transition: left .35s ease;
    overflow-y: auto;
}

.menu-open #mobileMenu {
    display: block !important;
}

#mobileMenu.active {
    left: 0;
}


/* ===== MENU LIST ===== */

#mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobileMenu a {
    display: block;
    padding: 16px 0;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

#mobileMenu ul.mobile-menu-list {
    display: block !important;
}

#mobileMenu ul.mobile-menu-list li {
    display: block !important;
    width: 100% !important;
}

#mobileMenu ul.mobile-menu-list a {
    display: block !important;
    width: 100% !important;
}

/* ===== SUBMENU ===== */

#mobileMenu .menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobileMenu .menu-item-has-children>a::after {
    content: "";
    width: 9px;
    height: 9px;
    /* background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") no-repeat center; */
    background-size: contain;
}

.mobile-menu-list .menu-item-has-children>a {
    position: relative;
}

.mobile-menu-list .menu-item-has-children>a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}


#mobileMenu .sub-menu {
    display: none;
}

#mobileMenu .menu-item-has-children.open>.sub-menu {
    display: block;
}

#mobileMenu .sub-menu li {
    border: none;
}

#mobileMenu .sub-menu a {
    font-size: 16px;
    color: #ccc;
    padding: 10px 0;
}


/* ===== DROPDOWN ARROW ===== */

#mobileMenu .menu-item-has-children>a::after {

    float: right;
    font-size: 14px;
}

/*Social icons */

.mobile-social {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;

}

.mobile-social a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: .8;
}

.mobile-social a:hover {
    opacity: 1;
}

.mobile-social a img {
    width: 30px;
    height: 30px;
}

.mobile-cta {
    margin-top: 20px;
}

.mobile-cta a {
    display: block;
    background: #d7ff2f;
    color: #000;
    padding: 14px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
}

/* mobile menu end */


/* lightbox */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-container {
    width: 90%;
    max-width: 1100px;
    position: relative;
}

#lightboxPlayer {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.prev-video {
    left: 20px;
}

.next-video {
    right: 20px;
}

/* Home Page CSS End */

/* Contact Page CSS Start */
.contact-details .form-right input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #E7FF1D;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 24px 10px;
    text-decoration: none;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    width: 170px;
}

.contact-details {
    background: #ecedef;
    padding: 96px 20px;
}

.contact-details .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

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

.form-details-left .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.form-details-left img {
    width: 32px;
    height: 32px;
}

.form-details-left span {
    color: #000000;
    font-size: 15px;
}

.form-right .wpcf7 {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    background: #fff;
}

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

.wpcf7 p {
    margin: 0;
}

.wpcf7 label {
    font-size: 16px;
    color: #000000;
    display: block;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ecedef;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    transition: 0.3s;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #666;
}


.wpcf7 form p:has(textarea) {
    grid-column: span 2;
}


.wpcf7 form p:has(.wpcf7-submit) {
    grid-column: span 2;
}

.wpcf7 textarea {
    min-height: 100px;
    resize: none;
    height: 40px;
}


/* .wpcf7-submit {
    background: #eaff3e !important;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px !important;
    align-items: center;
    justify-content: center;
    line-height: 28px;
} */

.wpcf7 select {
    appearance: none;
}

.what-happens-next .timeline-bottom {
    grid-template-columns: repeat(4, 1fr);
}

/* =========================
   SECTION
========================= */
.faq-section {
    padding: 100px 20px;
    background: #0b0b0b;
}

/* =========================
   CONTAINER
========================= */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* =========================
   FAQ ITEM
========================= */
.faq-item {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid #1f1f1f;
    overflow: hidden;
    transition: 0.3s;
}

/* hover effect */
.faq-item:hover {
    border-color: #E7FF1D;
}

/* =========================
   QUESTION
========================= */
.faq-question {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    position: relative;
}

/* plus icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #E7FF1D;
    transition: 0.3s;
}

/* =========================
   ANSWER
========================= */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.what-happens-next {
    background: #000;
    padding: 80px 20px;
}

/* =========================
   ACTIVE STATE
========================= */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-question::after {
    content: "–";
}

.what-happens-next .timeline-top {
    grid-template-columns: repeat(4, 1fr);
}

.timeline-top,
.timeline-bottom {
    grid-template-columns: repeat(5, 1fr);
}

.what-happens-next .circle-row {
    grid-template-columns: repeat(4, 1fr);
}

.what-happens-next .step-circle {
    color: #eaff3e;
}

.contact-details .contact-heading {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 40px !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0px;
    grid-column: span 2;
    text-align: center;
}

.asterisk {
    color: red;
}

.wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 10px;
}

.what-happens-next .production-section {
    padding-bottom: 0px;
}

/* Contact Page CSS End */

/* Pricing Page CSS Start */

.how-it-works {
    padding: 80px 20px;
}

.how-it-works .section-description {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
}

.whats-covered h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 30px;
}

.our-guarantee {
    padding: 80px 20px;
    background: #282828;
}

.our-guarantee .section-heading {
    color: #eaff3e;
}

.our-guarantee h2 {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.our-guarantee .guarantee-description {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
    color: #fff;
}

.strategy-audit {
    padding: 80px 20px;
    text-align: center;
}

.strategy-audit h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.strategy-audit .section-description {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 36px;
    text-align: center;
    max-width: 880px;
}

.strategy-audit .audit-btn {
    background: #E7FF1D;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    line-height: 28px;
}

.strategy-audit .audit-btn:hover {
    opacity: .85;
}

.partnership-work-examples {
    padding: 80px 20px;
    background: #111;
    /* dark premium look */
}

.partnership-work-examples .container {
    max-width: 1200px;
    margin: auto;
}

.partnership-work-examples .section-title {
    text-align: center;
    font-size: 44px;
    color: #fff;
    margin-bottom: 30px;
}

.partnership-work-examples .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.partnership-work-examples .video-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partnership-work-examples .video-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* HOVER EFFECT */
.partnership-work-examples .video-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.partnership-work-examples .video-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.whats-covered {
    padding: 100px 20px;
    background: #ffffff;
}

.section-heading {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
    display: block;
    line-height: 26px;
    text-align: center;
}

/* TITLE */
.whats-covered .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #0f172a;
}

/* GRID */
.whats-covered .services-list {
    list-style: none;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

/* CARD */
.whats-covered .service-item {
    backdrop-filter: blur(10px);
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
    padding: 32px 22px;
    transition: background .2s;
    cursor: pointer;
    display: grid;
    min-height: 222px;
    background: #ECEDEF;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

/* .service-icon-wrap {
    width: 82px;
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50px;
} */
.whats-covered .service-item img.service-icon {
    max-width: 50px;
    width: 100%;
}

.package-overview {
    padding: 96px 20px;
    background: #B4B9BF;
}

.whats-covered .service-item .service-heading {
    font-size: 23px;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #111;
}

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

.whats-covered .service-item .service-text {
    margin-top: 40px;
    font-size: 18px;
    color: #111;
}

/* GRID */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* CARD BASE */
.package-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* HOVER */
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.package-btn {
    margin-top: auto;
}

/* TITLE */
.package-title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* PRICE */
.package-price {
    font-size: 32px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.package-description {
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
}

/* FEATURES */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #111;
}

/* CHECK ICON */
.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: #10b981;
}

/* BUTTON */
.package-btn {
    background: #E7FF1D;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px 24px 10px;
    text-decoration: none;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    line-height: 28px;
}

.package-btn:hover {
    opacity: .85;
}

/* 🔥 MIDDLE CARD HIGHLIGHT */
.package-card:nth-child(2) {
    transform: scale(1.05);
    border: 2px solid #eaff3e;
}

/* MOST POPULAR TAG */
.package-card:nth-child(2)::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #eaff3e;
    color: #111;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

.popular-addons {
    background: #ecedef;
    padding: 100px 20px;
}

.popular-addons h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.popular-addons .addons-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    gap: 14px;
}

.popular-addons .addons-wrapper .addon-card {
    background: #fff;
    padding: 32px 22px 26px;
    transition: background .2s;
    cursor: pointer;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-addons .addons-wrapper .addon-card h3.addon-title {
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
}

.popular-addons .addons-wrapper .addon-card p.addon-description {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 0px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.looking-for-something-else {
    padding: 80px 20px;
    text-align: center;
}

.looking-for-something-else h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.looking-for-something-else .section-description {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 36px;
    text-align: center;
    max-width: 880px;
}

.looking-for-something-else .cta-btn {
    background: #E7FF1D;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    line-height: 28px;
}

.looking-for-something-else .cta-btn:hover {
    opacity: .85;
}

.partnership-work-examples .section-heading {
    color: #eaff3e;
}

.typical-time-guidance {
    padding: 80px 20px;
    background: #282828;
}

.typical-time-guidance h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.typical-time-guidance p.section-subtitle {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    color: #fff;
}

.typical-time-guidance .time-block.filming {
    gap: 20px;
}

.typical-time-guidance .time-item .time-title {
    font-weight: 400;
    font-size: 20px;
    color: #111;
}


.time-block .time-item {
    background: #fff;
    border-radius: 16px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
    align-items: center;
}

.typical-time-guidance .time-item .time-hours {
    padding: 10px;
    background: #2d2d2f;
    border-radius: 20px;
    color: #fff;
}

.need-more-hours {
    padding: 80px 20px;
}

.popular-addons .addons-wrapper .addon-card .addon-icon {
    width: 82px;
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    border-radius: 50px;
}

.popular-addons .addons-wrapper .addon-card .addon-icon img {
    width: 50px;
}

.need-more-hours h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.need-more-hours .section-description {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0px;
    text-align: center;
    max-width: 880px;
}

.time-guidance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    align-items: start;
}

.time-guidance-content .time-block {
    background: #2D2D2F;
    border-radius: 16px;
    padding: 32px;
}

.time-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.time-note {
    margin-top: 30px;
    padding: 20px;
    background: #2d2d2f;
    border-left: 5px solid #eaff3e;
    border-radius: 10px;
    font-size: 16px;
    color: #eaff3e;
}

.package-card:nth-child(2) a.package-btn {
    margin-top: 24px;
}

/* Pricing Page CSS End */

/* portfolio Page CSS start */


.portfolio-item h3 {
    color: #fff;
    font-size: 16px;
    padding: 15px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    /* Override Isotope */
    position: static !important;
    height: auto !important;
    /* aspect-ratio: 16 / 9; */
}

.portfolio-item {
    position: static !important;
}

.portfolio-item {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 290px;
    border-radius: 16px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.scard:nth-child(2) a.btn-yellow {
    margin-top: 70px !important;
}

.portfolio-video {
    position: relative;
    width: 100%;
    height: 400px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    /* optional */
}

.portfolio-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}

.portfolio-filter {
    padding: 80px 20px;
    background: #ecedef;
}

.portfolio-filter .filter-row {
    text-align: center;
}

.portfolio-filter .filter-row .filter-btn.active {
    display: inline-block;
    background: #282828;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 50px;
}

.portfolio-filter .filter-row .filter-btn {
    display: inline-block;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 50px;
    background: #ffffff00;
    border: 1px solid #111;
    margin-bottom: 30px;
    margin-right: 20px;
    cursor: pointer;
}
.portfolio-section-heading {
    color: #fff;
}

.case-grid {
    padding: 80px 20px;
    background: #111;
}

.portfolio-filter h2.section-title {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.case-grid h2.section-heading {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.portfolio-pagination {
    text-align: center;
    margin-top: 20px;
}

.portfolio-pagination .page-numbers.current {
    display: inline-block;
    background: #282828;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 15px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 10px;
    border: 1px solid #282828;
        margin-left: 10px;
}

.portfolio-pagination a.page-numbers {
    display: inline-block;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 15px;
    text-decoration: none;
    transition: opacity .2s;
    border-radius: 10px;
    border: 1px solid #111;
    margin-left: 10px;
}

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

.grid-item {
    position: relative;
    overflow: hidden;
}

.media {
    position: relative;
}

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

.footer-head a.ecologi-badge img {
    max-width: 200px;
    width: 100%;
}

.partnership-wrap {
    text-align: center;
    background-color: #B4B9BF;
    padding-top: 100px;
    padding-bottom: 150px;
}

.partnership-wrap img {
    max-width: 200px;
}

.case-grid .grid-item .overlay {
    top: -20px !important;
    background: unset !important;
}

.case-grid .grid-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Hover effect */
.grid-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
    gap: 8px;
}

/* Typography */
.grid-item .category {
    color: #fff;
    position: absolute;
    /* top: 0; */
    right: 0;
    font-size: 13px;
    text-transform: uppercase;
    padding: 28px 23px;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.client {
    font-size: 13px;
    opacity: 0.7;
}

.case-grid .grid-item {
    border-radius: 12px;
}

/* portfolio Page CSS End */

/* Case Study single Page CSS Start */

/* ===== GLOBAL ===== */

.case-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-thumb,
.video-iframe,
.vplay3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-iframe iframe {
    width: 100%;
    height: 100%;
}

.vplay3-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 🔥 Thumbnail hide on play */
.case-video-card.playing .video-thumb {
    display: none;
}

.case-study {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
}

.case-study .hero {
    display: block;
}

/* ===== HERO VIDEO ===== */
.case-study .hero-video {
    width: 100%;
    /* height: 75vh; */
    overflow: hidden;
    position: relative;
}

.case-study .hero-video .video-wrap {
    width: 100%;
    height: 100%;
}

.case-study .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button center */
.case-study .vplay3-overlay {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 20px;
    cursor: pointer;
}

/* ===== TITLE ===== */
.case-title {
    text-align: center;
    font-size: 42px;
    margin: 60px 0 20px;
}

/* ===== CONTENT BLOCKS ===== */
.case-block {
    text-align: center;
    background: #ECEDEF;
    padding: 32px 22px;
    transition: background .2s;
    cursor: pointer;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.06);
}

.case-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 32px;
}

.case-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 880px;
    margin: 0 auto;
}

/* ===== QUOTE ===== */
.quote-block {
    margin: 80px auto;
}

.quote-block blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #000;
}

.client-name {
    display: block;
    margin-top: 15px;
    color: #666;
}

/* ===== RELATED SECTION ===== */
.related {
    padding: 80px 20px 180px;
    background: #111;
    margin-bottom: -80px;
}

.related h2 {
    font-size: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.related-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.related-card {
    transition: 0.3s;
}

article.related-card {
    position: relative;
}

article.related-card:hover.related-card h4 {
    opacity: 1;
}


/* THUMBNAIL (IMPORTANT 16:9) */
.thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
}

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

/* TITLE */
.related-card h4 {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    position: absolute;
    opacity: 0;
    z-index: 9;
    top: 70%;
    padding: 20px;
}

/* ===== CTA ===== */
.case-cta {
    margin-top: 120px;
    padding: 100px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

.case-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.case-cta a {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.case-cta a:hover {
    background: #ddd;
}

.case-study-main-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 20px;
}

.case-block img {
    width: 100%;
    max-width: 50px;
    margin-bottom: 40px;
}

.service-video h3.sec-heading {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
    display: block;
    line-height: 26px;
}

.vision-header h3.sec-heading {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 18px;
    display: block;
    line-height: 26px;
    text-align: center;
}

.why-this-matters h3.sec-sub-heading {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    max-width: 610px;
    margin: 0 auto;
    font-weight: 400;
}

.package-note {
    margin: 80px 0px 0px;
    text-align: center;
    font-size: 18px;
}

/* Case Study single Page CSS End */



/* home page hero section css */
.home .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home #heroVideo {
    position: absolute;
    inset: 0;
    display: none;
    z-index: 2;
}

.home #heroVideo iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw; 

    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    pointer-events: none;
    aspect-ratio: 16 / 9;
}

/* #heroVideo iframe {
    position: absolute;
    top: 0;
    left: 0; 
    object-fit: cover;
    transform: translateY(0);
    aspect-ratio: 16 / 9;
    width: 100vw; 
} */

.home .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.home .hero-inner {
    position: relative;
    z-index: 4;
}

.hero-left span {
    color: #fff;
}

.row-large .card .video-thumb img {
    height: 330px;
    object-fit: cover !important;
    width: 100%;
}

.row-medium .card .video-thumb img {
    object-fit: cover !important;
    width: 100%;
}

/* home page hero section css */

.video-thumb img {
    width: 100%;
}

.portfolio-item-heading {
    display: none;
}

.portfolio-item:hover .portfolio-item-heading {
    display: block !important;
}

/* .ecologi-trees {
    max-width: 200px;
    margin: 0 auto;
    padding: 12px;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
} */


/* Single Post Page CSS Start */

.single-post .partnership-wrap {
    padding-top: 0px;
}
.single-post .container h2 {
    font-size: 36px !important;
    line-height: 42px !important;
}
.single-post .entry-content p {
    font-size: 18px;
    line-height: 28px;
    margin: 36px auto 0;
    text-align: center;
    max-width: 880px;
}

.single-post .container {
    padding: 150px 20px 60px;
}

.single-post .container h2 {
    font-family: 'Atyp Display', serif;
    font-weight: 400 !important;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
}

.single-post .entry-content figure.wp-block-image.size-full {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.single-post .entry-content figure.wp-block-image.size-full img {
    width: 100%;
}
.single-post .site-content {
    background: #ecedef;
}
.single-post .entry-content h3 {
    font-size: 23px;
    font-weight: 500;
    margin-top: 45px;
    margin-bottom: 0px;
    text-align: center;
}


.custom-blog-wrap {
  width: 100%;
}
 
.blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 20px;
}
 
/* .blog-row.reverse {
  direction: rtl;
} */
 
.blog-row.reverse .blog-content {
  direction: ltr;
}
 
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.blog-content {
  background: #e5e7eb;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.read-time {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: block;
}
 
.blog-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
 
.blog-title a {
  text-decoration: none;
  color: #111;
}
 
.blog-excerpt {
  font-size: 16px;
  color: #555;
}

.blog-image-section {
  
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .6) 100%);
}

.blog-image-section img {
    width: 100%;
    object-fit: cover;
    height: 529px;
}

.blog-image-section .blog-image {
    width: 100%;
}
.blog-shortcode-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Single Post Page CSS End */

@media (min-width: 901px) {
    .timeline-mobile {
        display: none;
    }
}

@media only screen and (min-width:1400px) {
    .hero-left {
        max-width: 40%;
    }
}



@media only screen and (max-width:1399px) {
    .hero-inner {
        padding: 0 60px 60px;
    }

    .hero h1 {
        font-size: 60px;
        line-height: 72px;
    }

    .hero-sub {
        font-size: 18px;
        line-height: 28px;
        width: 80%;
    }

    .hero-left {
        max-width: 50%;
    }

    .hero-right {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }

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

    .service-hero .hero-left {
        max-width: 70%;
    }
}

@media only screen and (max-width:1199px) {

    .hero-video {
        height: 800px !important;
    }

    .hero-inner {
        padding: 0 40px 60px;
    }

    .hero h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .btn-yellow {
        font-size: 16px;
        padding: 10px 22px 10px;
        line-height: 26px;
    }

    .btn-ghost {
        font-size: 16px;
        padding: 10px 22px 10px;
        line-height: 26px;
    }

    .hero-sub {
        font-size: 16px;
        line-height: 26px;
        width: 80%;
    }

    .hero-inner {
        gap: 30px;
    }

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

    .approach-section .card-title {
        font-size: 24px;
    }

    .invisibility-text-left {
        max-width: 60%;
    }

    .invisibility-text-right {
        max-width: 60%;
    }
}

@media only screen and (max-width:1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .partnership-work-examples .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }

    /* Unlock Event Potentia Page CSS Start */

    .video-col {
        width: calc(50% - 30px);
    }

    /* Unlock Event Potentia Page CSS End */



    .testimonials {
        padding: 60px 20px;
    }

    .testimonial-main .row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .testimonial-main .row-reverse {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .testimonial-main .section {
        height: 300px;
    }

    .testimonial-main z.section--large,
    .testimonial-main .section--large-flip,
    .testimonial-main .section--small {
        grid-template-columns: 1fr 1fr;
    }

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

    #mobileMenu .menu-item-has-children>a {
        position: relative;
    }

    /* Rotate on open */
    #mobileMenu .menu-item-has-children.open>a::after {
        transform: rotate(225deg);
    }
        .home #heroVideo iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw; 

    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    pointer-events: none;
    aspect-ratio: 16 / 9;
}
}

@media only screen and (max-width:991px) {
    #mobileMenu {
        display: none;
    }

    #mobileMenu.active {
        display: block;
    }

    .hero-inner {
        padding: 0 20px 60px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .hero-left {
        max-width: 80%;
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .hero-inner {
        gap: 60px;
    }

    .logos-static {
        padding: 60px 20px;
    }

    .vision {
        padding: 60px 20px;

    }

    .sec-h {
        font-size: 36px;
        line-height: 42px;
    }

    .vvid-wrap h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .vvid-wrap {
        height: 300px;
    }
    .case-study-main-section { 
        margin-top: 0px; 
    }
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .scard-name {
        font-size: 18px;
        line-height: 24px;
    }

    .scard-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 24px;
    }

    .scard-icon {
        width: 60px;
        height: 60px;

    }

    .scard-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .scard-icon img {
        width: 30px;
    }

    .services {
        padding: 60px 20px;

    }

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

    .mq-main {
        padding: 0 0 60px 0;
    }

    .pricing-head-right p {
        font-size: 18px;
        line-height: 24px;

    }

    .pricing-head-right {
        width: 40%;
    }

    .pricing {
        padding: 60px 20px;
    }

    .blogs {
        padding: 60px 20px;

    }

    .pcard {
        padding: 20px;
    }

    .btitle {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        line-height: 23px;
        margin-bottom: 13px;
        margin-top: 12px;
    }

    .blog-grid {
        gap: 20px;
    }

    .stat-col {
        padding: 8px 16px;
    }

    .stats-inner {
        padding: 60px 20px;
    }

    .stats {
        margin: 0;
    }

    .cta-inner {
        max-width: 760px;
    }

    .main-header nav,
    .main-header .cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .approach-section .card-title {
        font-size: 20px;
    }

    .approach-section .card-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .approach-section .service-card {

        padding: 24px;
    }

    .approach-section {
        padding: 60px 20px;
    }

    .service-hero .hero-left {
        max-width: 90%;
    }

    .video-label {
        font-size: 18px;
    }

    .production-section {
        padding: 60px 20px;
    }

    /* Hide the desktop grid entirely */
    .timeline-top,
    .timeline-bottom,
    .circle-row {
        display: none !important;
    }

    /* Show the mobile vertical list */
    .timeline-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    .timeline-mobile::before {
        content: '';
        position: absolute;
        left: 35px;
        top: 36px;
        bottom: 36px;
        width: 1px;
        border-left: 1px dashed #E7FF1D;
        z-index: 0;
    }

    .mobile-step {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        padding: 0 0 44px;
        position: relative;
        z-index: 1;
    }

    .mobile-step:last-child {
        padding-bottom: 0;
    }

    .mobile-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #2E2E2E;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .mobile-circle span {
        font-size: 18px;
        font-weight: 400;
        color: #E7FF1D;
    }

    .mobile-text {
        padding-top: 12px;
    }

    .mobile-text .step-title {
        font-size: 20px;
        line-height: 26px;
        text-align: left;
        margin-bottom: 8px;
    }

    .mobile-text .step-desc {
        font-size: 16px;
        line-height: 26px;
        text-align: left;
        max-width: 100%;
    }

    .invisibility-section {
        padding: 60px 20px;
    }

    .featured {
        padding: 60px 0;
    }

    .stats-row {
        margin: 0;
    }

    .stats-foot {
        text-align: center;
        margin-top: 60px;
        font-size: 22px;
    }

    .logos-static {
        margin: -16px 0 0 0;
    }

    /* contact page css */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-details .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-details-left {
        order: 2;
    }

    .form-right {
        order: 1;
    }

    .what-happens-next .timeline-mobile {
        display: grid !important;
    }

    .popular-addons .addons-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .time-guidance-content {
        grid-template-columns: 1fr;
    }

    /* contact page css */
}

/* Hide arrows on mobile if they block the video */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 30px;
        padding: 10px;
    }

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

@media only screen and (max-width:767px) {
    
    .blog-row {
    grid-template-columns: 1fr;
  }
 
  /* .blog-row.reverse {
    direction: ltr;
  } */
 
  .blog-content {
    padding: 30px;
  }
    body .global-content h1 { 
    font-size: 37px !important;
    line-height: 46px !important; 
}
    body .global-content h2 { 
        font-size: 36px !important; 
        line-height: 42px !important;
    }
    body .global-content .hero-sub p span {
    font-size: 16px !important;
}
    .home #heroVideo iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw; 

    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    pointer-events: none;
    aspect-ratio: 16 / 9;
}
    .work-with-us .video-partner-sec p.section-description {
        width: 100%;
    }
.case-block .related-grid {
    display: flex;
    margin-bottom: 20px;
}
    .mq-main {
        padding: 60px 0px !important;
    }

    .work-with-us {
        padding: 60px 20px 140px;
    }

    .hero.service-hero {
        /* min-height:100vh; */
        position: relative;
        overflow: hidden;
    }

    .partnership-wrap {
        padding: 60px 20px;
    }

    .package-note {
        margin: 60px 0px 0px;
    }

    .pricing-head-right p {
        padding: 0px 20px 0px 0px;
    }

    .whats-covered {
        padding: 60px 20px;
    }

    .typical-time-guidance {
        padding: 60px 20px;
    }

    .time-guidance-content .time-block {
        padding: 15px;
    }

    .time-block .time-item {
        padding: 15px;
    }

    .typical-time-guidance .time-item .time-hours {
        padding: 8px;
        font-size: 13px;
    }

    .card-content {
        margin-top: 20px;
    }

    .pcard {
        align-items: flex-start;
    }

    #mobileMenu .mobile-logo img {
        max-width: 200px;
        width: 100%;
    }

    .hero video.hero-video {
        position: absolute;
    }

    .case-study-main-section {
        grid-template-columns: repeat(1, 1fr);
        padding: 0px 20px;
    }

    /* .hero-video {
        height: 50vh;
    } */
    .how-it-works {
        padding: 60px 20px;
    }

    .package-overview {
        padding: 60px 20px;
    }

    .popular-addons {
        padding: 60px 20px;
    }

    .strategy-audit {
        padding: 60px 20px;
    }

    .our-guarantee {
        padding: 60px 20px;
    }

    .looking-for-something-else {
        padding: 60px 20px;
    }

    .case-title {
        font-size: 30px;
    }

    .case-block {
        margin: 20px auto;
        margin-bottom: 0px;
    }

    /* Portfolio Page CSS Start */
    .portfolio-filter .filter-row .filter-btn.active {
        font-size: 13px;
        padding: 10px 15px;
    }

    .portfolio-filter .filter-row .filter-btn {
        font-size: 13px;
        padding: 10px 15px;
        margin-bottom: 15px;
        margin-right: 5px;
    }

    .case-grid h2.section-heading {
        font-size: 36px;
        line-height: 42px;
    }

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

    /* Portfolio Page CSS End */

    /* Unlock Event Potentia Page CSS Start */
    .work-with-us .video-partner-sec {
        display: block;
    }

    .whats-covered .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-col {
        width: 100%;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Unlock Event Potentia Page CSS End */
    .practice-grid {
        grid-template-columns: 1fr;
    }


    .hero-left {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 37px;
        line-height: 46px;
        margin-top: 10px;
    }

    .hero-eyebrow {
        font-size: 14px;

    }

    .hero-right {

        justify-content: flex-start;
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .hero-btns {

        justify-content: flex-start;
    }

    .hero-sub {

        width: 100%;
    }

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

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

    .testimonial-main .row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .testimonial-main .section {
        height: auto;
        grid-template-columns: 1fr !important;
    }



    .testimonial-main .card--text {
        padding: 20px 16px 18px;
        min-height: 150px;
    }

    .testimonial-main .card--text .quote {
        font-size: 13px;
    }

    .pricing .ptag {
        margin-bottom: 30px;
        text-align: left;
    }

    .pricing .ptitle {
        font-size: 20px;
        margin-top: 35px;
    }

    .ptag {
        font-size: 16px;
    }

    .testimonial-main .second-row .section--large-flip .card--image:first-child {
        order: 2;
    }

    .testimonial-main .second-row .section--large .card--text:last-child {
        order: 1;
    }

    .testimonial-main .second-row .section--small .card--image:first-child {
        order: 2;
    }

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

    /* .pricing-head {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    } */
    .pricing-head-left {
        width: 100%;
    }

    .pricing-head-right {
        width: 100%;
    }

    .pricing-head-right p {
        margin: 20px 0 0 0;
        text-align: left;
    }

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

    .stats-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .stat-col {
        padding: 32px 0px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .14);
    }

    .cta-inner {
        max-width: 100%;
    }

    .cta-band {
        margin: 0;
    }

    .footer-row {
        flex-direction: column;
        gap: 32px;
    }

    .footer-btm {
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    footer {
        padding: 60px 20px 28px;
    }

    .ftagline {
        text-align: center;
        font-size: 20px;
    }

    .fcol {
        text-align: center;
    }

    .footer-row {

        padding-bottom: 24px;
    }

    .play-btn img {
        width: 34px;
    }

    .vvid-wrap h3 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
        margin: 16px auto 0 auto;
        text-align: center;
    }

    .featured {
        padding: 60px 20px !important;
    }

    .service-videos-section {
        padding: 60px 20px;
    }

    .service-video {
        padding: 0px;
    }

    .with-without-video {
        padding: 60px 20px;
    }

    .practice-section {
        padding-bottom: 20px !important;
    }

    .partnership-wrap img {
        max-width: 150px;
    }

    .approach-section .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .approach-section .cards-row2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .banner-heading {
        font-size: 37px;
        line-height: 46px;
    }

    .service-hero .hero-left {
        max-width: 100%;
    }

    .service-video h3.sec-heading {
        font-size: 14px;
    }

    .approach-section .card-icon-wrap {
        margin-bottom: 34px;
    }

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

    .service-video-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        height: 400px;
    }

    .video-col.second-video-row {
        flex-direction: column-reverse;
    }

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

    .market-section {
        padding: 60px 20px;
    }

    .timeline-mobile::before {
        left: 30px;
    }

    .mobile-circle {
        width: 60px;
        height: 60px;
    }

    .invisibility-text-left.invisibility-text-left {
        text-align: center;
        margin: 0 auto;
        padding: 0px 20px;
        position: absolute;
        left: 0;
        max-width: 100%;
    }

    .invisibility-text-left h2 {
        text-align: center;
    }

    .invisibility-text-right {
        max-width: 100%;
        text-align: center;
        padding: 0px 20px;
        right: 0;
    }

    .invisibility-image-wrap {
        height: 400px;
    }

    .sec-sub {
        font-size: 16px;
    }

    .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .comparison-table {
        padding: 0px;
    }

    .approach-section .card-icon-wrap img {
        width: 24px;
    }

    .comparison-card {
        padding: 35px 20px;
    }

    .service-hero .hero-inner {
        padding: 40px 20px 0;
    }

    .approach-section .card-title {
        line-height: 1.4em;
    }

    .hero {
        min-height: 600px;
    }

    .pricing-card-template-template-pricing .hero-section.service-hero {
        height: 500px;
    }

    .pricing-card-template-template-pricing .service-hero .hero-bg img {
        height: 500px;
    }

    .page-template-Service-page-template .hero-section.service-hero {
        height: 500px;
    }

    .page-template-Service-page-template .service-hero .hero-bg img {
        height: 500px;
    }

    .page-template-Service-page-template .service-hero {
        height: 500px;
    }

    .footer-head img {
        width: 200px;
    }

    .section-heading {
        font-size: 14px;
    }

    .hero-inner {
        gap: 40px;
    }

    .popular-addons .addons-wrapper {
        margin-top: 50px;
    }

    .packages-grid {
        margin-top: 50px;
    }

    .popular-addons .addons-wrapper .addon-card p.addon-description {
        font-size: 16px;
        line-height: 22px;
        margin-top: 10px;
        min-height: 0px;
    }

    .popular-addons .addons-wrapper .addon-card h3.addon-title {
        font-size: 18px;
        line-height: 22px;
    }

    .popular-addons .addons-wrapper .addon-card {
        padding: 20px 22px;
    }

    .popular-addons .addons-wrapper .addon-card .addon-icon {
        width: 62px;
        height: 62px;
        justify-content: flex-start;
    }

    .page-template-template-portfoliopage .hero-section.service-hero {
        height: 500px;
    }

    .page-template-template-portfoliopage .hero-section.service-hero img {
        height: 500px;
    }

    .portfolio-filter {
        padding: 60px 20px;
    }

    .production-section {
        padding: 20px 20px;
    }

    .page-template-Contactpage-template .hero-section.service-hero img {
        height: 500px;
    }

    .page-template-Contactpage-template .hero-section.service-hero {
        height: 500px;
    }

    .popular-addons .addons-wrapper .addon-card .addon-icon img {
        width: 40px;
    }

    .row-large .card {
        height: 240px;
    }

    .row-large .card {
        width: 330px;
    }

    .social-links {
        justify-content: center;
    }

    .featured.featured-section .tc {
        padding: 0 20px;
    }

    .mq-main {
        gap: 16px;
    }

    .tc {

        margin: 0 0 40px 0;
    }

    .hero-sub {
        padding-left: 20px;
    }

    .header-inner {
        padding: 0;
    }

    .main-header .logo img {
        max-width: 160px;
        width: 100%;
    }

    .logos-static {
        margin: -16px 0 0 0;
    }

    .stats-foot {
        text-align: center;
        margin-top: 26px;
        font-size: 22px;
        line-height: 29px;
    }

    .hero {
        height: unset;
    }

    /* Build Trust Page CSS Start */

    .why-this-matters {
        padding: 60px 20px;
    }

    /* Build Trust Page CSS End */

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

    .work-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-with-us .container h2.section-heading {
        padding-bottom: 20px;
    }

    .work-with-us .container p.section-description {
        text-align: left;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .wpcf7 form {
        grid-template-columns: 1fr;
    }

    .wpcf7 form p {
        grid-column: span 1 !important;
    }

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

    .contact-details .container {
        grid-template-columns: repeat(1, 1fr);
    }

    .wpcf7 form {
        grid-template-columns: 1fr;
    }

    .wpcf7 form p {
        grid-column: span 1 !important;
    }

    .partnership-work-examples .videos-grid {
        grid-template-columns: 1fr;
    }

    .partnership-work-examples .section-title {
        font-size: 24px;
    }

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

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

    h2.section-title.sec-h {
        padding: 18px 20px 0px 20px;
    }

    .contact-details {
        padding: 60px 20px;
    }

    .form-right .wpcf7 {
        padding: 20px;
    }

    .contact-details .contact-heading {
        font-size: 36px;
        margin-bottom: 0px !important;
    }

    .form-details-left .contact-item {
        padding: 10px;
    }

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

    .what-happens-next {
        padding: 60px 20px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .package-card:nth-child(2) {
        transform: scale(1);
    }

    .popular-addons h2.section-title,
    .our-guarantee h2,
    .strategy-audit h2.section-title,
    .looking-for-something-else h2.section-title,
    .need-more-hours h2.section-title,
    .typical-time-guidance h2.section-title {
        font-size: 36px;
        line-height: 42px;
    }

    .trusted-section h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .work-with-us .container h2.section-heading {
        font-size: 36px;
        line-height: 42px;
    }

    .video-grid {
        margin-bottom: 0px;
    }

    .stat-num {
        font-size: 36px;
        line-height: 36px;
    }

    .cta-inner h2 {
        font-size: 36px;
    }

    .testimonial-main .card--text .quote {
        font-size: 16px !important;
    }

    .with-without-header {
        margin-bottom: 30px;
    }

    .with-without-video .hero-eyebrow {
        padding: 0px;
    }

    .typical-time-guidance .time-item .time-title {
        font-size: 13px;
    }

    .time-note {
        font-size: 14px;
    }

    .time-block .time-item {
        gap: 5px;
    }

    .need-more-hours {
        padding: 60px 20px;
    }

    .need-more-hours {
        padding: 60px 20px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0 1.25rem;
    }

    .video-card {
        height: 100%;
    }

    .invisibility-body {
        font-size: 15px;
        line-height: 26px;

    }

    .vision-header {
        margin-bottom: 40px;
    }

    /* .invisibility-text-left {
        top: 37px;
        left: 22px;
    } */

    .invisibility-text-right {
        bottom: 37px;
    }

    .invisibility-section .sec-h {
        font-size: 32px;
        line-height: 42px;
    }

    .invisibility-image-wrap::after {

        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.6) 100%);
    }

    /* .hero {
        min-height: 780px;
    } */

    .whats-covered .services-list {
        grid-template-columns: repeat(1, 1fr);
    }
}