:root {
    --primary-color-dark: #99312d;
    --primary-color-deep: #5e0000;
    --primary-color-light: #fff8f8;
    --primary-gradient-light: linear-gradient(158deg, #fff8f8, #ffe0e0);
    --primary-gradient-dark: linear-gradient(152deg, #5e0000, #0f0f0f);
    --text-color-light: #ffffff;
    --text-color-dark: #0f0f0f;
    --text-color-body: #171717;
    --background-color: #ffffff;
    --background-dark: #0f0f0f;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --container-padding: 60px;
    --border-radius: 24px;
}

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

html {
    scroll-behavior: smooth;
    /* In stubborn cases, hide horizontal overflow at the root as well */
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color-body);
    line-height: 1.5;
    /* Safety net against any accidental horizontal overflow */
    overflow-x: hidden;
}

/* Text selection colors */
::selection {
    color: var(--primary-color-dark); /* main red for text */
    background: rgba(153, 49, 45, 0.16); /* subtle red highlight */
}
::-moz-selection {
    color: var(--primary-color-dark);
    background: rgba(153, 49, 45, 0.16);
}

/* Fallback: show services items if Owl Carousel didn't init yet */
.services-carousel:not(.owl-loaded) {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.services-carousel:not(.owl-loaded)::-webkit-scrollbar { display: none; }
.services-carousel:not(.owl-loaded) .service-card {
    flex: 0 0 calc(33.333% - 24px);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    /* Stretch children to container width to avoid overflow with padded blocks (e.g., footer) */
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}

.container {
    margin: 0 auto;
    padding: 0 8%;
}

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

ul {
    list-style: none;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    /* margin-bottom: 24px; */
    color: var(--text-color-dark);
}

/* ============================================= */
/* 2. HEADER                                     */
/* ============================================= */

.main-header {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 16px 0;
    margin-top: 24px;
    position: relative;
    --squircle-radius: 24;
    --squircle-smooth: 10;
    background: paint(squircle);
    --squircle-fill: #0d0d0d;
    margin-left: 24px;
    margin-right: 24px;
}

.mobile-menu-circles {
    opacity: 0;
    position: absolute;
}

@supports (background: paint(squircle)) {
    .main-header {
        border-radius: 0;
        --squircle-fill: #0d0d0d;
    }
}

@supports not (background: paint(squircle)) {
    .main-header {
        border-radius: 24px;
        --squircle-fill: #0d0d0d;
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 90vh;
    min-height: 500px;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.main-banner-section {
    display: flex;
	justify-content: center;
    width: 100%;
    padding: 0 10%;
    align-items: center;
    height: 100%;
    gap: 48px;
}

.header__lang-switcher {
    position: absolute;
    right: 18px;
}

.header__logo img {
    /* Changed fixed width to max-width for responsiveness */
    max-width: 360px;
    height: auto; /* Ensure aspect ratio is maintained */
    width: 100%; /* Make it fill its container up to max-width */
}

.header__description {
    font-size: 24px;
    font-weight: 300;
    max-width: 528px;
}

.header__reviews {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.review-avatars {
    display: flex;
}

.review-avatars img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-left: -10px;
}

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

.header__nav ul {
    list-style-type: none;
    display: flex;
    gap: 12px;
    font-size: 16px;

    li {
        position: relative;
    }
}

li:before {
    content: '';
    height: 12px;
    width: 12px;
    background: transparent;
    position: absolute;
    right: 24px;
    transform: translateX(100px);
    transition: 0.3s ease-in-out;
    overflow: hidden;
    opacity: 1;
    border-radius: 50%;
}

li:hover:before {
    content: '';
    height: 0;
    opacity: 0;
    width: 0;
    top: 50%;
    background: #ffffff;
    position: absolute;
    transform: translateX(-100px);
}

.header__nav ul li a {
    padding: 18px 12px;
    text-shadow: 0 0 0 #ffffff;
    transition: 0.2s ease-in-out;
    position: relative;
    z-index: 8;
}

.header__nav ul li a:hover {
    text-shadow: 0 0 3px #ffffff;
}

.header__lang-switcher img {
    height: 24px;
}

/* ============================================= */
/* 3. HERO SECTION (ENCHANT)                     */
/* ============================================= */

.chart {
    width: 100%;
    position: relative;
    /* Set positioning context for children */
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chart-point--active {
    animation: pulse-point 1.5s infinite ease-in-out;
    stroke: var(--primary-color-dark);
    stroke-width: 0.5;
}

.chart-point {
    transform-origin: center;
    position: relative;
    transition: 0.2s ease-in-out;
    stroke: transparent;
}

.chart-point:hover {
    stroke: #5e0000;
    transition: 0.2s ease-in-out;
}

@keyframes pulse-point {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2.5);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content__title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.audience-chart svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.chart-line {
    fill: none;
    stroke: var(--primary-color-dark);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
	stroke-dashoffset: 0;
}

.tooltips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tooltip {
    position: absolute;
    height: fit-content;
    width: fit-content;
    background: #ffffffbf;
    padding: 12px 24px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    font-size: 16px;
    pointer-events: auto;
    transition: opacity 0.3s ease-in-out;
    transform: translate(-50%, 20px);
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes show-pointer {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes show-tooltip {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================= */
/* 4. TRUSTED BY SECTION                         */
/* ============================================= */

.trusted-by-section {
    padding: 60px 0;
    width: 83vw;
}

.trusted-by-content {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(158deg, rgba(255, 248, 248, 0.74) 0.6%, rgba(255, 240, 240, 0.74) 100%);
    backdrop-filter: blur(50px);
}

.trusted-by-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.trusted-by-title {
    color: #0F0F0F;
    font-family: Jost, serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    background-color: transparent;
}

.logo-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.logo-card {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    transition: ease-in-out 0.2s;
    background: linear-gradient(158deg, rgba(255, 248, 248, 0.60) 0.6%, rgba(255, 240, 240, 0.60) 100%);

}

.logo-card:hover {
    background: linear-gradient(158deg, rgba(255, 253, 253, 0.83) 0.6%, rgba(255, 240, 240, 0.77) 100%);
}

.logo-card img {
    max-width: 70%;
    max-height: 50%;
    object-fit: contain;
}

/*gutenberg*/
.has-white-background-color {
    padding: 24px;
    border-radius: 24px;
}


/* ============================================= */
/* 5. SERVICES SECTION                           */
/* ============================================= */
.serv-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;

    .service-card{
        width: 380px;
        transition: 0.2s ease-in-out;
    }
    .service-card:hover{
        box-shadow: 0 0 0 4px color(srgb 1 0.72 0.72 / 0.08);
    }
}
.services-section {
    background-color: #ffffff87;
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 24px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* --- Owl Carousel Conflict Fix --- */
.logo-carousel.owl-carousel {
    display: block;
    gap: 0;
    /* Disable our theme's gap property */
}
.services-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 80vw;
}
/* Ensure Services carousel uses Owl's layout when loaded */
.services-carousel.owl-carousel {
    display: block;
    gap: 0;
}

.services-carousel.owl-loaded .owl-item {
    box-sizing: border-box;
}

.services-carousel.owl-loaded .owl-item .service-card {
    width: 100%;
}

.logo-carousel.owl-carousel .logo-card {
    width: auto;
}

.logo-card {
    img {
        filter: grayscale(100);
        transition: ease-in-out 0.2s;
    }
}

.logo-card:hover {

    img {
        filter: grayscale(0);
        transition: ease-in-out 0.2s;
    }
}

.service-card {
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 540px;
    justify-content: space-between;
    min-width: 320px;

}

.service-card__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card__description {
    font-size: 20px;
}

.service-card__icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 380px;
}

.service-card--smm {
    background: var(--primary-gradient-light);
    color: var(--text-color-dark);
}

.service-card--creative {
    background: #121212;
    color: var(--text-color-light);
}

.service-card--strategy {
    background: linear-gradient(28deg, #5E0000 -24.13%, #0F0F0F 40.79%);
    color: var(--text-color-light);
}

/* ============================================= */
/* 6. WHY US SECTION                             */
/* ============================================= */

.why-us-section {
    padding: 80px 0 0 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    height: 588px;
    border-radius: 24px;
}

.why-us__title-wrapper {
    background: var(--primary-gradient-dark);
    color: var(--text-color-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
}

.why-us__title-wrapper video {
    position: absolute;
    width: 100%;
    border-radius: 24px;
    height: 480px;
}

.why-us__title-wrapper .videoOverlay {
    border-radius: 24px;
    background: linear-gradient(234deg, rgba(94, 0, 0, 0.93) -36.12%, rgba(4, 4, 4, 0.93) 32.67%);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.section-title--massive {
    color: #FFF;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    position: relative;
    z-index: 1;
    display: flex ;
    width: min-content;
    justify-content: center;
}

.why-us__features-wrapper {
    height: 100%;
    overflow: hidden;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.why-us__features::-webkit-scrollbar {
    display: none;
}

.feature-card {
    border-radius: var(--border-radius);
    padding: 24px;
    min-height: 315px;
}

.feature-card__title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.feature-card__description {
    font-family: var(--font-secondary);
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.feature-card--dark {
    color: var(--text-color-light);
    border-radius: 24px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04);
    transition: ease-in-out 2s;
    background: #0F0F0F;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.feature-card--dark svg {
    position: relative;
    z-index: 2;
}

.card-foreground {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    z-index: 1;
    top: 0;
    border-radius: 24px;
}

.fire {
    background: #5E0000;
    height: 47%;
    width: 86%;
    transform: rotate(285deg);
    border-radius: 279px;
    top: -52%;
    left: -18%;
    filter: blur(40px);
    position: absolute;
    animation: firePlace infinite ease-in-out 20s;
}

@keyframes firePlace {
    0% {
        transform: rotate(285deg);
        top: -52%;
        left: -18%;
        filter: blur(60px);
    }
    50% {
        transform: rotate(213deg);
        top: -32%;
        left: 13%;
        filter: blur(80px);
    }
    100% {
        transform: rotate(285deg);
        top: -52%;
        left: -18%;
        filter: blur(60px);
    }
}

.feature-card--light {
    background: var(--primary-gradient-light);
    color: var(--text-color-dark);
}

.why-us-section .feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
        flex-direction: column;
        align-items: flex-end;
}

.feature-card .feature-card__icon {
    width: 88px;
    height: 88px;
    opacity: 0.48;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.2s;
}
.feature-card:hover .feature-card__icon {
    opacity: 1;
}
.why-us-section .feature-card__icon svg,
.why-us-section .feature-card__icon img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
}

.why-us-section .feature-card--light .feature-card__icon { opacity: 0.28; }

.why-us__title-wrapper {
    min-height: 480px; /* keep layout consistent even without video */
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: radial-gradient(50% 50% at 50% 50%, #fff, #fffefe, #fff8f8);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center;
}

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

.testimonial-card__author img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.testimonial-card__author h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-card__author span {
    font-size: 14px;
    font-weight: 300;
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card__content blockquote {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
}

.testimonial-card__content blockquote span {
    font-weight: 900;
}

.testimonial-card__content blockquote span.highlight {
    color: var(--primary-color-dark);
}

.testimonial-video-player {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-radius: 829px;
    background-color: #f0f0f0;
    padding: 5px;
    gap: 10px;
}

.testimonial-video-player img {
    height: 70px;
    border-radius: 50%;
}

.testimonial-audio-player {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-radius: 50px;
    padding: 8px;
    gap: 4px;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
}

.testimonial-audio-player .audio-visualizer {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    height: 48px;
}

.testimonial-audio {
    display: none;
}

.play-button {
    background-color: var(--primary-color-deep);
    border: none;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.audio-visualizer {
    height: 24px;
    flex-grow: 1;
    width: 90%;
}

.footer {
    display: flex;
    padding: 84px 124px 48px 124px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    background: #FFF;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer__grid {
    display: flex
;
    gap: 48px;
    padding-bottom: 60px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer__grid > * {
    min-width: 0;
}

.footer img,
.footer svg {
    max-width: 100%;
    height: auto;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__logo {
    width: 96px;
    margin-bottom: 12px;
}

.footer__contact address,
.footer__contact a {
    font-style: normal;
    font-size: 16px;
    border-left: 2px solid #5e0000;
    padding-left: 4px;
    font-weight: 400;
}

.footer__links {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
}

.footer__links h4 {
    font-size: 20px;
    font-weight: 500;
    color: #510c06;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer a { overflow-wrap: anywhere; word-break: break-word; }

.footer__bottom-bar {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    flex-wrap: wrap; 
}

.footer__bottom-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.projects-grid {
    display: flex;
    gap: 24px;
    padding-bottom: 48px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 48px;
}

.project-card__content { position: relative; }
.project-card__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 16px;
    align-items: center;
}
.project-card__link {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(158deg, rgb(255 248 248 / 60%), rgb(255 247 247 / 86%));
    color: var(--text-color-dark);
    min-height: 324px;
    transition: ease-in-out 0.2s;
    min-width: 350px;
    height: 100%;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 380px;
}
.project-card__logo img { 
        max-width: 100px;
        max-height: 100px;
    }
.project-card__logo {    
     align-items: center;
    height: 120px;
    width: 120px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 50%;
    background: #ffffffbf; }

.circleAnimation {
    background-color: #99312D;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.employees-grid {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 48px;
        padding-bottom: 48px;
        flex-direction: row;
}
.employee-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(158deg, rgb(255 248 248 / 60%), rgb(255 247 247 / 86%));
    color: var(--text-color-dark);
    min-height: 324px;
    transition: ease-in-out 0.2s;
    height: 100%;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 380px;
}
.employee-card__header {
    display: flex;
    gap: 16px;
    align-items: center;
}
.employee-card__photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffffbf;
    overflow: hidden;
    flex: 0 0 auto;
    position: relative;
	filter: sepia(12%) hue-rotate(300deg);
}
.employee-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.employee-card__photo.has-video .employee-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
}
.employee-card:hover .employee-card__photo.has-video .employee-card__video { opacity: 1; }
.employee-card:hover .employee-card__photo.has-video .employee-card__photo-img { opacity: 0; transition: opacity 200ms ease-in-out; }
.employee-card__title .entry-title { font-size: 28px; margin: 0; }
.employee-card__position { opacity: 0.8; font-size: 14px; }
.employee-card .entry-summary { margin-top: 8px; }

.circleAnimation {
    background-color: #99312D;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.effectOverlay {
    position: absolute;
    backdrop-filter: blur(96px);
    height: 96%;
    width: 99%;
    left: 1px;
    z-index: 2;
}

.circleAnimationFirst {
    animation: bounce infinite 6s ease-in-out;
}

.circleAnimationSecond {
    animation: bounce-reverse infinite 6s ease-in-out;
}

@keyframes bounce {
    0% {
        top: 24%;
        left: 14%;
    }
    25% {
        top: 48%;
        left: 48%;
    }
    50% {
        top: 50%;
        left: 50%;
    }
    75% {
        top: 60%;
        left: 12%;
    }
    100% {
        top: 24%;
        left: 14%;
    }
}

@keyframes bounce-reverse {
    0% {
        bottom: 24%;
        right: 14%;
    }
    25% {
        bottom: 48%;
        right: 48%;
    }
    50% {
        bottom: 36%;
        right: 36%;
    }
    75% {
        bottom: 50%;
        right: 12%;
    }
    100% {
        bottom: 24%;
        right: 14%;
    }
}

.effectWrapperParallax {
    position: fixed;
    top: -5%;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.effectWrapperParallax .circleAnimationFirst {
    animation-delay: 3s;
    top: 24%;
    left: 14%;
}

.effectWrapperParallax .circleAnimationSecond {
    animation-delay: 4s;
    bottom: 24%;
    right: 14%;
}
.enchant-your-audience-container {
    padding-top: 100px;
    padding-bottom: 100px;
}


.blog-page {
    margin-bottom: 24px;
    margin-top: 24px;
}

.news-post-grid {
        display: flex;
        gap: 24px;
        flex-direction: row;
        flex-wrap: wrap;
    gap: 24px;

    article {
        padding: 24px;
        border-radius: 24px;
        background: linear-gradient(158deg, rgb(255 248 248 / 60%), rgb(255 247 247 / 86%));
        color: var(--text-color-dark);
        min-height: 324px;
        transition: ease-in-out 0.2s;
        min-width: 350px;
        height: 100%;
        backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 380px;
        width: 380px;

        .news-item-content {
            height: 100%;
            display: flex;
            gap: 12px;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        h2 {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
            line-height: 1;
        }
    }

    article:hover {
        box-shadow: 0 0 8px color(srgb 0 0 0 / 0.04);
    }
}

.news-filter-container {
        display: flex;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
        margin-top: 12px;
        margin-bottom: 12px;
        user-select: none;
        overflow-x: auto;
        

    .filter-item {
        display: flex;
        gap: 8px;
        padding: 24px;
        border-radius: 24px;
        background: linear-gradient(158deg, rgb(255 248 248 / 60%), rgb(255 247 247 / 86%));
        color: var(--text-color-dark);
        transition: ease-in-out 0.2s;
        backdrop-filter: blur(4px);
        cursor: pointer;
        flex-direction: row;
        align-items: center;
        label{
            white-space: nowrap;
        }

        .filter-title {
            cursor: pointer;
        }

        input {
            display: none;
        }
    }

    .filter-item .activated {
        border-radius: 12px;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 10px;
        left: 10px;
        display: block;
        background: #ffffff;
        transition: ease-in-out 0.2s;
    }

    .filter-item .active {
        border-radius: 12px;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 10px;
        left: 10px;
        display: block;
        background: #5e0000;
    }
}

.read-more {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;

    svg {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #5e0000;
        transition: ease-in-out 1s, transform ease 0.2s;
        transform: translateY(0);
    }

}

.read-more:before {
    content: '';
    height: 12px;
    width: 12px;
    background: #fff;
    position: absolute;
    right: 24px;
    transform: translateX(-10px);
    transition: 0.2s ease-in-out;
    overflow: hidden;
    opacity: 1;
    border-radius: 50%;
}

.read-more:hover:before {
    content: '';
    height: 0;
    opacity: 0;
    width: 0;
    top: 50%;
    background: #5e0000;
    position: absolute;
    transform: translateX(-100px);
}

.read-more:hover {
    svg {
        box-shadow: 0 0 12px color(srgb 1 0.7 0.7 / 0.72);
        transform: translateY(4px);
    }
}

.header-compact header.main-header {
    .header-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 480px;
        min-height: 480px;
        flex-direction: column;
        position: relative;
        z-index: 3;
        gap: 128px;
    }
}

.header-compact header.main-header .header__logo img {
    display: block;
    width: 240px;
    height: auto;
    transition: width 0.3s ease;
}

.header-compact header.main-header .header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-compact header.main-header .main-banner-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 10%;
    align-items: center;
    height: fit-content;
    gap: 48px;
}

.header-compact header.main-header .effectOverlay {
    position: absolute;
    backdrop-filter: blur(96px);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 24px;
}

.header-compact header.main-header .header__description {
    width: 64%;
}
.contact-section{
    margin-bottom: 24px;
    margin-top: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 48px;
    background: linear-gradient(158deg, #ffffff, #ffffff54);

    h2{
        margin-bottom: 0;
    }

    .contact-form{
        margin-top: 24px;   
    }
    .contact-card{
        padding: 24px;
    }
    .contact-desc{
        max-width: 528px;
    }

    .form-row{    
        display: flex;
        flex-direction: column;
        position: relative;

        label{
            transform: translate(10px, 10px);
            transition: transform .2s ease, color .2s ease;
            font-size: 12px;
        }

        input{
            width: 100%;
            max-width: 480px;
            height: 50px;
            border-radius: 14px;
            padding: 8px 12px;
            border: none;
            background: linear-gradient(158deg, #FFF8F8 0.6%, #FFF0F0 100%);
            transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
            font-size: 18px;
            font-family: 'Plus Jakarta Sans';
            color: #000;
        }
        input::placeholder{
            color: #935755;
        }
        input:focus{
            outline: none;
            background: linear-gradient(158deg, #fdeeee 0.6%, #FFF0F0 100%);
            box-shadow: 0 0 0 4px color(srgb 1 0.72 0.72 / 0.08);
        }

        &:has(input:focus) label {
            transform: translate(10px, 0);
        }
    }

    button{
        display: flex;
        width: 187px;
        height: 50px;
        padding: 0 12px;
        justify-content: center;
        align-items: center;
        gap: 12px; 
        border-radius: 14px;
        background: linear-gradient(158deg, #FFF8F8 0.6%, #FFF0F0 100%);
        color: #000;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        border: none;
        margin-top: 24px;
        background: linear-gradient(158deg, #FFF8F8 0.6%, #FFF0F0 100%);
        color: #000;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        border: none;
        margin-top: 24px;
        cursor: pointer;
     	transition: cubic-bezier(0.58, -0.71, 0, 2.51) 0.3s;
    }
    button:hover{
       box-shadow: 0 0 0 4px color(srgb 1 0.85 0.85);
    }
    .contact-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        svg{
            position: absolute;
            width: 368px;
            left: 48%;
        }
    }
}

@media (max-width: 1200px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }
  .chart-line {
    stroke-width: 2;
  }
    .header__description {
        gap: 24px;
        display: flex;
        flex-direction: column;
        font-size: 22px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .why-us__title-wrapper {
        padding: 60px 0;
    }
    .news-filter-container {
        overflow-x: scroll; 
    }

    .why-us__features-wrapper {
        height: 550px;
    }

    .services-carousel:not(.owl-loaded) .service-card { flex-basis: calc(50% - 24px); }

    .chart {
        width: 100vw;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        transform: scale(72%);
    }

    .tooltip {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        flex-wrap: nowrap;
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
    .container {
        padding: 0 10px;
        margin: 0 auto;
    }

    .header-container {
        flex-direction: column;
        height: 72vh;
    }

    .contact-section{
        width: 100%;
        gap: 0;
    }
.feature-card {
	min-height: 420px;
}
.header__lang-switcher{
    position: absolute;
    height: 48px;
    width: 48px;
    display: flex;
    z-index: 9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 8px;
	top: 0;
}
.header__lang-switcher img{
    height: 32px;
    width: 32px;
}
    .menuIcon {
        position: absolute;
        z-index: 5;
        display: flex;
        padding: 0 10px;
        right: 0px;

        svg {
            height: 48px;
            width: 48px;
        }
    }
    .menuSVG path {
        transform-box: fill-box;
        transform-origin: 50% 50%;
        transition: 0.2s ease-in-out;
      }

      .menuSVGclose path:first-child{
        transform: rotate(45deg) translate(6px, 6px);
      }

      .menuSVGclose path:last-child{
        transform: rotate(-45deg);
      }
      .menuSVGclose path:nth-child(2){
        opacity: 0;
      }
    .services-carousel:not(.owl-loaded) .service-card { flex-basis: calc(50% - 24px); }

    .contact-info svg{
        width: 360px;
        left: 0 !important;
        z-index: -1;
    }

    .header__logo img {
        width: 68%;
        height: auto;
    }

    .header__nav ul {
        list-style-type: none;
        display: flex;
        gap: 12px;
        font-size: 16px;
        flex-direction: column;
        width: 100%;
    }

    .main-banner-section {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 10%;
        align-items: center;
        height: 100%;
        gap: 48px;
        flex-direction: column;
    }

    .header__nav ul li {
        position: relative;
        width: 100%;
        font-size: 24px;
        padding-left: 20px;
        text-align: end;
    }

    .header__reviews {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-top: 8px;
        flex-direction: column;
    }

    .circleAnimation {
        background-color: #99312D;
        height: 100px;
        width: 100px;
        border-radius: 50%;
        position: absolute;
        z-index: 1;
    }

    .hero-visuals {
        width: 100%;
        transform: scale(0.8);
        margin-top: -50px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .testimonial-video-player {
        justify-content: center;
    }
    .serv-grid{
        justify-content: center;
    }
    /* Soften footer spacing on small screens to avoid horizontal overflow */
    .footer { 
        padding: 48px 24px 32px 24px;
     }
    .footer__grid {
        gap: 24px;
    }
    .why-us__title-wrapper .videoOverlay {
        width: 104%;
    }
    .why-us-section {
        padding: 24px 24px;
    }

    .section-title--massive {
        color: #FFF;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 62px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: left;
        position: relative;
        z-index: 1;
    }

    .trusted-by-section {
        padding: 48px 24px;
        width: 100vw;
    }

    .trusted-by-title,
    .section-title {
        font-size: 36px;
    }

    .section-title--massive {
        font-size: 68px;
        font-weight: 400;
    }

    .footer {
        display: flex;
        padding: 48px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        align-self: stretch;
        margin-top: 24px;
    }

    .footer__grid {
        display: flex;
        text-align: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

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

    .footer__links ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        width: 100%;
    }

    .footer__links ul li:before {
        content: none;
    }

    .footer__links ul li a {
        font-size: 18px;
    }

    .testimonials-section {
        padding: 0 24px;
    }

    .menu-open {
        display: flex;
        align-items: center;
        height: 100%;
        z-index: 99999;
        position: relative;
    }

    .mobile-menu-circles {

        .circleAnimationSecond {
            animation: bounce-reverse infinite 6s ease-in-out;
        }
        .circleAnimationFirst{
            background-color: #9b1914;
            height: 24px;
            width: 24px;
        }
        .circleAnimationSecond{
            background-color: #99312D;
            height: 48px;
            width: 48px;
        }

        .circleAnimationThird {
            background-color: #99312D;
            height: 72px;
            width: 72px;
            border-radius: 50%;
            position: absolute;
            z-index: 1;
            animation: bounce-reverse infinite 8s cubic-bezier(0.65, -0.63, 0.11, 1.07);
            animation-delay: 666ms;
        }
    }

    .header__nav {
        width: 100%;
        display: none;
        padding-right: 12px;
    }
    .header-compact header.main-header .header__nav {
        display: none;
        align-items: center;
        justify-content: flex-end;
    }

    .header-compact .header__reviews  .header__nav{
        width: 100%;
        display: none;
    }
    .header-compact .header__reviews{
        display: none;
    }


    .header-compact header.main-header .main-banner-section {
        justify-content: center;
        width: 100%;
        padding: 0 10%;
        align-items: center;
        height: 100%;
        gap: 24px;
        flex-direction: column;
    }
    .header-compact header.main-header .main-banner-section img{
        width: 68%;
        height: auto;
    }
    .header-compact header.main-header .header__description {
        width: 100%;
        font-size: 20px;
    }

    .header-compact header.main-header  .header-container{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 480px;
            min-height: 480px;
            flex-direction: column;
            position: relative;
            z-index: 3;
            gap: 128px;
    }
}
