@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Rockybilly';
    src: url('../fonts/Rockybilly.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quince';
    src: url('../fonts/Quince.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Quince';
    src: url('../fonts/Quince.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Quince';
    font-family: "Tangerine", cursive;
    font-family: "Arimo", sans-serif;
    /* letter-spacing: 1px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arimo", sans-serif;
}

p {
    font-family: "Arimo", sans-serif;
}

html {
    font-family: "Arimo", sans-serif;
}

:root {
    --primary-color: #941c1b;
    --dark-color: #000;
    --white-color: #fff;
    --rac-primary-color: #ee2e2e;
    --rac-font-color: #b4b4b4;
    --rac-white-color: #ffffff;
    --rac-black-color: #292929;
    --rac-border-color: #3d3d3d;
    --rac-border-radius: 20px;
    --rac-transition: all 0.3s;
    --rac-box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
    --font-display: 'Fraunces', Georgia, serif;
    --vf-surface: #111111;
    --surface: #0d0d0d;
    --vf-card-bg: #1a1a1a;
    --vf-red-glow: rgba(148, 28, 27, 0.18);
}

.primary-text {
    color: var(--primary-color);
}

/********************************************************
Go to Top Style
****************************************************/

.rac_top_icon a {
    display: flex;
    background-color: var(--rac-primary-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: var(--rac-transition) opacity 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    animation: border-transform 4s linear infinite alternate forwards;
}

@keyframes border-transform {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }

    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

.rac_top_icon a:active {
    background-color: var(--rac-black-color);
}

.rac_top_icon a.show {
    opacity: 1;
    visibility: visible;
}

.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: all 0.4s ease;
}

/* When sticky */

.header.sticky {
    position: fixed;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: headerSlideDown 0.7s ease forwards;
}

.header.sticky .navbar {
    background-color: rgb(32 32 32 / 98%) !important;
    backdrop-filter: blur(10px);
}

/* Smooth slide animation */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Prevent content jump */

body.header-fixed {
    padding-top: 90px;
}

/* Offcanvas full height fix */

@keyframes headerSlideDown {
    from {
        transform: translateY(-25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offcanvas {
    height: 100vh !important;
}

.header .navbar {
    width: 100%;
}

.header .navbar-brand img {
    width: 180px;
    /* base size */
    transition: transform 0.35s ease-in-out;
    transform-origin: left center;
}

.header.sticky .navbar-brand img {
    transform: scale(0.9);
    /* 150 / 200 */
}

.header.sticky .navbar-brand {
    padding: 0;
}

/* ===== MEGA MENU ===== */

.main-navbar .mega-dropdown {
    position: static;
}

.main-navbar .mega-menu {
    width: 950px;
    padding: 30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
}

.main-navbar .mega-menu-wide {
    width: 1050px;
}

/* ===== CARD STYLE ===== */

.main-navbar .mega-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.main-navbar .mega-card img {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.main-navbar .mega-card__content h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    font-family: "Arimo", sans-serif;
}

.main-navbar .mega-card__content p {
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

/* Hover */

.main-navbar .mega-card:hover {
    background: var(--primary-color);
}

.main-navbar .mega-card:hover h6,
.main-navbar .mega-card:hover p {
    color: #fff;
}

/* ===== MOBILE FALLBACK ===== */
/* =====================================
EMOVE DROPDOWN TOGGLER ARROW COMPLETELY
================================= */

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* =====================================
ASE NAV LINK
================================= */

.navbar-nav .nav-link {
    position: relative;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 10px !important;
    transition: color 0.3s ease;
    overflow: hidden;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

/* Hover / Active / Open dropdown color */

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: var(--rac-primary-color);
}

/* =====================================
EFT & RIGHT HOVER IMAGES
================================= */

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    top: 90%;
    width: 24px;
    height: 24px;
    background: url("../images/nav-hover.png") no-repeat center / contain;
    opacity: 0;
    transform: translateY(-50%);
    transition: left 0.45s ease, right 0.45s ease, opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

/* Start positions (outside) */

.navbar-nav .nav-link::before {
    left: -40px;
}

.navbar-nav .nav-link::after {
    right: -40px;
}

/* =====================================
OVE TO CENTER (BOTH SIDES)
================================= */

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before,
.navbar-nav .show>.nav-link::before {
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .show>.nav-link::after {
    right: 50%;
    opacity: 1;
    transform: translate(50%, -50%);
}

/* ===============================
ONTACT US – BASE STYLE
============================ */

.navbar-nav .nav-link-contact {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 30px !important;
    border-radius: 30px;
    border: 1.5px solid var(--primary-color);
    transition: all 0.35s ease;
    margin-left: 10px;
}

/* Hover & Active */

.navbar-nav .nav-link-contact:hover,
.navbar-nav .nav-link-contact.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 18px rgba(148, 28, 27, 0.35);
}

.navbar-nav .nav-link-contact::before,
.navbar-nav .nav-link-contact::after {
    display: none !important;
}

.navbar-nav .nav-link-contact {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.navbar-nav .nav-link-contact {
    animation: contactPulse 2.5s infinite;
}

@keyframes contactPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(148, 28, 27, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(148, 28, 27, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(148, 28, 27, 0);
    }
}

.navbar-nav:hover> :not(:hover) {
    opacity: 0.4;
}

.navbar-nav .dropdown-menu:hover> :not(:hover) {
    opacity: 0.4;
}

/* image arrow */
/* Glass top bar */

.top-glass-bar {
    position: relative;
    padding: 0px 0 12px;
}

/* Right alignment */

.social-right {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 16px;
}

/* Glass icon base */

.helpdesk-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

/* red underline accent */

.helpdesk-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #ef4444;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

/* hover */

.helpdesk-link:hover {
    color: #ef4444;
}

.helpdesk-link:hover::after {
    transform: scaleX(1);
}

/* focus (keyboard accessibility) */

.helpdesk-link:focus {
    outline: none;
    color: var(--rac-primary-color);
}

.glass-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    /* background: rgba(255, 255, 255, 0.15); */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.35); */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

/* Brand colors (always visible) */

.glass-icon.fb {
    color: #1877F2;
}

.glass-icon.ig {
    color: #E4405F;
}

.glass-icon.yt {
    color: #FF0000;
}

/* Crispy hover glow */

.glass-icon:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Subtle brand glow on hover */

.glass-icon.fb:hover {
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.35);
}

.glass-icon.ig:hover {
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.35);
}

.glass-icon.yt:hover {
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.35);
}

/* Mobile */
/* FULLSCREEN HERO */

.ck-hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

/* VIDEO BACKGROUND */

.ck-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Darken overlay */

.ck-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Optional floating pattern layer */

.ck-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../Images/banner_shapes.webp");
    opacity: 0.06;
    animation: floatLayer 40s linear infinite;
    z-index: 1;
}

@keyframes floatLayer {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-120px, -120px);
    }
}

/* CONTENT */

.ck-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
    letter-spacing: 1px;
}

.ck-hero__content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: "Arimo", sans-serif;
    letter-spacing: 0.2px;
}

.ck-hero__content h1 span {
    /* color: var(--primary-color); */
    font-family: 'Rockybilly';
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.ck-hero__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 550px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* BUTTON */

.cssbuttons-io-button {
    background: var(--primary-color);
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--primary-color);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    width: max-content;
    text-decoration: none;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--primary-color);
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon i {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--primary-color);
}

.cssbuttons-io-button:hover .icon i {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

/* RESPONSIVE */
/* About Section */

.rac_section {
    padding: 80px 0;
    background-color: #121212;
}

.rac_about_wrapper {
    position: relative;
    background-image: url(../images/about_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

/* .rac_about_wrapper::before {
    content: " ";
    background-image: url(../Images/about_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 45px;
    left: 95px;
    background-repeat: no-repeat;
} */

.rac_about_content {
    position: relative;
    max-width: fit-content;
    margin: auto;
    color: #fff;
}

.rac_about_content::before,
.rac_about_content::after {
    position: absolute;
    content: " ";
    background-repeat: no-repeat;
    background-size: 100%;
}

.rac_about_content::before {
    background-image: url(../images/about_leaf1.webp);
    width: 314px;
    height: 250px;
    left: -130px;
    top: 0;
}

.rac_about_content::after {
    background-image: url(../images/about_leaf2.webp);
    width: 356px;
    height: 431px;
    right: -200px;
    bottom: 5px;
}

.rac_about_box {
    border: 1px solid #3d3d3d;
    background: #292929;
    border-radius: 20px;
    ;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.rac_about_img {
    position: relative;
    border-radius: 20px;
    ;
    overflow: hidden;
}

.rac_about_img img {
    width: 100%;
    object-fit: cover;
}

.rac_about_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rac_about_play a {
    background-color: var(--rac-primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rac_about_play::before,
.rac_about_play::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

.rac_about_play:before,
.rac_about_play:after {
    background-color: var(--rac-white-color);
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

.rac_about_play:after {
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    30% {
        opacity: 0.4
    }

    100% {
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0
    }
}

@keyframes circlular {
    from {
        -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
        transform: rotate(0deg) translate(-12px) rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        transform: rotate(360deg) translate(-12px) rotate(-360deg);
    }
}

.rac_about_text {
    padding-right: 15px;
}

.rac_about_text h4 {
    color: var(--rac-primary-color);
    font-size: 30px;
}

.rac_about_text h3 {
    font-family: "Manrope", sans-serif;
    color: var(--rac-white-color);
    font-size: 32px;
    margin-top: 5px;
}

.rac_about_text p {
    margin-top: 20px;
}

.rac_about_bottom {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.rac_about_name {
    position: relative;
    z-index: 1;
}

.rac_about_name h4 {
    color: var(--rac-white-color);
    margin: 10px 0 5px;
}

/* About Section */

.rac_offer_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #1D1E1E;
    background-image: url(../images/offer_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_offer_wrapper::before {
    content: " ";
    background-image: url(../images/offer_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 70px;
    left: 55px;
    background-repeat: no-repeat;
}

.rac_offer_box {
    display: flex;
    align-items: center;
}

.rac_offer_img {
    min-width: 190px;
    z-index: 1;
}

.rac_offer_img img {
    /* animation: rotate 40s linear infinite; */
    border-radius: 50px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rac_offer_content {
    border: 1px solid var(--rac-border-color);
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    padding: 30px;
    position: relative;
    margin-left: -95px;
    padding-left: 125px;
}

.rac_section_heading {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.rac_section_heading h5 {
    color: var(--rac-primary-color);
    font-size: 25px;
}

.rac_section_heading h3 {
    color: var(--white-color);
    font-size: 26px;
    font-family: "Arimo", sans-serif;
    text-transform: uppercase;
}

.rac_section_heading h3::before,
.rac_section_heading h3::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    background-color: var(--rac-primary-color);
    top: 50%;
    transform: translateY(0%);
}

.rac_section_heading h3::before {
    margin-left: -17px;
}

.rac_section_heading h3::after {
    margin-left: 17px;
}

.rac_offer_text {
    margin-bottom: 15px;
}

.rac_offer_text h4 {
    color: var(--rac-white-color);
    margin-bottom: 12px;
    font-size: 22px;
    font-family: "Arimo", sans-serif;
}

.rac_offer_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--rac-border-color);
    padding-top: 12px;
}

.rac_offer_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rac_offer_price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rac_offer_price h4 {
    font-size: 24px;
}

.rac_offer_text p {
    color: var(--white-color);
}

.rac_offer_price h4 del {
    color: #747474;
}

.rac_offer_price h4:last-child {
    color: var(--rac-primary-color);
}

/* Offers section */

.read-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--rac-primary-color);
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

/* Bottom animated line */

.read-more-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--rac-primary-color);
    transition: width 0.5s ease;
}

/* Icon movement */

.read-more-btn i {
    display: inline-flex;
    transition: transform 0.4s ease;
}

.read-more-btn:hover {
    color: #fff;
}

/* Hover effects */

.read-more-btn:hover::after {
    width: 100%;
}

.read-more-btn:hover i {
    transform: translateX(6px);
}

/********************************************************
Services Section Style
****************************************************/

.rac_service_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_service_box {
    border: 1px solid var(--rac-border-color);
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    padding: 0 15px 15px;
    position: relative;
    text-align: center;
    margin: 50px auto 0;
}

.rac_service_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 0;
    outline: 10px solid #202020;
}

.rac_service_icon:hover {
    outline: 10px solid #202020;
}

.rac_service_icon.icon1 {
    background: linear-gradient(180deg, #FF4343 0%, #FF7676 100%);
}

.rac_service_icon.icon2 {
    background: linear-gradient(180deg, #F89B11 0%, #FFC876 100%);
}

.rac_service_icon.icon3 {
    background: linear-gradient(180deg, #65B500 0.01%, #9BEB36 100%);
}

.rac_service_icon.icon4 {
    background: linear-gradient(180deg, #2895FA 0.01%, #8CC8FF 100%);
}

.rac_service_icon.icon5 {
    background: linear-gradient(180deg, #9643FF 0%, #BB85FF 100%);
}

.rac_service_icon.icon6 {
    background: linear-gradient(180deg, #FB3CD1 0%, #FF74E0 100%);
}

.rac_service_icon.icon7 {
    background: linear-gradient(180deg, #3963F5 0%, #7C9AFF 100%);
}

.rac_service_icon.icon8 {
    background: linear-gradient(180deg, #0ABCD5 0%, #4FE6FB 100%);
}

.rac_service_text {
    margin-top: 20px;
}

.rac_service_text h4 {
    color: var(--rac-white-color);
    font-size: 22px;
    font-family: "Arimo", sans-serif;
}

.rac_service_text p {
    margin: 10px 0 5px;
    color: var(--rac-white-color);
}

.rac_service_text a {
    font-size: 14px;
    font-weight: 600;
    color: var(--rac-primary-color);
}

.rac_service_text a:hover img {
    animation: rac_lr 1s infinite alternate;
}

@keyframes rac_lr {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(10px)
    }
}

.menu-services-section {
    background: url("../Images/menu.webp") center/cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
    background-attachment: fixed;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* 30% overlay */
    z-index: 1;
}

.menu-services-section .container {
    z-index: 2;
}

.menu-content {
    position: relative;
    z-index: 1;
}

.menu-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.menu-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Slider Cards */

.menu-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 12px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.menu-card-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.menu-card {
    position: relative;
    background: #2b2b2b;
    border-radius: 20px;
    padding: 130px 25px 30px;
    max-width: 360px;
    text-align: center;
    color: #fff;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35); */
}

/* Floating Image */

.menu-card-img {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 135px;
    background: #ff7a5a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}

/* Text */

.menu-card-body h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.menu-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #cfcfcf;
}

/* Hover (optional premium feel) */

.menu-card:hover {
    transform: translateY(-6px);
    transition: 0.35s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Slick dots customization */

.menu-slider .slick-dots li button:before {
    font-size: 10px;
    color: #fff;
    opacity: 0.5;
}

.menu-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Responsive */

.stats-section {
    padding: 100px 0;
    position: relative;
    background-image: url(../Images/sweets.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.stat-box {
    position: relative;
    padding: 30px 15px;
    backdrop-filter: blur(6px);
    transition: 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #858585;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.4s;
}

.stat-icon i {
    font-size: 25px;
    color: #fff;
}

.stat-box h6 {
    margin-top: 20px;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    /* letter-spacing: 2px; */
}

.stat-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ee2e2e;
}

.plus {
    font-size: 32px;
    margin-left: 4px;
    color: #fff;
}

/* Mobile */
/********************************************************
News And Blog Section Style
****************************************************/

.rac_blog_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #1D1E1E;
}

.rac_blog_box {
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    text-decoration: none;
}

.rac_blog_img {
    max-height: 242px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.rac_blog_img::after {
    background: var(--rac-white-color);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 0.3;
    transition: all .5s linear;
}

.rac_blog_box:hover .rac_blog_img::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .5s linear;
}

.rac_blog_img img {
    width: 100%;
    object-fit: cover;
    min-height: 242px;
    transition: all .5s linear;
}

.rac_blog_box:hover .rac_blog_img img {
    transform: rotate(2deg) scale(1.1);
}

.rac_blog_info {
    padding: 20px;
    border: 1px solid var(--rac-border-color);
    border-radius: 0 0 20px 20px;
}

.rac_blog_date {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: normal;
}

.rac_blog_date p {
    font-size: 14px;
    color: var(--rac-font-color);
}

.rac_blog_text {
    margin-top: 15px;
}

.rac_blog_text h4 {
    color: var(--rac-white-color);
    margin-bottom: 10px;
    transition: var(--rac-transition);
}

.rac_blog_box:hover .rac_blog_text h4 {
    color: var(--rac-primary-color);
}

.rac_blog_text p {
    color: var(--rac-font-color);
}

/* ================================
TICKY HEADING
============================ */

.vck-howitworks {
    position: relative;
    height: 340vh;
    /* heading + 3 steps */
    background: #1D1E1E;
}

.vck-howitworks .rac_section_heading {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 0px 15px 0px;
    /* background: #ffffff; */
    text-align: center;
    margin-bottom: 0;
}

.vck-howitworks .rac_section_heading h5 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ee2e2e;
    font-weight: 600;
    margin-bottom: 8px;
}

.vck-howitworks .rac_section_heading h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
}

/* =====================================
TACKED STICKY PROCESS
================================= */

.vck-howitworks .process-row {
    position: sticky;
    top: 120px;
    /* below heading */
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background: #1D1E1E;
    padding: 0px 0;
}

/* stacking order */

.vck-howitworks .row-1 {
    z-index: 1;
}

.vck-howitworks .row-2 {
    z-index: 2;
}

.vck-howitworks .row-3 {
    z-index: 3;
}

/* image */

.vck-howitworks .process-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* content */

.vck-howitworks .process-content {
    padding-left: 40px;
}

.vck-howitworks .step-badge {
    display: inline-block;
    background: rgba(238, 46, 46, 0.1);
    color: #ee2e2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.vck-howitworks .process-content h4 {
    font-size: 27px;
    font-weight: 700;
    color: var(--rac-primary-color);
    margin-bottom: 5px;
}

.vck-howitworks .process-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--white-color);
    max-width: 520px;
}

/* mobile fallback */

@media (max-width: 991px) {
    .vck-howitworks {
        height: auto;
    }

    .vck-howitworks .rac_section_heading {
        position: relative;
    }

    .vck-howitworks .process-row {
        position: relative;
        top: 0;
        min-height: auto;
    }

        .vck-howitworks .process-content {
        padding-left: 15px;
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .rac_section {
    padding: 60px 0 50px;
    background-color: #121212;
}
}

.main-gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.main-gallery-buttons button {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Portfolio - Active state with star */

.main-gallery-buttons button:first-child {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

/* Star indicator before the active text */

.main-gallery-buttons button:first-child::before {
    content: 'Ã¢Ëœâ€¦';
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
}

/* Prints - Inactive state */

.main-gallery-buttons button:last-child {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Hover effects */

.main-gallery-buttons button:first-child:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.main-gallery-buttons button:last-child:hover {
    background-color: #e9ecef;
    color: #495057;
}

.main-gallery-buttons button.active::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 0;
    width: 16px;
    height: 16px;
    top: 32px;
    left: calc(50% - 10px);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-gallery-buttons button.active:hover::after {
    background-color: var(--accent-color);
}

.spl-footer {
    text-align: center;
}

.spotlight-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spotlight-group .badge-title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}

/* custom classes are always prefixed by "spl-" automatically */

.spl-like {
    background-image: url(demo/gallery/heart-outline.svg);
    background-size: 23px;
}

/* optionally, additional state to toggle the button: */

.spl-like.on {
    background-image: url(demo/gallery/heart.svg);
}

/*
     * Custom Animation:
     * -----------------
     */
/* custom scene transition (slide effect) */

.only-this-gallery.show .spl-scene {
    transition: transform 0.2s ease;
}

/* custom animation "visible state" (css context by custom classname "only-this-gallery" to apply these animation just on a specific gallery) */

.only-this-gallery.show .spl-pane>* {
    clip-path: circle(100% at center);
    transition: transform 0.35s ease, opacity 0.65s ease, clip-path 0.8s ease;
}

/* custom animation "hidden state" ("custom" is the name of the animation you pass as gallery option) */

.only-this-gallery .spl-pane .custom {
    clip-path: circle(0px at center);
    transition: transform 0.65s ease, opacity 0.65s ease;
}

/* animation state when gallery is hidden */

#spotlight.only-this-gallery {
    clip-path: circle(0px at center);
}

/* animation state when gallery will open */

#spotlight.only-this-gallery.show {
    clip-path: circle(100% at center);
    transition: clip-path 0.65s ease 0.15s;
}

/********************************************************
Footer Section Style
****************************************************/

.rac_footer_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    background-image: url(../Images/footer_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_footer_wrapper::before {
    content: " ";
    background-image: url(../Images/footer_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 25px;
    left: 75px;
    background-repeat: no-repeat;
}

.rac_app_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--rac-primary-color);
    border-radius: var(--rac-border-radius);
    padding: 30px 20px 30px 60px;
    gap: 20px 30px;
}

.rac_app_text {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.rac_app_text h3 {
    font-size: 35px;
    color: var(--rac-white-color);
    font-weight: 700;
}

.rac_app_stores {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rac_app_img {
    background: var(--rac-white-color);
    color: var(--rac-primary-color);
    padding: 30px;
    text-align: center;
    border-radius: 12px;
}

.rac_app_img span {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    opacity: 0.85;
}

.rac_call_number {
    font-size: 26px;
    font-weight: 700;
    color: var(--rac-primary-color);
    text-decoration: none;
}

.rac_call_number:hover {
    text-decoration: underline;
}

.rac_app_img img:first-child {
    z-index: 1;
}

.rac_footer_content {
    position: relative;
    margin-top: 55px;
}

.rac_footer_content ul {
    padding-left: 0rem;
}

.rac_footer_heading {
    margin-bottom: 15px;
}

.rac_footer_links-custom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 0px 30px;
    /* row gap | column gap */
    padding: 0;
    margin: 0;
    list-style: none;
}

.rac_footer_heading h6 {
    color: var(--rac-white-color);
}

.rac_footer_about p {
    max-width: 350px;
    color: #fff;
}

.rac_footer_social {
    display: flex;
    gap: 35px;
    margin-top: 15px;
}

.rac_footer_social li a svg {
    transition: var(--rac-transition);
}

.rac_footer_social li a:hover svg {
    fill: var(--rac-primary-color);
    transform: rotate(360deg);
}

.rac_footer_links li {
    margin-bottom: 15px;
    position: relative;
    /* margin-left: 15px; */
    transition: var(--rac-transition);
    list-style: none;
}

.rac_footer_links li:hover {
    margin-left: 0;
}

/* .rac_footer_links li::before {
    content: " ";
    top: 50%;
    left: 0;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--rac-font-color);
    border-radius: 50%;
    transform: translateY(-50%);
    margin-left: -15px;
    opacity: 1;
    visibility: visible;
    transition: var(--rac-transition);
} */

.rac_footer_links li:hover::before {
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    background-color: var(--rac-primary-color);
}

.rac_footer_links li:last-child {
    margin-bottom: auto;
}

.rac_footer_links li a {
    color: var(--rac-font-color);
    text-decoration: none;
}

.rac_footer_links li a:hover {
    color: var(--rac-primary-color);
}

.rac_footer_address li {
    margin-bottom: 15px;
}

.rac_footer_address li a {
    color: var(--rac-font-color);
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.rac_footer_address li a:hover {
    color: var(--rac-primary-color);
}

.rac_footer_address li a svg {
    transition: var(--rac-transition);
}

.rac_footer_address li a:hover svg {
    fill: var(--rac-primary-color);
}

.rac_footer_form p {
    margin-bottom: 20px;
    max-width: 255px;
}

.rac_footer_form .rac_form_input input {
    padding-right: 75px;
}

.rac_copyright_wrapper-policies {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.rac_copyright_wrapper-policies a {
    position: relative;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color .3s ease;
}

/* vertical divider */

.rac_copyright_wrapper-policies a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #999;
}

/* hover effect */

.rac_copyright_wrapper-policies a:hover {
    color: #e63946;
}

.rac_copyright_wrapper-policies a {
    position: relative;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color .3s ease;
}

/* vertical divider */

.rac_copyright_wrapper-policies a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #999;
}

/* hover effect */

.rac_copyright_wrapper-policies a:hover {
    color: #e63946;
}

.rac_form_input button {
    position: absolute;
    right: 0;
    top: 0;
    width: 59px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rac-primary-color);
    border-radius: 5px;
}

.rac_copyright_wrapper {
    position: relative;
    padding: 12px;
    background-color: #171717;
}

.rac_copyright_text {
    text-align: end;
    color: #fff;
}

.rac_copyright_text p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Wrapper */

.catering-delivery-section .catering-delivery-section__wrapper {
    position: relative;
    overflow: hidden;
}

/* Image behaving like background */

.catering-delivery-section .catering-delivery-section__bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay */
/* .catering-delivery-section .catering-delivery-section__wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
} */
/* Content */

.catering-delivery-section .catering-delivery-section__content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 80px 0;
    max-width: 520px;
}

/* Title */

.catering-delivery-section .catering-delivery-section__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.catering-delivery-section .catering-delivery-section__title span {
    color: #941c1b;
}

/* Text */

.catering-delivery-section .catering-delivery-section__text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #eaeaea;
}

/* Points list */

.catering-delivery-section .catering-delivery-section__points {
    list-style: none;
    padding: 0;
}

.catering-delivery-section .catering-delivery-section__points li {
    margin-bottom: 12px;
    font-size: 16px;
}

.catering-delivery-section .catering-delivery-section__points i {
    color: #941c1b;
    margin-right: 10px;
}

.vardaan-values-pillars {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #000, #121212, #000);
    color: #fff;
    overflow: hidden;
}

/* polygon shapes */

.vardaan-values-pillars:before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #951c1c, #bd4647);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 70%);
    opacity: .12;
}

.vardaan-values-pillars:after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: linear-gradient(45deg, #951c1c, #bd4647);
    clip-path: polygon(30% 0, 100% 30%, 100% 100%, 0 100%);
    opacity: .12;
}

/* heading */

.vardaan-values-pillars .values-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.vardaan-values-pillars .values-title p {
    color: #bfbfbf;
    margin-top: 10px;
}

/* row */

.vardaan-values-pillars .values-row {
    position: relative;
}

/* pillar */

.vardaan-values-pillars .value-pillar {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

/* vertical divider */

.vardaan-values-pillars .value-pillar:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.15);
}

.vardaan-values-pillars .col-lg-3:last-child .value-pillar:after {
    display: none;
}

/* icon */

.vardaan-values-pillars .value-pillar .pillar-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: linear-gradient(45deg, #951c1c, #bd4647);
    margin-bottom: 18px;
}

/* title */

.vardaan-values-pillars .value-pillar h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1.1px;
}

/* text */

.vardaan-values-pillars .value-pillar p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.6;
}

/* hover */

.vardaan-values-pillars .value-pillar:hover .pillar-icon {
    transform: scale(1.1);
    transition: .3s;
}

/* Section spacing */

.kitchen-infra-section {
    padding: 60px 0;
    background: #413d3d;
}

/* IMAGE GRID */

.kitchen-infra-section .kitchen-infra-section__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.kitchen-infra-section .kitchen-infra-section__img {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kitchen-infra-section .kitchen-infra-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.kitchen-infra-section .kitchen-infra-section__img:hover img {
    transform: scale(1.08);
}

/* third image bigger */

.kitchen-infra-section .kitchen-infra-section__img3 {
    grid-column: span 2;
    height: 300px;
}

/* CONTENT */

.kitchen-infra-section .kitchen-infra-section__tag {
    display: inline-block;
    background: var(--rac-primary-color);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.kitchen-infra-section .kitchen-infra-section__title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.kitchen-infra-section .kitchen-infra-section__title span {
    color: var(--rac-primary-color);
}

.kitchen-infra-section .kitchen-infra-section__subtitle {
    font-weight: 600;
    color: #ddd;
    margin-bottom: 20px;
}

.kitchen-infra-section .kitchen-infra-section__text {
    line-height: 1.7;
    margin-bottom: 10px;
    color: #ffffff;
}

/* POINTS */

.kitchen-infra-section .kitchen-infra-section__points {
    list-style: none;
    padding: 0;
}

.kitchen-infra-section .kitchen-infra-section__points li {
    margin-bottom: 12px;
    font-size: 16px;
}

.kitchen-infra-section .kitchen-infra-section__points i {
    color: var(--rac-primary-color);
    margin-right: 10px;
}


/* breadcrumb */
/* ===== Section ===== */
.breadcrumb-section {
    position: relative;
    height: 380px;
    display: flex;
    align-items: end;
    overflow: hidden;
}

/* Image Wrapper */
.breadcrumb-section .breadcrumb-media {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 1;
}

/* Image */
.breadcrumb-section .breadcrumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

/* Overlay */
.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* Content */
.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

/* Title */
.breadcrumb-section .breadcrumb-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb-section .breadcrumb-nav .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item.active {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .breadcrumb-section {
        height: 260px;
    }

    .breadcrumb-section .breadcrumb-title {
        font-size: 28px;
        display: none;
    }
}

/* breadcrumb */





/* About page */

/* MAIN BAR */
.top-marquee {
    background: linear-gradient(90deg, #a31313, #7a0c0c);
    padding: 10px 0;
    overflow: hidden;
}

/* WRAPPER */
.top-marquee .marquee-wrapper {
    white-space: nowrap;
    overflow: hidden;
}

/* TRACK */
.top-marquee .marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

/* TEXT STYLE */
.top-marquee .marquee-track span {
    display: inline-block;
    margin: 0 18px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #f8dede;
    font-weight: 500;
    text-transform: uppercase;
}

/* DIAMOND STYLE */
.top-marquee .marquee-track span:nth-child(2n) {
    color: #ffffff;
    opacity: 0.6;
}

/* HOVER PAUSE */
.top-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* ANIMATION */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTION BASE */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #7a0c0c, #3b0000);
    overflow: hidden;
    color: #fff;
}

/* RIGHT SIDE IMAGE */
.about-hero .about-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;

    background: url('../Images/sweets.webp') no-repeat center center/cover;

    /* diagonal cut */
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);

    z-index: 1;
}

/* IMAGE DARK OVERLAY */
.about-hero .about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.2),
            transparent);
}

/* CONTENT */
.about-hero .about-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

/* SUBTITLE */
.about-hero .about-hero-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #d9a3a3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* TITLE */
.about-hero .about-hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Fraunces', Georgia, serif;
}

.about-hero .about-hero-title em {
    font-style: italic;
    font-family: "Fraunces", serif;
}

.about-hero .about-hero-title span {
    color: #e6a1a1;
    font-weight: 600;
}

/* DESCRIPTION */
.about-hero .about-hero-description {
    font-size: 15px;
    color: #f3dede;
    max-width: 450px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* FOOTER */
.about-hero .about-hero-footer {
    font-size: 11px;
    letter-spacing: 2px;
    color: #c08b8b;
}

.about-hero .vf-hero-ghost {
    position: absolute;
    bottom: -2rem;
    right: 5rem;
    font-family: "Fraunces", serif;
    font-size: clamp(6rem, 8vw, 20rem);
    font-weight: 700;
    font-style: italic;
    color: rgb(255 255 255 / 7%);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    z-index: 2;
}

.about-hero ul {
    list-style: url(../images/nav-hover.png);
    font-size: 15px;
    letter-spacing: 1.1px;
}

/* SECTION */
.about-section {
    background: #f5f1ee;
    padding: 60px 0;
}

/* IMAGE */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.about-image-wrapper img {
    width: 100%;
    display: block;
}

/* RED DRAG EFFECT */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 28, 28, 0.7);
    clip-path: circle(0px at 50% 50%);
}

/* BADGE */
.about-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #8b1c1c;
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
}

/* RIGHT */
.about-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b1c1c;
    position: relative;
    padding-left: 30px;
}

.about-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #8b1c1c;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 20px 0;
}

.about-title span {
    color: #8b1c1c;
    font-style: italic;
}

.about-right p {
    color: #666;
    line-height: 1.8;
}

/* QUOTE */

.vf-floated-quote {
    background: var(--primary-color);
    color: #fff;
    padding: 2rem 2rem;
    border-radius: 3px;
    margin: 2rem 0;
    position: relative;
}

.vf-floated-quote::before {
    content: '"';
    font-family: "Fraunces", serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .12);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

.vf-floated-quote p {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

/* CARDS */
.about-card {
    border: 1px solid #e5dddd;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-number {
    color: #8b1c1c;
    font-style: italic;
}

.about-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #8b1c1c;
    transition: 0.4s;
    left: 0;
}

.about-card:hover::before {
    height: 100%;
}

.about-card * {
    position: relative;
    z-index: 1;
    font-family: "Fraunces", serif;
}

.about-card:hover {
    color: #fff;
}

.card-number {
    font-size: 2rem;
    font-style: italic;
    font-weight: 200;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: .8rem;
    display: block;
}

.about-card h5 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .4rem;
    letter-spacing: .03em;
}

.about-card p {
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.about-card:hover h5,
.about-card:hover p,
.about-card:hover .card-number {
    color: #fff;
}



/* ════════════════════════════════
   CAPTION BAND — COOK / DELIVER
════════════════════════════════ */
.vf-band {
    background: var(--primary-color);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.vf-band .vf-band-inner {
    padding: 3.5rem 0;
    text-align: center;
}

.vf-band .vf-band-text {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 200;
    color: #fff;
    line-height: 1.2;
}

.vf-band .vf-band-text em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 220, 220, .85);
}

.vf-band .vf-band-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 1rem;
}

.vf-band .vf-band-rule span {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
    display: block;
}

.vf-band .vf-band-rule i {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .5);
    transform: rotate(45deg);
    display: block;
}



/* ════════════════════════════════
   SECTION — KITCHEN
════════════════════════════════ */
.vf-kitchen {
    padding: 60px 0;
    background: #F8F3EC;
    position: relative;
    overflow: hidden;
}

/* Pinned number background */
.vf-kitchen .vf-kitchen-bg-num {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    font-family: "Fraunces", serif;
    font-size: clamp(12rem, 25vw, 26rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(148, 28, 27, .04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.vf-kitchen .vf-kitchen-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.vf-kitchen .vf-kitchen-eyebrow span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--primary-color);
}

.vf-kitchen .vf-kitchen-heading {
    font-family: "Fraunces", serif;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    font-weight: 200;
    line-height: 1.05;
    color: var(--ink);
}

.vf-kitchen .vf-kitchen-heading em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 400;
}

.vf-kitchen .vf-kitchen-body {
    font-size: .97rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

/* Stacked image band */
.vf-kitchen .vf-kitchen-imgs {
    position: relative;
    z-index: 1;
}

.vf-kitchen .vf-kitchen-img-main {
    width: 100%;
    height: 420px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.vf-kitchen .vf-kitchen-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vf-kitchen .vf-kitchen-img-sm {
    height: 180px;
    border-radius: 3px;
    overflow: hidden;
}

.vf-kitchen .vf-kitchen-img-main img,
.vf-kitchen .vf-kitchen-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .85s var(--ease-expo);
}

.vf-kitchen .vf-kitchen-img-main:hover img,
.vf-kitchen .vf-kitchen-img-sm:hover img {
    transform: scale(1.06);
}

/* Pillars — alternating layout */
.vf-kitchen .vf-pillar-list {
    margin-top: 2.5rem;
}

.vf-kitchen .vf-pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 1.2rem 1.4rem;
    border-left: 2px solid transparent;
    transition: border-color .3s, background .3s;
    border-radius: 0 3px 3px 0;
    margin-bottom: .6rem;
}

.vf-kitchen .vf-pillar:hover {
    border-left-color: var(--primary-color);
    background: rgb(148 28 27 / 7%);
}

.vf-kitchen .vf-pillar .vf-pillar-n {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 200;
    color: var(--primary-color);
    line-height: 1;
}

.vf-kitchen .vf-pillar .vf-pillar-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: .25rem;
}

.vf-kitchen .vf-pillar .vf-pillar-desc {
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}


/* ════════════════════════════════
   PASSION CAPTION
════════════════════════════════ */
.vf-passion {
    background: #3a0a09;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vf-passion .vf-passion-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(148, 28, 27, .5) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.vf-passion .vf-passion-text {
    position: relative;
    z-index: 1;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4.5vw, 5rem);
    font-weight: 200;
    font-style: italic;
    color: #FFF5F5;
    line-height: 1.15;
}

.vf-passion .vf-passion-text strong {
    font-style: normal;
    font-weight: 700;
    color: rgba(255, 180, 178, .9);
}

.vf-passion .vf-passion-sub {
    position: relative;
    z-index: 1;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(255, 190, 190, .3);
    margin-top: .8rem;
}

/* ════════════════════════════════
   SECTION — VISION / MISSION / VALUES
════════════════════════════════ */
.vf-vmv {
    padding: 8rem 0;
    background: #FDF9F5;
    position: relative;
    overflow: hidden;
}

.vf-vmv::after {
    content: 'VMV';
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18rem;
    font-weight: 700;
    color: rgba(148, 28, 27, .03);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.vf-vmv .vf-vmv-header {
    text-align: center;
    margin-bottom: 5rem;
}

.vf-vmv .vf-vmv-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #941c1b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.vf-vmv .vf-vmv-eyebrow span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #941c1b;
}

.vf-vmv .vf-vmv-main-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 48px;
    font-weight: 200;
    line-height: 1.0;
    color: var(--ink);
}

.vf-vmv .vf-vmv-main-heading em {
    font-style: italic;
    color: #941c1b;
    font-weight: 400;
}

/* VM cards — asymmetric */
.vf-vmv .vf-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.vf-vmv .vf-vm-card {
    background: #fff;
    border-radius: 3px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow .4s, transform .4s var(--ease-expo);
}

.vf-vmv .vf-vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: #941c1b;
    transition: height .6s var(--ease-expo);
}

.vf-vmv .vf-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(148, 28, 27, .1);
}

.vf-vmv .vf-vm-card:hover::before {
    height: 100%;
}

.vf-vmv .vf-vm-card .vf-vm-letter {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 6rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(148, 28, 27, .07);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color .4s;
}

.vf-vmv .vf-vm-card:hover .vf-vm-letter {
    color: rgba(148, 28, 27, .12);
}

.vf-vmv .vf-vm-card .vf-vm-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #941c1b;
    margin-bottom: .8rem;
    display: block;
}

.vf-vmv .vf-vm-card .vf-vm-h {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: .8rem;
    line-height: 1.2;
}

.vf-vmv .vf-vm-card .vf-vm-p {
    font-size: .93rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--muted);
    margin: 0;
}

/* Values — overlapping card strip */
.vf-vmv .vf-vals-label {
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #941c1b;
    margin-bottom: 2.5rem;
}

.vf-vmv .vf-vals-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.vf-vmv .vf-val-card {
    background: #fff;
    border: 1px solid rgba(148, 28, 27, .12);
    border-radius: 3px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .45s var(--ease-expo), box-shadow .45s, border-color .3s;
}

.vf-vmv .vf-val-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: #941c1b;
    transition: width .5s var(--ease-expo);
}

.vf-vmv .vf-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(148, 28, 27, .1);
    border-color: rgba(148, 28, 27, .3);
}

.vf-vmv .vf-val-card:hover::after {
    width: 100%;
}

.vf-vmv .vf-val-card .vf-val-n {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 200;
    color: var(--red-pale);
    display: block;
    line-height: 1;
    margin-bottom: .6rem;
}

.vf-vmv .vf-val-card .vf-val-title {
    font-size: .82rem;
    font-weight: 700;
    color: #941c1b;
    display: block;
    letter-spacing: .04em;
    margin-bottom: .55rem;
}

.vf-vmv .vf-val-card .vf-val-text {
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

.foundation-section {
    position: relative;
    padding: 60px 0 60px;
    background: var(--dark-color);
    overflow: hidden;
    opacity: 1;
}

/* .foundation-section .fs-bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    } */

.foundation-section .fs-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    opacity: .1;
    top: -220px;
    left: -200px;
    pointer-events: none;
}

.foundation-section .fs-bg-glow--r {
    left: auto;
    right: -250px;
    top: auto;
    bottom: -280px;
    opacity: .07;
}

.foundation-section .fs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--rac-primary-color);
    margin-bottom: 20px;
    opacity: 0;
}

.foundation-section .fs-eyebrow .fs-eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rac-primary-color);
    animation: vfPulse 2s infinite;
}

@keyframes vfPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.7);
    }
}

.foundation-section .fs-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    color: var(--rac-white-color);
    margin-bottom: 28px;
    opacity: 0;
}

.foundation-section .fs-heading .fs-heading__em {
    font-style: italic;
    font-weight: 300;
    color: var(--rac-primary-color);
    font-family: 'Fraunces', Georgia, serif;
}

.foundation-section .fs-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--rac-font-color);
    max-width: 560px;
    opacity: 0;
}

.foundation-section .fs-body-2 {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--rac-font-color);
    max-width: 560px;
    margin-top: 0;
    opacity: 0;
}

.foundation-section .fs-sep {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0;
    opacity: 0;
}

.foundation-section .fs-sep .fs-sep__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.foundation-section .fs-sep .fs-sep__line--r {
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.foundation-section .fs-sep .fs-sep__ico {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .85rem;
}

/* cards */
.foundation-section .fs-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    opacity: 0;
}

.foundation-section .fs-cards .fs-card {
    background: var(--vf-card-bg);
    border: 1px solid var(--rac-border-color);
    border-radius: var(--rac-border-radius);
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: var(--rac-transition);
    cursor: default;
}

.foundation-section .fs-cards .fs-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), transparent 60%);
    opacity: 0;
    transition: opacity .35s;
}

.foundation-section .fs-cards .fs-card:hover::before {
    opacity: .07;
}

.foundation-section .fs-cards .fs-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(148, 28, 27, .25);
}

.foundation-section .fs-cards .fs-card .fs-card__num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: .2;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Fraunces', Georgia, serif;
}

.foundation-section .fs-cards .fs-card .fs-card__ico {
    font-size: 1.7rem;
    display: block;
    margin-bottom: 8px;
}

.foundation-section .fs-cards .fs-card .fs-card__label {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rac-primary-color);
    margin-bottom: 5px;
}

.foundation-section .fs-cards .fs-card .fs-card__val {
    font-size: .92rem;
    font-weight: 300;
    color: var(--rac-font-color);
    line-height: 1.55;
}

/* stats strip */
.foundation-section .fs-stats {
    display: flex;
    margin-top: 14px;
    border: 1px solid var(--rac-border-color);
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    opacity: 0;
}

.foundation-section .fs-stats .fs-stat {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid var(--rac-border-color);
}

.foundation-section .fs-stats .fs-stat:last-child {
    border-right: none;
}

.foundation-section .fs-stats .fs-stat .fs-stat__num {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--rac-primary-color);
    line-height: 1;
}

.foundation-section .fs-stats .fs-stat .fs-stat__lbl {
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rac-font-color);
    margin-top: 5px;
}


/* ═══════════════════════════════════
       FOUNDER SECTION
    ═══════════════════════════════════ */
.founder-section {
    position: relative;
    padding: 60px 0px;
    background: var(--vf-surface);
    overflow: hidden;
}

.founder-section .fo-dark-half {
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 100%;
    background: var(--dark-color);
    z-index: 0;
}

.founder-section .fo-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    opacity: .1;
    bottom: -150px;
    right: -80px;
    pointer-events: none;
}

/* image col */
.founder-section .fo-img-col {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-70px);
}

.founder-section .fo-img-col .fo-img-wrap {
    position: relative;
    border-radius: var(--rac-border-radius);
}

/* red corner brackets */
.founder-section .fo-img-col .fo-bracket {
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 3;
    pointer-events: none;
}

.founder-section .fo-img-col .fo-bracket--tr {
    top: -10px;
    right: -10px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    border-radius: 0 var(--rac-border-radius) 0 0;
}

.founder-section .fo-img-col .fo-bracket--bl {
    bottom: -10px;
    left: -10px;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    border-radius: 0 0 0 var(--rac-border-radius);
}

.founder-section .fo-img-col .fo-img-inner {
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    border: 1px solid rgba(148, 28, 27, .3);
}

.founder-section .fo-img-col .fo-img-inner img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
    transition: transform 1s ease, filter .6s ease;
}

.founder-section .fo-img-col .fo-img-inner:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1.07);
}

.founder-section .fo-img-col .fo-img-inner .fo-img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent);
    border-radius: 0 0 var(--rac-border-radius) var(--rac-border-radius);
}

/* floating tag */
.founder-section .fo-img-col .fo-img-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rac-border-color);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rac-font-color);
    z-index: 4;
}

.founder-section .fo-img-col .fo-img-tag .fo-img-tag__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 6px;
    vertical-align: middle;
    animation: vfPulse 2s infinite;
}

/* badge */
.founder-section .fo-img-col .fo-badge {
    position: absolute;
    bottom: 24px;
    right: -18px;
    background: var(--primary-color);
    color: var(--rac-white-color);
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;
    z-index: 4;
    opacity: 0;
    transform: scale(.7) rotate(-6deg);
    box-shadow: 0 16px 40px rgba(148, 28, 27, .5);
}

.founder-section .fo-img-col .fo-badge .fo-badge__num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.founder-section .fo-img-col .fo-badge .fo-badge__lbl {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: 3px;
}

/* text col */
.founder-section .fo-txt-col {
    position: relative;
    z-index: 2;
    padding-left: 56px;
}

.founder-section .fo-txt-col .fo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--rac-primary-color);
    margin-bottom: 16px;
    opacity: 0;
}

.founder-section .fo-txt-col .fo-eyebrow::before,
.founder-section .fo-txt-col .fo-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--rac-primary-color);
}

.founder-section .fo-txt-col .fo-name {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--rac-white-color);
    margin-bottom: 4px;
    opacity: 0;
}

.founder-section .fo-txt-col .fo-role {
    font-size: .98rem;
    font-style: italic;
    font-weight: 300;
    color: var(--rac-primary-color);
    margin-bottom: 34px;
    opacity: 0;
}

.founder-section .fo-txt-col .fo-quote-box {
    position: relative;
    background: var(--vf-card-bg);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 14px 14px 0;
    padding: 24px 28px 22px;
    margin-bottom: 32px;
    opacity: 0;
}

.founder-section .fo-txt-col .fo-quote-box .fo-qmark {
    position: absolute;
    top: -16px;
    left: 22px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-color);
    font-weight: 700;
    opacity: .3;
    pointer-events: none;
}

.founder-section .fo-txt-col .fo-quote-box .fo-qtext {
    font-size: 1.16rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.72;
    color: var(--rac-white-color);
    font-family: 'Fraunces', Georgia, serif;
}

.founder-section .fo-txt-col .fo-para {
    font-size: .97rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--rac-font-color);
    margin-bottom: 16px;
}

/* HERO */
.services-hero {
    background: var(--dark-color);
    padding: 100px 130px 84px;
    border-bottom: 1px solid var(--rac-border-color);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--vf-red-glow);
    pointer-events: none;
}

.services-hero .hero-left {
    flex: 1;
    position: relative;
}

.services-hero .hero-left .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.services-hero .hero-left .hero-eyebrow .eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.services-hero .hero-left .hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
}

.services-hero .hero-left .hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    line-height: 1.04;
    color: var(--rac-white-color);
}

.services-hero .hero-left .hero-title em {
    font-style: italic;
    color: var(--rac-primary-color);
}

.services-hero .hero-right {
    max-width: 420px;
    padding-bottom: 8px;
    position: relative;
}

.services-hero .hero-right .hero-desc {
    font-size: 15px;
    color: var(--rac-font-color);
    line-height: 1.8;
    margin-bottom: 32px;
}

.services-hero .hero-right .hero-count-row {
    display: flex;
    gap: 36px;
}

.services-hero .hero-right .hero-count-row .count-item {
    border-left: 1px solid var(--primary-color);
    padding-left: 16px;
}

.services-hero .hero-right .hero-count-row .count-item .count-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--rac-white-color);
    line-height: 1;
}

.services-hero .hero-right .hero-count-row .count-item .count-label {
    font-size: 10px;
    color: var(--rac-font-color);
    letter-spacing: 0.06em;
    margin-top: 5px;
    text-transform: uppercase;
}

/* SERVICES LIST */
.services-list {
    background: var(--vf-surface);
    padding-bottom: 50px;
}

.services-list .service-row {
    display: flex;
    align-items: stretch;
    min-height: 540px;
    border-bottom: 1px solid var(--rac-border-color);
    overflow: hidden;
    opacity: 1;
    transform: translateY(48px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    pointer-events: none;
}

.services-list .service-row.service-row--reversed {
    flex-direction: row-reverse;
}

.services-list .service-row .row-image {
    flex: 0 0 52%;
    position: relative;
    overflow: hidden;
}

.services-list .service-row .row-image .row-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.82) saturate(0.9);
}

.services-list .service-row:hover .row-image .row-image__img {
    transform: scale(1.06);
    filter: brightness(0.72) saturate(1);
}

.services-list .service-row .row-image .row-image__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 28, 27, 0.22) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.services-list .service-row .row-image .row-image__number {
    position: absolute;
    top: 28px;
    left: 28px;
    font-family: var(--font-display);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
}

.services-list .service-row.service-row--reversed .row-image .row-image__number {
    left: auto;
    right: 28px;
}

.services-list .service-row .row-image .row-image__tag {
    position: absolute;
    bottom: 28px;
    left: 28px;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rac-white-color);
    background: var(--primary-color);
    padding: 6px 16px;
    border-radius: 2px;
}

.services-list .service-row.service-row--reversed .row-image .row-image__tag {
    left: auto;
    right: 28px;
}

.services-list .service-row .row-content {
    flex: 1;
    padding: 68px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--vf-card-bg);
    border-left: 1px solid var(--rac-border-color);
    position: relative;
}

.services-list .service-row.service-row--reversed .row-content {
    border-left: none;
    border-right: 1px solid var(--rac-border-color);
}

.services-list .service-row .row-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.services-list .service-row:hover .row-content::before {
    transform: scaleX(1);
}

.services-list .service-row .row-content .content-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 18px;
}

.services-list .service-row .row-content .content-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--rac-white-color);
    margin-bottom: 20px;
}

.services-list .service-row .row-content .content-desc {
    font-size: 14px;
    color: var(--rac-font-color);
    line-height: 1.82;
    max-width: 380px;
    margin-bottom: 32px;
}

.services-list .service-row .row-content .content-features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}

.services-list .service-row .row-content .content-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rac-border-color);
    font-size: 13px;
    color: var(--rac-font-color);
    transition: var(--rac-transition);
}

.services-list .service-row .row-content .content-features .feature-item:hover {
    color: var(--rac-white-color);
    padding-left: 4px;
}

.services-list .service-row .row-content .content-features .feature-item:last-child {
    border-bottom: none;
}

.services-list .service-row .row-content .content-features .feature-item .feature-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.services-list .service-row .row-content .content-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rac-white-color);
    border: 1px solid var(--rac-border-color);
    background: transparent;
    cursor: pointer;
    padding: 13px 24px;
    width: fit-content;
    border-radius: 4px;
    transition: var(--rac-transition);
    text-decoration: none;
}

.services-list .service-row .row-content .content-cta .cta-arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.services-list .service-row .row-content .content-cta:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.services-list .service-row .row-content .content-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.cloud-hero {
    background: linear-gradient(135deg, #000000 0%, #1a0000 55%, #2d0808 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0px;
}

.cloud-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(148, 28, 27, 0.2) 1px, transparent 1px),
        radial-gradient(circle, rgba(238, 46, 46, 0.06) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
}

.cloud-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 28, 27, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(148, 28, 27, 0.18);
    border: 1px solid rgba(238, 46, 46, 0.3);
    color: var(--rac-primary-color);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .38rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 1.3rem;
}

.cloud-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    ;
    font-size: clamp(2.8rem, 6vw, 3rem);
    /* line-height: 1.08; */
    color: var(--rac-white-color);
}

.cloud-hero h1 em {
    color: var(--rac-primary-color);
    font-style: italic;
}

.cloud-hero .hero-sub {
    color: var(--rac-font-color);
    font-size: 1.05rem;
    max-width: 440px;
    line-height: 1.75;
    margin-top: 1rem;
}






/* ── PLATE ANIMATIONS ──────────────────── */
.plate-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plate-svg {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 30px 60px rgba(148, 28, 27, .6));
}

@keyframes floatPlate {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: .6;
    }

    100% {
        transform: translateY(-40px) scaleX(1.5);
        opacity: 0;
    }
}

@keyframes orbitLeft {
    0% {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
        transform: rotate(-360deg) translateX(160px) rotate(360deg);
    }
}

@keyframes orbitRight {
    0% {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.plate-animated {
    animation: floatPlate 4s ease-in-out infinite;
}

.steam {
    animation: steamRise 1.5s ease-out infinite;
}

.steam:nth-child(2) {
    animation-delay: .5s;
}

.steam:nth-child(3) {
    animation-delay: 1s;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-item:nth-child(1) {
    animation: orbitLeft 8s linear infinite;
}

.orbit-item:nth-child(2) {
    animation: orbitLeft 8s linear infinite;
    animation-delay: -2.66s;
}

.orbit-item:nth-child(3) {
    animation: orbitLeft 8s linear infinite;
    animation-delay: -5.32s;
}

.orbit-item:nth-child(4) {
    animation: orbitRight 10s linear infinite;
}

.orbit-item:nth-child(5) {
    animation: orbitRight 10s linear infinite;
    animation-delay: -3.33s;
}

.orbit-item:nth-child(6) {
    animation: orbitRight 10s linear infinite;
    animation-delay: -6.66s;
}

/* ── SECTIONS ──────────────────────────── */


.section-tag {
    display: inline-block;
    color: var(--rac-primary-color);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: .6rem;
}

.section-title {
    font-family: 'Fraunces', Georgia, serif;
    ;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--rac-white-color);
}

.section-title span {
    color: var(--rac-primary-color);
}

/* ── MENU CARDS ────────────────────────── */
.menu-section {
    background: var(--vf-surface);
    padding: 60px 0px;
}

.cloud-menu-card {
    background: var(--vf-card-bg);
    border: 1px solid var(--rac-border-color);
    border-radius: var(--rac-border-radius);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: default;
    transition: var(--rac-transition), box-shadow .35s ease;
}



.cloud-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--vf-red-glow), 0 0 0 1px rgba(148, 28, 27, .35);
    border-color: rgba(148, 28, 27, .45);
}

.cloud-menu-card:hover::before {
    transform: scaleX(1);
}

.menu-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    background: rgba(148, 28, 27, 0.14);
    border: 1px solid rgba(148, 28, 27, 0.22);
}

.cloud-menu-card h5 {
    font-family: 'Fraunces', Georgia, serif;
    ;
    font-size: 1.15rem;
    color: var(--rac-white-color);
    margin-bottom: .4rem;
    font-weight: 700;
}

.cloud-menu-card p {
    font-size: .88rem;
    color: var(--rac-font-color);
    line-height: 1.65;
}



/* ── CUSTOM SECTION ────────────────────── */
.custom-section {
    background: var(--rac-black-color);
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
}

.custom-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(148, 28, 27, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.custom-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 28, 27, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.custom-section p {
    color: var(--rac-font-color);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(148, 28, 27, 0.12);
    border: 1px solid rgba(238, 46, 46, 0.22);
    color: var(--white-color);
    font-size: .82rem;
    padding: .4rem .9rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: var(--rac-transition);
}

.feature-pill:hover {
    background: rgba(148, 28, 27, 0.28);
    border-color: var(--primary-color);
}

/* ── SPICE WHEEL ───────────────────────── */
.spice-wheel {
    position: relative;
    display: inline-block;
    width: 320px;
    height: 320px;
}

.wheel-ring {
    position: absolute;
    inset: 0;
    animation: spin 18s linear infinite;
}

.wheel-ring-inner {
    position: absolute;
    inset: 24px;
    animation: spin 12s linear infinite reverse;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(148, 28, 27, 0.3), rgba(238, 46, 46, 0.1));
    border: 1px solid rgba(238, 46, 46, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.wheel-center span:first-child {
    font-size: 2.8rem;
}

.wheel-center span:last-child {
    color: var(--rac-primary-color);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: .3rem;
    font-weight: 500;
}

.wheel-dot {
    position: absolute;
    font-size: 1.5rem;
    animation: pulse 2.6s ease-in-out infinite;
}

/* ── QUOTE BANNER ──────────────────────── */
.quote-banner {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--rac-primary-color) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '❝';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.quote-banner blockquote {
    font-family: 'Fraunces', Georgia, serif;
    ;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: var(--rac-white-color);
    font-style: italic;
    margin: 0 auto;
    line-height: 1.35;
    position: relative;
}

.quote-banner .attrib {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.2rem;
    font-size: .85rem;
    letter-spacing: .1em;
}

.hiw-section {
    position: relative;
    background: var(--surface);
    padding: 60px 0;
    overflow: hidden;
}

/* BG elements */
.hiw-section .hiw-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hiw-section .hiw-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    pointer-events: none;
}

.hiw-section .hiw-bg-glow--l {
    top: -300px;
    left: -250px;
    opacity: .07;
}

.hiw-section .hiw-bg-glow--r {
    bottom: -350px;
    right: -200px;
    opacity: .06;
}

/* ── HEADER ── */
.hiw-section .hiw-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
}

.hiw-section .hiw-header .hiw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .7rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--rac-primary-color);
    margin-bottom: 22px;
    overflow: hidden;
}

.hiw-section .hiw-header .hiw-eyebrow span {
    display: block;
    transform: translateY(100%);
}

.hiw-section .hiw-header .hiw-eyebrow::before,
.hiw-section .hiw-header .hiw-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--rac-primary-color);
    flex-shrink: 0;
}

.hiw-section .hiw-header .hiw-title-wrap {
    overflow: hidden;
}

.hiw-section .hiw-header .hiw-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.05;
    display: block;
    transform: translateY(110%);
    color: #fff;
}

.hiw-section .hiw-header .hiw-title .hiw-title__em {
    font-style: italic;
    font-weight: 300;
    color: var(--rac-primary-color);
}

.hiw-section .hiw-header .hiw-quote {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--rac-font-color);
    opacity: 0;
    transform: translateY(16px);
    position: relative;
}

.hiw-section .hiw-header .hiw-quote::before {
    content: '"';
    font-size: 4rem;
    line-height: .8;
    color: var(--primary-color);
    opacity: .4;
    font-style: normal;
    font-weight: 700;
}

/* ── CONNECTOR SPINE (desktop) ── */
.hiw-section .hiw-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--rac-border-color);
    transform: translateX(-50%);
    z-index: 1;
}

.hiw-section .hiw-spine .hiw-spine__fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-color), var(--rac-primary-color));
}

/* ── STEPS ── */
.hiw-section .hiw-steps {
    position: relative;
    z-index: 2;
}

.hiw-section .hiw-steps .hiw-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 100px;
}

.hiw-section .hiw-steps .hiw-step:last-child {
    margin-bottom: 0;
}

/* Alternating: even steps flip text/image */
.hiw-section .hiw-steps .hiw-step--even .hiw-step__content {
    order: 3;
}

.hiw-section .hiw-steps .hiw-step--even .hiw-step__center {
    order: 2;
}

.hiw-section .hiw-steps .hiw-step--even .hiw-step__visual {
    order: 1;
}

/* CENTER node */
.hiw-section .hiw-steps .hiw-step__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 3;
}

.hiw-section .hiw-steps .hiw-step__node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--rac-border-color);
    background: var(--dark-color);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    position: relative;
    transition: var(--rac-transition);
    flex-shrink: 0;
}

.hiw-section .hiw-steps .hiw-step__node .hiw-step__node-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color .4s, transform .6s;
}

/* Active state (added by JS) */
.hiw-section .hiw-steps .hiw-step.is-active .hiw-step__node {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 8px rgba(148, 28, 27, .15), 0 0 28px rgba(148, 28, 27, .4);
}

.hiw-section .hiw-steps .hiw-step.is-active .hiw-step__node-ring {
    border-color: rgba(148, 28, 27, .3);
    transform: scale(1.3);
}

/* CONTENT side */
.hiw-section .hiw-steps .hiw-step__content {
    padding: 0 48px;
    opacity: 0;
    transform: translateX(-50px);
}

.hiw-section .hiw-steps .hiw-step--even .hiw-step__content {
    transform: translateX(50px);
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__num {
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--rac-primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__num::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 40px;
    background: var(--rac-primary-color);
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--rac-white-color);
    margin-bottom: 16px;
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--rac-primary-color);
    font-family: var(--font-display);
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__body {
    font-size: .97rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--rac-font-color);
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hiw-section .hiw-steps .hiw-step__content .hiw-step__chip {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rac-white-color);
    background: rgba(148, 28, 27, .18);
    border: 1px solid rgba(148, 28, 27, .35);
    padding: 5px 13px;
    border-radius: 100px;
}

/* VISUAL side */
.hiw-section .hiw-steps .hiw-step__visual {
    padding: 0 48px;
    opacity: 0;
    transform: translateX(50px);
}

.hiw-section .hiw-steps .hiw-step--even .hiw-step__visual {
    transform: translateX(-50px);
}

.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--rac-border-color);
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    /* aspect-ratio: 5/3; */
    transition: border-color .4s, box-shadow .4s;
}

.hiw-section .hiw-steps .hiw-step.is-active .hiw-anim-card {
    border-color: rgba(148, 28, 27, .5);
    box-shadow: 0 24px 60px rgba(148, 28, 27, .18);
}

/* Red gradient overlay */
.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card .hiw-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 28, 27, .3) 0%, transparent 55%);
    z-index: 1;
}

/* step number watermark */
.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card .hiw-card-watermark {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
    z-index: 2;
    user-select: none;
}

/* ── ANIMATED SVG ILLUSTRATIONS ── */
.hiw-section .hiw-steps .hiw-step__visual .hiw-svg-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hiw-section .hiw-steps .hiw-step__visual .hiw-svg-wrap svg {
    width: 75%;
    max-width: 300px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .5));
}

/* Floating badge on card */
.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card .hiw-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--rac-border-color);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 4;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s .2s, transform .4s .2s;
}

.hiw-section .hiw-steps .hiw-step.is-active .hiw-card-badge {
    opacity: 1;
    transform: translateY(0);
}

.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card .hiw-card-badge .hiw-badge-ico {
    font-size: 1rem;
    margin-right: 6px;
    vertical-align: middle;
}

.hiw-section .hiw-steps .hiw-step__visual .hiw-anim-card .hiw-card-badge .hiw-badge-txt {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rac-font-color);
    vertical-align: middle;
}

/* ── BOTTOM CTA ── */
.hiw-section .hiw-cta-row {
    text-align: center;
    margin-top: 90px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(24px);
}

.hiw-section .hiw-cta-row .hiw-cta-label {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--rac-font-color);
    margin-bottom: 18px;
}

.hiw-section .hiw-cta-row .hiw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-color);
    color: var(--rac-white-color);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    transition: background .3s, box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden;
}

.hiw-section .hiw-cta-row .hiw-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.hiw-section .hiw-cta-row .hiw-cta-btn:hover {
    background: var(--rac-primary-color);
    box-shadow: 0 16px 40px rgba(148, 28, 27, .45);
    transform: translateY(-2px);
}

.hiw-section .hiw-cta-row .hiw-cta-btn:hover::before {
    opacity: 1;
}

.hiw-section .hiw-cta-row .hiw-cta-btn .hiw-cta-arrow {
    display: inline-block;
    transition: transform .3s;
}

.hiw-section .hiw-cta-row .hiw-cta-btn:hover .hiw-cta-arrow {
    transform: translateX(5px);
}

/* ── ANIMATED DOTS for SVG ── */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatY2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        r: 32;
        opacity: .6;
    }

    100% {
        r: 56;
        opacity: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

@keyframes spin {
    from {
        transform-origin: 50% 50%;
        transform: rotate(0deg);
    }

    to {
        transform-origin: 50% 50%;
        transform: rotate(360deg);
    }
}


.logo-grid {
    --border-color: #ccc;
}

.logo-grid a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    /* consistent tile height */
    border: 1px solid var(--border-color);
    background: #fff;
    overflow: hidden;
    text-decoration: none;
}

/* Logo images */
.logo-grid img {
    max-width: 80%;
    max-height: 70%;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-grid a:hover img,
.logo-grid a:focus img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Labels (top-right corner, hidden by default) */
.logo-label {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    /* don't block clicks */
    text-transform: uppercase;
}

.logo-grid a:hover .logo-label,
.logo-grid a:focus .logo-label {
    opacity: 1;
    transform: translateY(0);
}

.vf-page {
    background: var(--surface);
    color: var(--rac-font-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
}

.vf-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.vf-hero-split .vf-left-panel {
    background: var(--primary-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 3rem 4rem;
    overflow: hidden;
}

.vf-hero-split .vf-left-panel .vf-lp-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
}

.vf-hero-split .vf-left-panel .vf-lp-big-num {
    font-family: var(--font-display);
    font-size: clamp(7rem, 14vw, 13rem);
    font-weight: 700;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.vf-hero-split .vf-left-panel .vf-lp-label {
    position: relative;
    z-index: 2;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.4rem;
}

.vf-hero-split .vf-left-panel .vf-lp-heading {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 200;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.03em;
}

.vf-hero-split .vf-left-panel .vf-lp-heading em {
    font-style: italic;
    font-weight: 600;
}

.vf-hero-split .vf-left-panel .vf-lp-desc {
    position: relative;
    z-index: 2;
    margin-top: 1.8rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.vf-vert-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

/* ─── RIGHT PANEL ─── */
.vf-hero-split .vf-right-panel {
    background: var(--vf-surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3.5rem;
}

/* ─── CONTACT ROWS ─── */
.vf-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rac-border-color);
    position: relative;
    transition: var(--rac-transition);
    text-decoration: none;
    cursor: default;
}

.vf-contact-row:first-child {
    border-top: 1px solid var(--rac-border-color);
}

.vf-contact-row:hover .vf-cr-index {
    color: var(--primary-color);
}

.vf-contact-row:hover .vf-cr-arrow {
    opacity: 1;
    transform: translateX(0);
}

.vf-contact-row .vf-cr-index {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--rac-border-color);
    min-width: 24px;
    padding-top: 4px;
    transition: var(--rac-transition);
    font-style: italic;
}

.vf-contact-row .vf-cr-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(148, 28, 27, 0.1);
    border: 1px solid rgba(148, 28, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.vf-contact-row .vf-cr-body {
    flex: 1;
}

.vf-contact-row .vf-cr-body .vf-cr-type {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.vf-contact-row .vf-cr-body .vf-cr-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--rac-white-color);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.vf-contact-row .vf-cr-body .vf-cr-sub {
    font-size: 0.78rem;
    color: var(--rac-font-color);
    margin-top: 0.25rem;
}

.vf-contact-row .vf-cr-arrow {
    color: var(--primary-color);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s;
    padding-top: 4px;
}



/* ─── BOTTOM ROW ─── */
.vf-bottom-row {
    background: var(--surface);
    padding: 5rem 0;
    overflow: hidden;
}

.vf-bottom-row .vf-brow-left {
    padding: 2rem 3rem 2rem 0;
}

.vf-bottom-row .vf-brow-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.vf-bottom-row .vf-brow-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 200;
    color: var(--rac-white-color);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.vf-bottom-row .vf-brow-title em {
    font-style: italic;
    color: var(--primary-color);
}

.vf-bottom-row .vf-brow-addr {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--rac-font-color);
    padding-left: 1rem;
    border-left: 2px solid var(--primary-color);
}

.vf-bottom-row .vf-brow-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.vf-bottom-row .vf-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--rac-white-color);
    background: var(--vf-card-bg);
    border: 1px solid var(--rac-border-color);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    text-decoration: none;
    transition: var(--rac-transition);
}

.vf-bottom-row .vf-chip i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.vf-bottom-row .vf-chip:hover {
    border-color: var(--primary-color);
    background: rgba(148, 28, 27, 0.15);
    color: var(--rac-white-color);
}

.vf-bottom-row .vf-map-wrap {
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    border: 1px solid var(--rac-border-color);
    height: 100%;
    min-height: 380px;
    position: relative;
}

.vf-bottom-row .vf-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    filter: grayscale(1) contrast(0.85) brightness(0.6);
    transition: filter 0.5s;
}

.vf-bottom-row .vf-map-wrap:hover iframe {
    filter: grayscale(0.3) contrast(1) brightness(0.85);
}

.vf-bottom-row .vf-map-wrap .vf-map-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    z-index: 2;
}



/* ─── GSAP INIT ─── */
.gs-up {
    opacity: 0;
}

.gs-left {
    opacity: 0;
}

.gs-right {
    opacity: 0;
}

.gs-fade {
    opacity: 0;
}


 /* Section */
.fsms-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Wrapper */
.fsms-section .fsms-wrapper {
    position: relative;
    z-index: 2;
}

/* Image Box */
.fsms-section .fsms-image-box {
    position: relative;
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    box-shadow: var(--rac-box-shadow);
}

.fsms-section .fsms-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--rac-transition);
}

/* Hover Zoom */
.fsms-section .fsms-image-box:hover img {
    transform: scale(1.08);
}

/* Glow Effect */
.fsms-section .fsms-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, var(--vf-red-glow));
    opacity: 0;
    transition: var(--rac-transition);
}

.fsms-section .fsms-image-box:hover::after {
    opacity: 1;
}

/* Content */
.fsms-section .fsms-content {
    padding-left: 20px;
}

/* Title */
.fsms-section .fsms-title {
    font-family: var(--font-display);
    color: var(--white-color);
    font-size: 2.4rem;
    margin-bottom: 15px;
}

/* Quote */
.fsms-section .fsms-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 20px;
}

.fsms-section .fsms-quote span {
    color: var(--rac-primary-color);
    font-style: italic;
    font-size: 1.1rem;
}

/* Text */
.fsms-section .fsms-text {
    color: var(--rac-font-color);
    line-height: 1.7;
    margin-bottom: 15px;
}



.desktop {
    display: block; 
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

}