/* Custom Styles */
@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-ExtraBold.eot');
    src: url('../fonts/Grift-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Grift-ExtraBold.woff2') format('woff2'),
        url('../fonts/Grift-ExtraBold.woff') format('woff'),
        url('../fonts/Grift-ExtraBold.ttf') format('truetype'),
        url('../fonts/Grift-ExtraBold.svg#Grift-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Fonts */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-grift: 'Grift';

    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --brand-red: #e32b13;
    --gray-text: #555;
    --light-gray: #f2f2f2;
    --green: #227D0D;
    --purple: #7B00FC;

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}

.text-green {
    color: var(--green) !important;
}

.text-purple {
    color: var(--purple) !important;
}


body {
    font-family: var(--font-montserrat);
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-grift);
}

h1 {
    font-size: clamp(2.5rem, 3.75vw + 1rem, 3.75rem);
    line-height: 106%;
}

h2 {
    font-size: clamp(2rem, 3.125vw + 1rem, 3.125rem);
    line-height: 106%;
}

h3 {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
    line-height: 106%;
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1rem;
}

.btn.btn-primary {
    display: inline-flex;
    height: 66px;
    padding: 0 51px 0 46px;
    align-items: center;
    border-radius: 88px;
    background: #227D0D;
    box-shadow: 0 0 34px 0 #BFFAB1;
    color: #FFF;
    text-align: center;
    font-family: 'Grift';
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    border: none;
    cursor: pointer;
    transition: all 0.8s ease !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    transform: scale(1.03) !important;
    box-shadow: 0 0 64px 0 #BFFAB1;
    background: #227D0D;
}




/* Navigation Header */
.header {
    padding: 24px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0.67), rgba(255, 255, 255, 0));
}

.logo-brand {
    height: 34px;
    width: auto;
}

/* Hero Section */
.hero {
    overflow: hidden;
    padding: 0 0 0 120px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: url(../images/banner-vector-bg.png) no-repeat center center / cover;
    background-position: right;
    background-color: #fff;
    background-size: 19%;
    background-position-y: -240px;
}

.badge-custom {
    color: #476121;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
    border-radius: 6px;
    border: 1.5px solid #E0F1BF;
    background: #F9FEE9;
    padding: 8px 10px;
    display: inline-flex;
    margin-bottom: 17px;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-subtitle {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    max-width: 501px;
    width: 100%;
    margin-bottom: 45px;
}

.hero-subtitle span {
    font-weight: 700;
    color: var(--purple);
}

.trust-signals {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    font-family: var(--font-grift);
}

.hero .col-lg-5.mb-5.mb-lg-0 {
    margin-top: 80px;
}

.hero h1 span {
    color: var(--purple);
}

/* Slider Section */
.slider-container {
    height: 750px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    position: relative;
    overflow: hidden;
    will-change: transform;
    /* mask-image: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 95%, transparent); */
}

.slider-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    will-change: transform;
}

.slider-column.up {
    animation: moveUp 40s linear infinite;
}

.slider-column.down {
    animation: moveDown 40s linear infinite;
}

/* .slider-column:hover {
    animation-play-state: paused;
} */

.slider-card {
    width: 100%;
    aspect-ratio: 0.82;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    /* height: 256px; */
    height: 30vh;
}

/* .slider-card:hover {
    transform: scale(1.02);
} */

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    max-width: 100%;
}

.slider-card .label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--white);
    font-family: var(--font-grift);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    display: inline-flex;
    padding: 8px 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 1.5px solid rgba(224, 241, 191, 0.18);
    background: linear-gradient(91deg, rgba(0, 0, 0, 0.18) 1.02%, rgba(102, 102, 102, 0.18) 99.64%);
    backdrop-filter: blur(30px);
    height: 24px;
}

.slider-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

@keyframes moveUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(calc(-50% - 15px / 2));
    }
}

@keyframes moveDown {
    from {
        transform: translateY(calc(-50% - 15px / 2));
    }

    to {
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-sec {
        text-align: center;
        padding-top: 100px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-container {
        height: 500px;
        margin-top: 60px;
    }

    .trust-signals {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .slider-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-column:last-child {
        display: none;
    }
}

/* Ratings & Trust Section */
.ratings {
    padding: 100px 0 140px;
    background: url(../images/banner-vector.png) no-repeat center center / cover;
    background-position: 0 -50px;
    background-size: 20%;
}

.ratings-title {
    margin-bottom: 16px;
    color: var(--black);
}

.ratings-badge-top {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 60px;
    border: 1px solid rgba(123, 0, 252, 0.10);
    font-size: 14px;
    font-weight: 500;
    line-height: 124%;
    color: var(--purple);
    margin-bottom: 27px;
    font-family: var(--font-montserrat);
}


.ratings-grid {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #E3E5E4;
    border-bottom: 1px solid #E3E5E4;
}

.rating-card {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-stars {
    color: #FFAE00;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--black);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 124%;
    opacity: 0.9;
}

.border-x {
    border-left: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
    position: relative;
}

/* Intersecting plus signs on the dividers */
.ratings-grid .row {
    position: relative;
}

.ratings-grid .row::before,
.ratings-grid .row::after {
    content: '+';
    position: absolute;
    color: #C4C4C4;
    font-size: 20px;
    font-weight: 300;
    line-height: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Vertical Separator Crosses */
.rating-card.border-x::before,
.rating-card.border-x::after,
.ratings-grid .row::before,
.ratings-grid .row::after {
    content: '+';
    position: absolute;
    color: #CCC;
    font-size: 24px;
    font-weight: 300;
    z-index: 2;
}

/* Position crosses at the top and bottom of the vertical line between col 1 and 2 */
.rating-card.border-x::before {
    top: -18px;
    left: -7px;
}

.rating-card.border-x::after {
    bottom: -19px;
    left: -7px;
}

/* Position crosses at the top and bottom of the vertical line between col 2 and 3 */
.ratings-grid .row::before {
    top: 0px;
    right: 32.7%;
}

.ratings-grid .row::after {
    bottom: 0;
    right: 32.7%;
    top: 146px;
}

.ratings-badge-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    color: var(--black);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 124%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 60px;
    border: 1px solid var(--purple);
    background: #FFF;
    gap: 10px;
}

.ratings-badge-bottom:hover {
    box-shadow: 0 0 20px rgba(123, 0, 252, 0.15);
    background-color: #fcfaff;
}

.ratings-grid:before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 196px;
    height: 205px;
    top: -2px;
    left: 0;
    z-index: 99;
}

.ratings-grid:after {
    content: "";
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 196px;
    height: 205px;
    top: -2px;
    right: 0;
    z-index: 99;
}

/* @media (max-width: 991px) {
    .border-x {
        border-left: none;
        border-right: none;
        border-top: 1px solid #EAEAEA;
        border-bottom: 1px solid #EAEAEA;
    }

    .rating-card.border-x::before,
    .rating-card.border-x::after,
    .ratings-grid .row::before,
    .ratings-grid .row::after {
        display: none;
    }
} */

/* Business Growth Section */
.growth {
    padding: 0 0 140px 0;
    background-color: #fff;
    overflow: hidden;
}

.growth-title {
    font-family: var(--font-grift);
    font-size: clamp(2.5rem, 3.75vw + 1rem, 3.75rem);
    /* font-weight: 800; */
    /* line-height: 1.1; */
    /* color: #000; */
    max-width: 900px;
    margin: 0 auto;
}

.growth-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.growth-card:hover {
    transform: scale(1.03);
}

.growth-card-img img {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 248px;
}

.growth-card-title {
    font-family: var(--font-grift);
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 118%;
    margin-bottom: 10px;
}

.growth-card-quote {
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.9;
}


.trust-wrap .trust-item {
    font-size: 1rem;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

@media (max-width: 991px) {
    /* .growth {
        padding: 80px 0;
    } */

    .growth-card {
        margin-bottom: 25px;
    }
}

/* Portfolio Showreel Section */
.portfolio-grid {
    padding: 0 0 112px 0;
    background-color: #fff;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 2.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 2.5rem;
}

.portfolio-title {
    font-size: clamp(2.5rem, 3.75vw + 1rem, 3.75rem);
}

.portfolio-tagline .tag-item {
    font-size: 1rem;
    color: #333;
}

.portfolio-card {
    padding: 100px 100px 24px 100px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.portfolio-card:hover {
    transform: scale(1.02);
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05); */
}

.bg-mint {
    background-color: #F0FFF4;
}

.bg-cream {
    background-color: #FAF9F0;
}

.bg-sand {
    background-color: #FEFBF2;
}

.bg-pale-blue {
    background-color: #F4F7FF;
}

.portfolio-img-wrap {
    margin-bottom: 60px;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.portfolio-img-wrap img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* .portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.03);
} */

.portfolio-meta {
    background: var(--white);
    padding: 12px;
    border-radius: 6px;
    display: inline-flex;
    color: #231F20;
}

.meta-item {
    color: #969696;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 106%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    color: var(--green);
}

.meta-divider {
    color: #231F20;
    font-weight: 300;
}

@media (max-width: 991px) {
    /* .portfolio-grid {
        padding: 80px 0;
    } */

    /* .portfolio-card {
        padding: 40px 20px;
        border-radius: 30px;
    } */

    .portfolio-img-wrap {
        margin-bottom: 30px;
    }

    .portfolio-meta {
        padding: 10px 20px;
        gap: 10px !important;
        flex-wrap: wrap;
        width: 100%;
    }

    .meta-item {
        font-size: 11px;
    }
}

/* Promises Section */

.promises {
    background-color: #fff;
    overflow: hidden;
    padding-bottom: 120px;
}

.promises-title {
    max-width: 800px;
    margin: 0 auto 60px;
}

.promise-card {
    border-radius: 12px;
    background: #FAFAFA;
    padding: 90px 34px 45px;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.promise-card:hover {
    transform: scale(1.03);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
    /* background-color: #fff; */
}

.promise-icon img {
    height: 36px;
    width: auto;
}

.promise-card-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 122%;
    color: var(--black);
}

.promise-card-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    /* .py-120 {
        padding: 80px 0;
    } */

    .promise-card {
        padding: 40px 30px;
    }
}


/* Process Section */
.process {
    background-color: #fff;
    padding-bottom: 120px;
}

.badge-purple {
    display: inline-flex;
    padding: 6px 0;
    /* border-radius: 60px; */
    /* border: 1px solid rgba(123, 0, 252, 0.10); */
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--purple);
    /* background: #FFF; */
}

.process-title {
    /* font-family: var(--font-grift); */
    max-width: 800px;
    margin: 0 auto;
}

.process-subtitle {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.step-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-img-wrap {
    background: #F9F9F9;
    border-radius: 38px;
    padding: 2px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.step-img-wrap img {
    border-radius: 38px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover .step-img-wrap img {
    transform: scale(1.03);
}

.step-label {
    color: var(--purple);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.step-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 106%;
}

.step-text {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}


/* FAQ Section */
.faq {
    background: url(../images/faq-bg.png) no-repeat center center / cover;
    padding: 120px 0;
    background-size: 70%;
}

.faq-cta-card {
    background: var(--white);
    border-radius: 20px;
    position: sticky;
    top: 100px;
}

.faq-title {
    font-family: var(--font-grift);
}

.faq .accordion-item {
    background: var(--white);
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq .accordion-button {
    background: transparent;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    box-shadow: none;
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 140%;
    font-family: var(--font-grift);
    opacity: 0.9;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--purple);
}

/* Custom Plus Icon on the Left */
.faq .accordion-button::after {
    display: none;
    /* Hide default Bootstrap icon */
}

.faq .accordion-button::before {
    content: '+';
    margin-right: 15px;
    font-size: 0;
    font-weight: 400;
    color: var(--purple);
    transition: transform 0.3s ease;
    background: url(../images/accordion-close-icon.svg) no-repeat center center / cover;
    width: 22px;
    height: 22px;
    min-width: 22px;
}

.faq .accordion-button:not(.collapsed)::before {
    content: '\2212';
    /* Minus sign */
    transform: rotate(180deg);
    background: url(../images/accordion-open-icon.svg) no-repeat center center / cover;
    width: 22px;
    height: 22px;
    min-width: 22px;
}

.faq .accordion-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    padding-left: 51px !important;
    padding-right: 51px !important;
    padding-top: 0;
}

@media (max-width: 991px) {
    .faq-cta-card {
        position: static;
        margin-bottom: 40px;
    }
}

/* Footer start here */

.footer-container {
    background: url(../images/book-call-bg.png) no-repeat center center / cover;
    padding: 0 0 50px 0;
    background-position: 0 0;
}

.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn img {
    width: 63px;
    height: 63px;
    object-fit: contain;
}

.form-img img {
    border-radius: 47px;
}

.hide-on-desktop {
    display: none;
}

.portfolio-img-wrap img {
    height: 335px;
    object-fit: contain;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 1);
    /* backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 10px 0;
}

.sticky-header .container-fluid {
    padding: 0 50px;
}

.sticky-header.is-sticky {
    top: 0;
}

.sticky-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-logo img {
    height: 35px;
    width: auto;
}

/* WhatsApp Pill */
.whatsapp-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 59px;
    background: #C8FFCA;
    padding: 8px 18px;
    text-decoration: none;
    transition: 0.3s;
    height: 37px;
    color: #000;
    font-family: var(--font-grift);
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 17px;
    justify-content: center;
}

.whatsapp-pill:hover {
    background: #227D0D;
    color: #fff;
}

.whatsapp-pill img {
    width: 37px;
    margin-left: -20px;
}

/* Sticky CTA Mockup */
.sticky-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-mockup {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-img {
    width: 63px;
    height: 63px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.symbol {
    font-size: 20px;
    /* font-weight: bold; */
    color: var(--black);
    font-family: var(--font-montserrat);
}

.you-badge {
    padding: 2px 12px;
    border-radius: 18px;
    background: #F2F2F2;
    font-family: var(--font-montserrat);
    font-size: 14px;
    text-transform: uppercase;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.sticky-btn {
    height: 50px !important;
    padding: 0 25px !important;
    font-size: 14px !important;
    box-shadow: none !important;
}

.btn.btn-primary.sticky-btn {
    color: #FFF;
    text-align: center;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    background: var(--purple);
    border-radius: 18px;
    box-shadow: 0 0 34px 0 rgba(134, 53, 246, 0.45) !important;
    height: 60px !important;
}

.sticky-contact {
    margin-left: auto;
    margin-right: 60px;
}

.static-banner img {
    width: 100%;
    height: 750px;
    object-fit: contain;
}

.static-banner {
    position: relative;
    padding-right: 20px;
}

.cta-sticky {
    display: none;
}

.mobile-layout.add-cta-sticky .cta-sticky {
    display: none;
}

.footer-container .badge-purple {
    display: none;
}

.faq {
    display: none;
}







/* Testimonials Marquee Section */
.testimonials-marquee {
    background: url(../images/testimonials-shadow.png) no-repeat center center / cover;
    position: relative;
    padding-bottom: 80px;
}

.top-rated-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 135px;
    z-index: 10;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 0 20px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    gap: 20px;
    padding-left: 30px;
    position: relative;
}

.marquee-content.rtl {
    animation: scroll-rtl 80s linear infinite;
}

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

/* .marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
} */

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

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

@keyframes scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #EBEBEB;
    padding: 30px;
    width: 480px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 32px;
    height: 32px;
}

.stars {
    color: #FFAE00;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 18px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 18px;
    white-space: normal;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: right;
}

.author-name {
    font-size: 18px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    color: var(--black);
}

.author-role {
    color: rgba(0, 0, 0, 0.70);
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 0;
}

.verified {
    display: inline-flex;
    align-items: center;
    position: absolute;
    right: -5px;
    bottom: -3px;
}

.card-footer {
    border-top: 1px solid #E7E7E7;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .top-rated-badge {
        display: none;
    }

    /* .testimonial-card {
        width: 340px;
        padding: 20px;
    } */

}

@media (max-width: 575px) {
    .growth-title {
        font-size: 28px;
    }

    /* .testimonial-card {
        width: 280px;
    } */
}

.marquee-wrapper:before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    width: 150px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.marquee-wrapper:after {
    content: "";
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    width: 150px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
}



/* Thank You Section Styles */
.thank-you-section {
    overflow: hidden;
    background: var(--white);
}

.thank-you-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
}

.thank-you-subtitle {
    font-size: 1.15rem;
    color: #333;
    max-width: 450px;
    font-weight: 500;
}

.meeting-mockup img {
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.btn-outline-purple {
    display: inline-flex;
    height: 60px;
    padding: 0 40px;
    align-items: center;
    border-radius: 50px;
    border: 1.5px solid var(--purple);
    color: var(--purple);
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-grift);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(123, 0, 252, 0.05);
}

.btn-outline-purple:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(123, 0, 252, 0.2);
}

.thank-you-quote-card {
    border-radius: 12px;
    background: url(../images/thankyou-bg.png) no-repeat center center;
    background-color: rgba(249, 249, 249, 0.20);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(123, 0, 252, 0.05);
    transition: transform 0.4s ease;
    padding: 130px 47px 50px 112px;
    height: 100%;
    background-position: right top;
    background-position: 150px -250px;
    background-size: 110%;
}

/* .thank-you-quote-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 0, 252, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
} */

.quote-icon,
.quote-text,
.author-block {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.6;
    color: #111;
    font-weight: 500;
    font-family: var(--font-montserrat);
}

.author-name {
    font-family: var(--font-grift);
    font-size: 1.25rem;
}

.author-role {
    font-size: 0.95rem;
}

@media (max-width: 1400px) {
    .meeting-mockup img {
        max-width: 360px;
        width: 100%;
    }

    .thank-you-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .thank-you-section {
        padding: 90px 0 100px;
        text-align: center;
    }

    .thank-you-title {
        font-size: 2.75rem;
    }

    .thank-you-subtitle {
        margin: 0 auto 30px;
    }

    .thank-you-quote-card {
        margin-top: 60px;
        text-align: left;
    }

    .btn-outline-purple {
        justify-content: center;
        width: 100%;
        max-width: 350px;
    }

    .thank-you-quote-card {
        padding: 20px;
    }

    .thank-you-subtitle {
        font-size: 1rem;
    }

    .quote-text {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .thank-you-section {
        padding: 90px 0 40px;
    }
}

.thank-you-left-content ul {
    list-style: none;
    margin: 0;
    padding: 0 0 30px 0;
}

.thank-you-left-content ul li {
    font-size: 1.15rem;
    color: #333;
    font-weight: 500;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.testimonial-author {
    margin-right: 0 !important;
}

.testimonial-text {
    flex: 1;
}

.card-footer.d-flex.align-items-center.justify-content-between {
    flex-direction: row-reverse;
}

.author-info {
    text-align: left;
}

.author-role {
    text-align: left;
}

.faq-title.mb-5 {
    margin-bottom: 0 !important;
}

.thank-you-left-content {
    margin-top: 50px;
}