/*
[Master Stylesheet] 
Project: Restaurant and Catering Html
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
 1. Index Page
-------------------------------------------------------------------*/

/********************************************************
    body start
********************************************************/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Manrope:wght@200..800&amp;family=Merienda:wght@300..900&amp;display=swap");

:root {
    --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);
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--rac-font-color);
    position: relative;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 10px;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: var(--rac-primary-color);
    min-height: 150px;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
    text-decoration: none;
    -webkit-transition: var(--rac-transition);
    -moz-transition: var(--rac-transition);
    -ms-transition: var(--rac-transition);
    -o-transition: var(--rac-transition);
    transition: var(--rac-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: var(--rac-transition);
    -moz-transition: var(--rac-transition);
    -ms-transition: var(--rac-transition);
    -o-transition: var(--rac-transition);
    transition: var(--rac-transition);
    margin: 0;
    padding: 0;
    word-break: break-word;
    text-transform: capitalize;
}

h1 {
    font-family: "Merienda", cursive;
}

h3 {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 700;
}

h5 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 500;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

::placeholder {
    color: #737373;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #737373;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
}

/********************************************************
    Common Style
********************************************************/

.rac_main_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #202020;
}

.rac_section {
    padding: 100px 0;
}

.row>* {
    padding-right: calc(var(--bs-gutter-x)* .625);
    padding-left: calc(var(--bs-gutter-x)* .625);
}

.row {
    row-gap: 30px;
}

.rac_section_heading {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.rac_section_heading h5 {
    color: var(--rac-primary-color);
    margin-bottom: 10px;
}

.rac_section_heading h3 {
    position: relative;
    color: var(--rac-white-color);
}

.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(-50%);
}

.rac_section_heading h3::before {
    margin-left: -17px;
}

.rac_section_heading h3::after {
    margin-left: 17px;
}

/********************************************************
    Inner Pages Banner Style
********************************************************/

.rac_inr_pages_banner {
    padding: 140px 0 90px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.rac_page_title {
    text-align: center;
}

.rac_page_title h1 {
    color: #FCCE2B;
    font-weight: 700;
    font-size: 60px;
}

.rac_breadcrumbs {
    display: inline-flex;
    gap: 10px;
    color: var(--rac-white-color);
}

.rac_breadcrumbs a {
    color: var(--rac-white-color);
}

.rac_breadcrumbs a:hover {
    color: var(--rac-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;
}

/********************************************************
    Loader Style
********************************************************/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #202020;
}

.loader img {
    width: 100px;
}

/********************************************************
    Button Style
********************************************************/

.rac_btn {
    min-height: 45px;
    border-radius: 5px;
    min-width: 135px;
    width: fit-content;
    color: var(--rac-white-color);
    padding: 5px 10px;
    transition: var(--rac-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, var(--rac-primary-color) 50%, transparent 50%) right;
    transition: var(--rac-transition);
    background-size: 200%;
    border: 1px solid var(--rac-primary-color);
}

.rac_btn:hover {
    background-position: left;
    color: var(--rac-primary-color);
}

/********************************************************
    Banner Section Style
********************************************************/

.rac_banner_wrapper {
    position: relative;
    background-image: url(../images/banner_bg.webp);
    background-size: cover;
    padding: 90px 0;
    background-repeat: no-repeat;
    background-position: top left;
    overflow: hidden;
}

.rac_banner_wrapper::before {
    content: " ";
    background-image: url(../images/banner_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 45px;
    background-repeat: no-repeat;
}

@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_banner_content {
    position: relative;
    padding-left: 190px;
    z-index: 1;
}

.rac_banner_text h1 {
    font-size: 80px;
    font-weight: 700;
    color: var(--rac-white-color);
    line-height: 1.25;
}

.rac_banner_text h1 span {
    color: #FCCE2B;
}

.rac_banner_text p {
    margin: 40px 0;
    max-width: 720px;
}

.rac_banner_img {
    position: relative;
    text-align: right;
}

.rac_banner_btn {
    display: flex;
    gap: 20px;
}

.rac_banner_btn .bnr_btn {
    background: transparent;
    color: var(--rac-white-color);
    border: 1px solid var(--rac-white-color);
}

/********************************************************
    Header Section Style
********************************************************/

.rac_header_wrapper {
    padding: 10px 0;
    position: absolute;
    transition: var(--rac-transition);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.rac_header_wrapper.fixed {
    position: fixed;
    padding: 10px 0;
    background-color: rgb(32 32 32 / 80%);
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    backdrop-filter: blur(3px);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.rac_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.rac_nav_item {
    display: flex;
    align-items: center;
    gap: 55px;
}

.rac_nav_item>ul {
    display: flex;
    gap: 50px;
}

.rac_nav_item>ul li a {
    font-weight: 500;
    color: var(--rac-white-color);
    padding: 10px 0;
    position: relative;
}

.rac_nav_item>ul li a:hover,
.rac_nav_item>ul li a.active {
    color: var(--rac-primary-color);
}

.rac_nav_item>ul li a::before,
.rac_nav_item>ul li a::after {
    content: "";
    background-image: url(../images/nav-hover.png);
    width: 18px;
    height: 5px;
    position: absolute;
    bottom: 0;
    transition: var(--rac-transition);
    opacity: 0;
    visibility: hidden;
}

.rac_nav_item>ul li a::before {
    transform: translateX(-50%);
    left: 0;
}

.rac_nav_item>ul li a::after {
    transform: translateX(50%);
    right: 0;
}

.rac_nav_item>ul li a:hover::before,
.rac_nav_item>ul li a.active::before,
.rac_nav_item>ul li a:hover::after,
.rac_nav_item>ul li a.active::after {
    opacity: 1;
    visibility: visible;
}

.rac_nav_item>ul li a:hover::before,
.rac_nav_item>ul li a.active::before {
    left: 50%;
}

.rac_nav_item>ul li a:hover::after,
.rac_nav_item>ul li a.active::after {
    right: 50%;
}

.rac_nav_btn {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rac_nav_btn>ul {
    display: flex;
    align-items: center;
    gap: 55px;
}

.rac_toggle_btn,
.rac_res_logo {
    display: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50px;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--rac-white-color);
    stroke-width: 4.5;
    stroke-linecap: round;
}

.ham7 .top {
    stroke-dasharray: 40 172;
}

.ham7 .middle {
    stroke-dasharray: 40 111;
}

.ham7 .bottom {
    stroke-dasharray: 40 172;
}

.menu-open .ham7 .top {
    stroke-dashoffset: -132px;
}

.menu-open .ham7 .middle {
    stroke-dashoffset: -71px;
}

.menu-open .ham7 .bottom {
    stroke-dashoffset: -132px;
}

/********************************************************
    About Section Style
********************************************************/

.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;
}

.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 var(--rac-border-color);
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    padding: 10px;
    position: relative;
    z-index: 1;
}

.rac_about_img {
    position: relative;
    border-radius: var(--rac-border-radius);
    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
    }
}

.rac_about_text {
    padding-right: 15px;
}

.rac_about_text h4 {
    color: var(--rac-primary-color);
}

.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;
}

.rac_about_bottom_img {
    margin-bottom: -25px;
    position: absolute;
    right: 0;
    bottom: 0;
}

/********************************************************
    Offer Section Style
********************************************************/

.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;
}

@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_offer_text {
    margin-bottom: 15px;
}

.rac_offer_text h4 {
    color: var(--rac-white-color);
    margin-bottom: 12px;
}

.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_price h4 del {
    color: #747474;
}

.rac_offer_price h4:last-child {
    color: var(--rac-primary-color);
}

/********************************************************
    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 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.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);
}

.rac_service_text p {
    margin: 10px 0 5px;
}

.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)
    }
}

/********************************************************
    Book Us Section Style
********************************************************/

.rac_booking_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/booking_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0 0;
}

.rac_booking_wrapper::before {
    content: " ";
    background-image: url(../images/booking_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 70px;
    left: 55px;
    background-repeat: no-repeat;
}

.rac_booking_content {
    position: relative;
}

.rac_booking_box {
    border: 1px solid var(--rac-border-color);
    background-color: rgb(41 41 41 / 60%);
    border-radius: var(--rac-border-radius);
    padding: 30px 30px 35px;
    position: relative;
    backdrop-filter: blur(8px);
}

.rac_form_input label {
    width: 100%;
    margin-bottom: 5px;
}

.rac_form_input {
    position: relative;
}

.rac_form_input select,
.rac_form_input input {
    position: relative;
    width: 100%;
    background-color: var(--rac-black-color);
    border: 1px solid var(--rac-border-color);
    min-height: 45px;
    padding: 0 15px;
    border-radius: 5px;
    color: #737373;
    font-size: 14px;
    appearance: none;
}

.rac_form_input select,
.rac_form_input select option {
    cursor: pointer;
}

.rac_form_input textarea {
    position: relative;
    width: 100%;
    background-color: var(--rac-black-color);
    border: 1px solid var(--rac-border-color);
    min-height: 70px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #737373;
    font-size: 14px;
    resize: none;
}

.rac_form_input span {
    position: relative;
}

.rac_form_input span::before {
    content: "";
    position: absolute;
    background-image: url(../images/dropdown.svg);
    width: 10px;
    height: 5px;
    background-repeat: no-repeat;
    top: 10px;
    right: 15px;
    background-size: contain;
    z-index: 1;
}

.rac_form_input input[type="date"] {
    text-transform: uppercase;
}

.rac_form_input input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: .4;
}

.rac_booking_box .response {
    margin-top: 15px;
    margin-bottom: -15px;
    color: var(--rac-primary-color);
}

.rac_form_btn {
    margin-top: 5px;
}

.rac_form_btn .rac_btn {
    min-width: 155px;
}

.rac_booking_img {
    margin-top: -25px;
}

/********************************************************
    Menu Section Style
********************************************************/

.rac_menu_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_menu_tab {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--rac-black-color);
    border: 1px solid var(--rac-border-color);
    max-width: fit-content;
    margin: auto;
    gap: 15px 20px;
    padding: 10px;
    flex-wrap: wrap;
}

.rac_menu_tab li .rac_btn {
    background: #202020;
    border: 1px solid transparent;
}

.rac_menu_tab li .rac_btn:hover,
.rac_menu_tab li .rac_btn.active {
    background: var(--rac-primary-color);
    border: 1px solid var(--rac-primary-color);
    color: var(--rac-white-color);
}

.rac_tab_pane {
    display: none;
}

.rac_menu_box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.rac_menu_img {
    min-width: 100px;
    height: 100px;
    border-radius: var(--rac-border-radius);
    overflow: hidden;
}

.rac_menu_img img {
    object-fit: cover;
}

.rac_menu_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rac_menu_title h4 {
    color: var(--rac-white-color);
}

.rac_menu_title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--rac-primary-color);
    position: relative;
}

.rac_menu_title h2::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 1px;
    background-color: var(--rac-border-color);
    top: 50%;
    right: 60px;
}

/********************************************************
    Chefs Section Style
********************************************************/

.rac_chefs_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #1D1E1E;
    background-image: url(../images/chefs_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_chefs_wrapper::before {
    content: " ";
    background-image: url(../images/chefs_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 45px;
    left: 85px;
    background-repeat: no-repeat;
}

.rac_chefs_box {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.rac_chefs_text {
    border: 1px solid var(--rac-border-color);
    background: var(--rac-black-color);
    border-radius: 20px 0 20px 0;
    max-width: calc(100% - 25px);
    padding: 30px 20px;
    width: 100%;
}

.rac_chefs_text h6 {
    color: var(--rac-white-color);
    font-size: 18px;
}

.rac_chefs_text p {
    font-size: 14px;
}

.rac_chefs_img {
    position: absolute;
    bottom: 0;
    right: -14px;
}

.rac_chefs_social {
    display: flex;
    align-items: center;
    background: var(--rac-black-color);
    border: 1px solid var(--rac-border-color);
    width: 100%;
    border-radius: 0 0 20px 20px;
    justify-content: space-around;
    padding: 8px 0;
    border-top: none;
    transition: var(--rac-transition);
}

.rac_chefs_social:hover {
    background: var(--rac-primary-color);
}


.rac_why_wrapper {
    padding-top: 0;
}

.rac_why_box {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--rac-border-color);
    border-radius: 16px;
    height: 100%;
    transition: var(--rac-transition);
}

.rac_why_box:hover {
    border-color: var(--rac-primary-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.rac_why_icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rac-primary-color);
    color: var(--rac-white-color);
}

.rac_why_box h4 {
    margin-bottom: 10px;
    font-size: 19px;
}

.rac_why_box p {
    margin-bottom: 0;
    font-size: 14px;
}

@media (max-width: 991px) {
    .rac_why_box {
        margin-bottom: 20px;
    }
}

.rac_chefs_social li a svg {
    transition: var(--rac-transition);
}

.rac_chefs_social li a:hover svg {
    transform: rotate(360deg);
}

.rac_chefs_slider .swiper-pagination,
.rac_testimonial_slider .swiper-pagination {
    bottom: 40px;
}

.rac_chefs_slider .swiper-pagination-bullet,
.rac_testimonial_slider .swiper-pagination-bullet {
    width: 10px;
    height: 3px;
    border-radius: 10px;
    background: #2E2E2E;
    opacity: 1;
}

.rac_chefs_slider .swiper-pagination-bullet-active,
.rac_testimonial_slider .swiper-pagination-bullet-active {
    background: var(--rac-primary-color);
    width: 25px;
}

/********************************************************
    Testimonials Section Style
********************************************************/

.rac_testimonial_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_testimonial_slider .swiper::before,
.rac_testimonial_slider .swiper::after {
    content: " ";
    width: 292px;
    height: 129px;
    background-image: url(../images/testi_bg.webp);
    background-repeat: no-repeat;
    position: absolute;
}

.rac_testimonial_slider .swiper::before {
    bottom: 0;
    left: 0;
}

.rac_testimonial_slider .swiper::after {
    bottom: 0;
    left: 50%;
    transform: translateX(15px);
}

.rac_testimonial_slide {
    padding: 0 0 30px 30px;
}

.rac_testimonial_box {
    border: 1px solid var(--rac-border-color);
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    padding: 30px;
    position: relative;
}

.rac_testi_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.rac_testi_btm::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/quote.webp);
    width: 43px;
    height: 31px;
    transform: translate(50%, -50%);
}

.rac_testi_user {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.rac_testi_user img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}

.rac_testi_user h6 {
    color: var(--rac-white-color);
}

.rac_testi_user p {
    font-size: 14px;
}

/********************************************************
    Events Section Style
********************************************************/

.rac_events_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #1D1E1E;
}

.rac_events_gallery {
    margin-top: 30px;
}

.grid-item {
    width: calc(100% / 4);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.grid-item img {
    width: 100%;
    transition: all .5s linear;
    object-fit: cover;
    position: relative;
}

.grid-item:hover img {
    transform: rotate(2deg) scale(1.1);
}

.grid-item::after {
    background: var(--rac-white-color);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 0.3;
    transition: all .5s linear;
}

.grid-item:hover::after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .5s linear;
}

/********************************************************
    News And Blog Section Style
********************************************************/

.rac_blog_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_blog_box {
    background: var(--rac-black-color);
    border-radius: var(--rac-border-radius);
    overflow: hidden;
}

.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);
}

/********************************************************
    Footer Section Style
********************************************************/

.rac_footer_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #1D1E1E;
    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: 0 20px 0 60px;
    gap: 20px 30px;
}

.rac_app_text {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.rac_app_text h3 {
    font-size: 50px;
    color: var(--rac-white-color);
    font-weight: 700;
}

.rac_app_stores {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rac_app_img {
    margin: -35px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rac_app_img img:first-child {
    z-index: 1;
}

.rac_footer_content {
    position: relative;
    margin-top: 55px;
}

.rac_footer_heading {
    margin-bottom: 15px;
}

.rac_footer_heading h6 {
    color: var(--rac-white-color);
}


.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);
}

.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);
}

.rac_footer_links li a:hover {
    color: var(--rac-primary-color);
}

.rac_footer_locations {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rac_footer_locations_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.rac_footer_locations_all_link {
    color: var(--rac-primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.rac_footer_locations_all_link:hover {
    color: var(--rac-white-color);
}

.rac_footer_locations_intro {
    color: var(--rac-font-color);
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 820px;
}

.rac_footer_location_city {
    color: var(--rac-white-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.rac_footer_locations_columns {
    margin-top: 8px;
}

.rac_footer_locations_compact {
    margin-bottom: 0;
}

.rac_footer_locations_large .rac_footer_locations_compact {
    font-size: 13px;
}

.rac_footer_locations_compact li {
    margin-bottom: 8px;
    margin-left: 0;
}

.rac_footer_locations_compact li::before {
    display: none;
}

.rac_footer_locations_compact li:hover {
    margin-left: 0;
}

.rac_footer_locations_panel {
    position: relative;
}

.rac_footer_locations_large .rac_footer_locations_panel:not(.is-expanded) {
    max-height: none;
}

.rac_footer_locations_toggle {
    margin-top: 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--rac-white-color);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--rac-transition);
    display: none;
}

.rac_footer_locations_toggle:hover {
    border-color: var(--rac-primary-color);
    color: var(--rac-primary-color);
}

.rac_footer_location_links li:last-child {
    margin-bottom: 0;
}

/* Locations index page */
.rac_locations_index_wrapper {
    padding-bottom: 80px;
}

.rac_locations_index_intro {
    color: var(--rac-font-color);
    max-width: 720px;
    margin: 12px auto 0;
    line-height: 1.7;
}

.rac_locations_search_wrap {
    margin-bottom: 28px;
}

.rac_locations_search {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--rac-white-color);
    padding: 14px 18px;
    border-radius: 8px;
}

.rac_locations_search:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--rac-primary-color);
    color: var(--rac-white-color);
    box-shadow: none;
}

.rac_locations_search::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.rac_locations_alpha {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
}

.rac_locations_alpha_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--rac-white-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--rac-transition);
}

.rac_locations_alpha_link:hover {
    background: var(--rac-primary-color);
    border-color: var(--rac-primary-color);
    color: #fff;
}

.rac_locations_letter_block {
    margin-bottom: 36px;
}

.rac_locations_letter_title {
    color: var(--rac-primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rac_locations_grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.rac_locations_item a {
    display: block;
    height: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--rac-transition);
}

.rac_locations_item a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--rac-primary-color);
    transform: translateY(-2px);
}

.rac_locations_item_name {
    display: block;
    color: var(--rac-white-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rac_locations_item_meta {
    display: block;
    color: var(--rac-font-color);
    font-size: 12px;
}

.rac_locations_no_results,
.rac_locations_empty {
    color: var(--rac-font-color);
    text-align: center;
    margin-top: 20px;
}

.rac_footer_address li {
    margin-bottom: 15px;
}

.rac_footer_address li a {
    color: var(--rac-font-color);
    display: flex;
    gap: 10px;
}

.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_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;
}

/********************************************************
    Copyright Section Style
********************************************************/

.rac_copyright_wrapper {
    background: #171717;
    padding: 15px 0;
}

.rac_copyright_wrapper .row {
    align-items: center;
    row-gap: 0;
}

.rac_copyright_text {
    text-align: left;
}

.rac_copyright_text p {
    margin: 0;
    color: var(--rac-font-color);
}

.rac_copyright_links {
    display: flex;
    justify-content: flex-end;
}

.rac_copyright_links ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.rac_copyright_links ul li a {
    color: var(--rac-font-color);
    transition: var(--rac-transition);
}

.rac_copyright_links ul li a:hover {
    color: var(--rac-primary-color);
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .rac_copyright_text,
    .rac_copyright_links {
        text-align: center;
        justify-content: center;
    }

    .rac_copyright_wrapper .row {
        row-gap: 15px;
    }

    .rac_copyright_links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*-------------------------------------------------------------------
 2. Menus Page
-------------------------------------------------------------------*/

.rac_menu_banner {
    background-image: url(../images/menu_banner.webp);
}

/*-------------------------------------------------------------------
 3. Events Page
-------------------------------------------------------------------*/

.rac_event_banner {
    background-image: url(../images/event_banner.webp);
}

/********************************************************
    Planning Section Style
********************************************************/

.rac_planning_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_planning_wrapper::before {
    content: " ";
    background-image: url(../images/booking_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 70px;
    left: 55px;
    background-repeat: no-repeat;
}

.rac_plan_box {
    position: relative;
    margin-bottom: 40px;
}

.rac_plan_box.left:last-child,
.rac_plan_box.right:last-child {
    margin-bottom: 0;
}

.rac_plan_box.left:nth-child(2) {
    padding-right: 40px;
}

.rac_plan_box.right:nth-child(2) {
    padding-left: 40px;
}

.rac_plan_box.left {
    text-align: right;
}

.rac_plan_box .rac_plan_title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rac_plan_box.left .rac_plan_title {
    justify-content: flex-end;
}

.rac_plan_title h4 {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rac-font-color);
    color: var(--rac-font-color);
}

.rac_plan_title h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--rac-border-color);
}

.rac_plan_text {
    max-width: 280px;
    margin-top: 15px;
}

.rac_plan_box.left .rac_plan_text {
    margin-left: auto;
}

.rac_planning_img {
    position: relative;
    text-align: center;
}

.rac_planning_img img {
    border-radius: 50%;
    object-fit: cover;
}

/*-------------------------------------------------------------------
 4. About Page
-------------------------------------------------------------------*/

.rac_about_banner {
    background-image: url(../images/about_banner.webp);
}

/********************************************************
    History Section Style
********************************************************/

.rac_history_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_history_slider {
    position: relative;
}

.rac_history_slider .swiper {
    overflow: hidden;
    max-height: 400px;
}

.rac_history_img {
    border-radius: 20px;
    max-height: 400px;
    overflow: hidden;
}

.rac_history_img img {
    width: 100%;
    object-fit: cover;
}

.rac_history_slider .swiper-pagination {
    position: relative;
    right: unset;
    left: unset;
    top: unset;
    bottom: unset;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

.rac_history_slider .swiper-pagination-bullet {
    position: relative;
    width: 45px;
    height: fit-content;
    background: transparent;
    opacity: 1;
    color: var(--rac-white-color);
    font-size: 18px;
    font-weight: 600;
}

.rac_history_slider .swiper-pagination-bullet-active {
    color: var(--rac-primary-color);
}

.rac_history_slider .swiper-pagination-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--rac-font-color);
    border-radius: 99px;
    position: absolute;
    right: -20px;
    top: 10px;
    outline: 5px solid transparent;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.rac_history_slider .swiper-pagination-bullet-active::after {
    background-color: var(--rac-primary-color);
    outline-color: rgb(238 46 46 / 20%);
}

.rac_history_slider .swiper-pagination-bullet::before {
    content: '';
    width: 2px;
    height: 91px;
    background-color: var(--rac-font-color);
    border-radius: 99px;
    position: absolute;
    right: -17px;
    top: 10px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.rac_history_slider .swiper-pagination-bullet-active::before {
    background-color: var(--rac-primary-color);
}

.rac_history_slider .swiper-pagination-bullet:last-child::before {
    display: none;
}

.rac_history_date {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: normal;
    margin-bottom: 20px;
}

.rac_history_date p {
    font-size: 14px;
    color: var(--rac-font-color);
}

.rac_history_text p {
    margin-bottom: 10px;
}

.rac_history_text h4 {
    color: var(--rac-white-color);
    margin-bottom: 10px;
}

.rac_history_text a {
    font-size: 14px;
    font-weight: 600;
    color: var(--rac-primary-color);
}

.rac_history_text a:hover img {
    animation: rac_lr 1s infinite alternate;
}

/*-------------------------------------------------------------------
 5. Contact Page
-------------------------------------------------------------------*/

.rac_contact_banner {
    background-image: url(../images/contact_banner.webp);
}

/********************************************************
    Map Section Style
********************************************************/

.rac_map_content iframe {
    width: 100%;
    height: 600px;
    border: none;
}







/********************************************************
    Gallery Page Styles + Keyframe Animations
********************************************************/

.rac_gallery_banner {
    background-image: url(../images/event_banner.webp);
}

.rac_gallery_page_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Filter Buttons */
.rac_gallery_filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 20px;
    margin-bottom: 20px;
}

.rac_gallery_filter .rac_btn {
    background: var(--rac-black-color);
    border: 1px solid var(--rac-border-color);
    min-width: 120px;
}

.rac_gallery_filter .rac_btn.active,
.rac_gallery_filter .rac_btn:hover {
    background: var(--rac-primary-color);
    border-color: var(--rac-primary-color);
    color: var(--rac-white-color);
}

/* Grid */
.rac_gallery_page_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.rac_gallery_item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Scroll reveal state, toggled via JS by adding .in-view */
.rac_gallery_item.in-view {
    animation: racGalleryReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes racGalleryReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Filtering transition states */
.rac_gallery_item.rac_hide {
    animation: racGalleryOut 0.35s ease forwards;
    pointer-events: none;
}

.rac_gallery_item.rac_show {
    display: block;
    animation: racGalleryIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes racGalleryOut {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.6) rotate(-4deg);
    }
}

@keyframes racGalleryIn {
    0% {
        opacity: 0;
        transform: scale(0.6) rotate(4deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.rac_gallery_item_inner {
    position: relative;
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    border: 1px solid var(--rac-border-color);
}

.rac_gallery_item_inner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rac_gallery_item_inner:hover img {
    transform: scale(1.12) rotate(1deg);
}

.rac_gallery_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rac_gallery_item_inner:hover .rac_gallery_overlay {
    opacity: 1;
}

.rac_gallery_tag {
    display: inline-block;
    width: fit-content;
    background: var(--rac-primary-color);
    color: var(--rac-white-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
}

.rac_gallery_item_inner:hover .rac_gallery_tag {
    transform: translateY(0);
    opacity: 1;
}

.rac_gallery_overlay h4 {
    color: var(--rac-white-color);
    font-size: 18px;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.rac_gallery_item_inner:hover .rac_gallery_overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

.rac_gallery_zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rac-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-90deg);
    opacity: 0;
    transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s;
}

.rac_gallery_item_inner:hover .rac_gallery_zoom {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    animation: racZoomPulse 2s ease-in-out infinite;
}

@keyframes racZoomPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(238, 46, 46, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(238, 46, 46, 0);
    }
}

/* Lightbox */
.rac_lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.rac_lightbox.rac_active {
    display: flex;
    animation: racFadeIn 0.3s ease forwards;
}

@keyframes racFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rac_lightbox_content {
    max-width: 900px;
    width: 100%;
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    border: 1px solid var(--rac-border-color);
    transform: scale(0.7) translateY(30px);
    opacity: 0;
    animation: racLightboxPop 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes racLightboxPop {
    0% {
        transform: scale(0.7) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.rac_lightbox_content img {
    width: 100%;
    display: block;
}

.rac_lightbox_close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--rac-white-color);
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rac-border-color);
    transition: var(--rac-transition);
}

.rac_lightbox_close:hover {
    background: var(--rac-primary-color);
    border-color: var(--rac-primary-color);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .rac_gallery_page_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .rac_gallery_page_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .rac_lightbox_close {
        top: 15px;
        right: 15px;
    }
}



/********************************************************
    Packages Page &#8211; Modern Dark Glass Design
********************************************************/

.rac_packages_banner {
    background-image: url(../images/menu_banner.webp);
}

.rac_packages_wrapper {
    position: relative;
    overflow: hidden;
    background-image: url(../images/service_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rac_packages_note {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 10px;
}

.rac_packages_note a {
    color: var(--rac-primary-color);
    font-weight: 600;
}

.rac_packages_note a:hover {
    text-decoration: underline;
}

.rac_pkg_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.rac_pkg_grid>.rac_pkg_card {
    height: 100%;
}

/* Card */
.rac_pkg_card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    background: linear-gradient(155deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    overflow: hidden;

    opacity: 0;
    transform: translateY(50px);
    animation: racPkgReveal .7s cubic-bezier(.22, 1, .36, 1) forwards;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1),
        border-color .45s ease,
        box-shadow .45s ease;
}

.rac_pkg_card:nth-child(2) {
    animation-delay: 0.12s;
}

.rac_pkg_card:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes racPkgReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rac_pkg_card:hover {
    transform: translateY(-14px);
    border-color: color-mix(in srgb, var(--pkg-accent) 60%, transparent);
    box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--pkg-accent) 45%, transparent);
}

.rac_pkg_featured {
    border-color: color-mix(in srgb, var(--pkg-accent) 45%, transparent);
    background: linear-gradient(155deg, color-mix(in srgb, var(--pkg-accent) 10%, transparent), rgba(255, 255, 255, 0.02));
}

@media (min-width: 992px) {
    .rac_pkg_featured {
        transform: translateY(-20px);
    }

    .rac_pkg_featured:hover {
        transform: translateY(-32px);
    }
}

/* Ambient glow blob that drifts */
.rac_pkg_glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--pkg-accent);
    filter: blur(90px);
    opacity: 0.18;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    z-index: 0;
    animation: racGlowFloat 8s ease-in-out infinite;
}

@keyframes racGlowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 25px) scale(1.15);
    }
}

.rac_pkg_ribbon {
    position: absolute;
    top: 22px;
    right: -34px;
    background: var(--pkg-accent);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(40deg);
    z-index: 2;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.rac_pkg_top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.rac_pkg_tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pkg-accent);
    background: color-mix(in srgb, var(--pkg-accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--pkg-accent) 35%, transparent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

.rac_pkg_tag svg {
    animation: racTagSpin 6s linear infinite;
}

@keyframes racTagSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rac_pkg_card h3 {
    position: relative;
    z-index: 1;
    color: var(--rac-white-color);
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.rac_pkg_subtitle {
    position: relative;
    z-index: 1;
    font-size: 14px;
    margin-bottom: 22px;
}

.rac_pkg_price {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.rac_pkg_price sup {
    font-size: 18px;
    font-weight: 700;
    color: var(--pkg-accent);
    margin-top: 4px;
}

.rac_pkg_amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--pkg-accent);
    letter-spacing: -1px;
}

.rac_pkg_unit {
    align-self: flex-end;
    font-size: 13px;
    color: var(--rac-font-color);
    margin-bottom: 8px;
}

.rac_pkg_courses {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-bottom: 26px;
}

.rac_pkg_courses li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateX(-10px);
    animation: racCourseSlide 0.5s ease forwards;
}

.rac_pkg_courses li:last-child {
    border-bottom: none;
}

.rac_pkg_courses li:nth-child(1) {
    animation-delay: 0.35s;
}

.rac_pkg_courses li:nth-child(2) {
    animation-delay: 0.42s;
}

.rac_pkg_courses li:nth-child(3) {
    animation-delay: 0.49s;
}

.rac_pkg_courses li:nth-child(4) {
    animation-delay: 0.56s;
}

.rac_pkg_courses li:nth-child(5) {
    animation-delay: 0.63s;
}

.rac_pkg_courses li:nth-child(6) {
    animation-delay: 0.70s;
}

.rac_pkg_courses li:nth-child(7) {
    animation-delay: 0.77s;
}

@keyframes racCourseSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rac_pkg_course_label {
    font-size: 13px;
    font-weight: 700;
    color: var(--rac-white-color);
    white-space: nowrap;
}

.rac_pkg_course_opt {
    font-size: 13px;
    color: var(--rac-font-color);
    text-align: right;
}

.rac_pkg_btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    border-radius: 12px;
    font-weight: 700;
    color: #101010;
    background: var(--pkg-accent);
    overflow: hidden;
    isolation: isolate;
    margin-top: auto;
}

.rac_pkg_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rac-white-color);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.rac_pkg_btn:hover::before {
    transform: translateX(0);
}

.rac_pkg_btn svg {
    transition: transform 0.3s ease;
}

.rac_pkg_btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .rac_pkg_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rac_pkg_featured {
        transform: none !important;
    }
}

@media (max-width: 650px) {
    .rac_pkg_grid {
        grid-template-columns: 1fr;
    }

    .rac_pkg_course_opt {
        text-align: left;
        flex-basis: 100%;
    }

    .rac_pkg_courses li {
        flex-direction: column;
        gap: 3px;
    }
}




/********************************************************
    Service Detail Page &#8211; Kitchen Theme Redesign
********************************************************/

.rac_service_detail_banner {
    background-image: url(../images/event_banner.webp);
}

.rac_kitchen_wrapper {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 15%, #241a14 0%, #161616 45%, #101010 100%);
}

/* Ambient warm glows */
.rac_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.35;
    z-index: 0;
}

.rac_glow_1 {
    width: 380px;
    height: 380px;
    background: #EE2E2E;
    top: -100px;
    right: -80px;
    animation: racGlowDrift 14s ease-in-out infinite;
}

.rac_glow_2 {
    width: 420px;
    height: 420px;
    background: #FCCE2B;
    opacity: 0.12;
    bottom: -140px;
    left: -100px;
    animation: racGlowDrift 18s ease-in-out infinite reverse;
}

@keyframes racGlowDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 30px) scale(1.15);
    }
}

/* Floating catering line-art icons */
.rac_kitchen_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.rac_kicon {
    position: absolute;
    width: 46px;
    height: 46px;
    color: #EE2E2E;
    opacity: 0.14;
    animation: racIconFloat 9s ease-in-out infinite;
}

.rac_kicon_1 {
    top: 6%;
    right: 8%;
    width: 56px;
    height: 56px;
    animation-duration: 11s;
}

.rac_kicon_2 {
    top: 55%;
    right: 4%;
    width: 42px;
    height: 42px;
    animation-duration: 8s;
    animation-delay: 1s;
    color: #FCCE2B;
}

.rac_kicon_3 {
    top: 20%;
    left: 6%;
    width: 52px;
    height: 52px;
    animation-duration: 10s;
    animation-delay: 0.5s;
}

.rac_kicon_5 {
    top: 78%;
    left: 10%;
    width: 48px;
    height: 48px;
    animation-duration: 9.5s;
    animation-delay: 1.5s;
}

.rac_kicon_6 {
    top: 42%;
    left: 42%;
    width: 32px;
    height: 32px;
    animation-duration: 12s;
    animation-delay: 0.8s;
    opacity: 0.09;
}

.rac_kicon_7 {
    top: 5%;
    left: 38%;
    width: 38px;
    height: 38px;
    animation-duration: 8.5s;
    animation-delay: 2.4s;
    color: #FCCE2B;
}

.rac_kicon_8 {
    top: 88%;
    right: 30%;
    width: 40px;
    height: 40px;
    animation-duration: 10.5s;
    animation-delay: 1.2s;
}

@keyframes racIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(8deg);
    }
}

.rac_sd_hero {
    position: relative;
    z-index: 1;
    animation: racSdFadeUp 0.6s ease forwards;
}

@keyframes racSdFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rac_sd_tag {
    display: inline-block;
    background: var(--rac-primary-color);
    color: var(--rac-white-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.rac_sd_hero h2 {
    color: var(--rac-white-color);
    font-size: 34px;
    margin-bottom: 22px;
}

.rac_sd_img {
    border-radius: var(--rac-border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rac_sd_img img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rac_sd_img:hover img {
    transform: scale(1.05);
}

.rac_sd_summary {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rac_sd_description {
    color: var(--rac-font-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.rac_sd_subheading {
    color: var(--rac-white-color);
    margin-bottom: 18px;
    position: relative;
    padding-left: 16px;
}

.rac_sd_subheading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 4px;
    background: var(--rac-primary-color);
}

/* Feature chips (redesigned from plain list) */
.rac_sd_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.rac_sd_chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 14px;
    color: var(--rac-white-color);
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    animation: racChipIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
    transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.rac_sd_chip:hover {
    border-color: rgba(238, 46, 46, 0.5);
    background: rgba(238, 46, 46, 0.08);
    transform: translateY(-3px) scale(1.02);
}

@keyframes racChipIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rac_sd_check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(238, 46, 46, 0.2);
    color: var(--rac-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process timeline */
.rac_sd_process {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 22px;
}

.rac_sd_process::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--rac-primary-color), rgba(238, 46, 46, 0.05));
}

.rac_sd_step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 0;
    opacity: 0;
    transform: translateX(-12px);
    animation: racSdStepIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.15s);
}

@keyframes racSdStepIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rac_sd_step_num {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    margin-left: -34px;
    border-radius: 50%;
    background: var(--rac-primary-color);
    color: var(--rac-white-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #101010;
}

.rac_sd_step p {
    margin: 0;
    padding-top: 6px;
}

/* Sidebar */
.rac_sd_sidebar {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rac_sd_widget {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px;
    backdrop-filter: blur(6px);
}

.rac_sd_widget h4 {
    color: var(--rac-white-color);
    margin-bottom: 12px;
}

.rac_sd_cta_widget {
    background: linear-gradient(155deg, rgba(238, 46, 46, 0.2), rgba(238, 46, 46, 0.02));
    border-color: rgba(238, 46, 46, 0.35);
}

.rac_sd_cta_widget p {
    margin-bottom: 18px;
}

.rac_sd_list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.rac_sd_list li:last-child {
    border-bottom: none;
}

.rac_sd_list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: var(--rac-font-color);
    transition: var(--rac-transition);
}

.rac_sd_list li a svg {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.rac_sd_list li a:hover,
.rac_sd_list li.rac_sd_active a {
    color: var(--rac-primary-color);
}

.rac_sd_list li a:hover svg,
.rac_sd_list li.rac_sd_active a svg {
    transform: translateX(5px);
    opacity: 1;
}

.rac_sd_list li.rac_sd_active a {
    font-weight: 700;
}

.rac_sd_contact_row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--rac-font-color);
}

.rac_sd_contact_row svg {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 50%;
    background: rgba(238, 46, 46, 0.15);
    color: var(--rac-primary-color);
}

.rac_sd_contact_row:hover {
    color: var(--rac-primary-color);
}



/********************************************************
    Testimonial Media (Video / Screenshot)
********************************************************/

.rac_testi_media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.rac_testi_media img,
.rac_testi_media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    /* Landscape = Full, Portrait = Black Sides */
    object-position: center;
    background: #000;
    transition: transform .5s ease;
}

.rac_testi_video_box,
.rac_testi_image_box {
    cursor: pointer;
}

.rac_testi_video_box:hover .rac_testi_media img,
.rac_testi_image_box:hover .rac_testi_media img {
    transform: scale(1.05);
}

.rac_testi_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rac-primary-color);
    color: var(--rac-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    transition: .3s ease;
    z-index: 2;
}

.rac_testi_video_box:hover .rac_testi_play_btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    color: var(--rac-primary-color);
}

.rac_testi_zoom_btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rac-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s ease;
    z-index: 2;
}

.rac_testi_image_box:hover .rac_testi_zoom_btn {
    opacity: 1;
}

/* Equal Height Cards */
.rac_testimonial_slider .swiper-wrapper {
    align-items: stretch;
}

.rac_testimonial_slider .swiper-slide {
    display: flex;
    height: auto;
}

.rac_testimonial_slide {
    width: 100%;
    display: flex;
}

.rac_testimonial_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 470px;
}

.rac_testi_btm {
    margin-top: auto;
}

/* Text testimonial ko niche lane ke liye */
.rac_testimonial_box:not(.rac_testi_video_box):not(.rac_testi_image_box) {
    padding-top: 280px;
}

/* Lightbox */
#racTestiLightbox .rac_lightbox_content {
    max-width: 900px;
}

#racTestiLightbox .rac_lightbox_content video,
#racTestiLightbox .rac_lightbox_content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: #000;
}


.rac_sd_description h4,
.rac_sd_description h5,
.rac_sd_description h6,
.rac_bd_content h1,
.rac_bd_content h2,
.rac_bd_content h3,
.rac_bd_content h4,
.rac_bd_content h5,
.rac_bd_content h6 {
    font-family: "Inter", sans-serif;
    color: var(--rac-white-color);
    text-transform: none;
    line-height: 1.35;
}

.rac_sd_description h2,
.rac_bd_content h2 {
    position: relative;
    font-size: 26px;
    font-weight: 700;
    margin: 34px 0 18px;
    padding-left: 16px;
}

.rac_sd_description h2::before,
.rac_bd_content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    border-radius: 4px;
    background: var(--rac-primary-color);
}

.rac_sd_description h3,
.rac_bd_content h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 28px 0 14px;
}

.rac_sd_description h4,
.rac_bd_content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.rac_sd_description h5,
.rac_sd_description h6,
.rac_bd_content h5,
.rac_bd_content h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.rac_sd_description>*:first-child,
.rac_bd_content>*:first-child {
    margin-top: 0;
}

/* Lists */
.rac_sd_description ul,
.rac_sd_description ol,
.rac_bd_content ul,
.rac_bd_content ol {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.rac_sd_description ul li,
.rac_bd_content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.rac_sd_description ul li::before,
.rac_bd_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rac-primary-color);
}

.rac_sd_description ol,
.rac_bd_content ol {
    counter-reset: rac-ol-counter;
}

.rac_sd_description ol li,
.rac_bd_content ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.7;
    counter-increment: rac-ol-counter;
}

.rac_sd_description ol li::before,
.rac_bd_content ol li::before {
    content: counter(rac-ol-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(238, 46, 46, 0.15);
    color: var(--rac-primary-color);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rac_sd_description ul ul,
.rac_sd_description ol ol,
.rac_sd_description ul ol,
.rac_sd_description ol ul,
.rac_bd_content ul ul,
.rac_bd_content ol ol,
.rac_bd_content ul ol,
.rac_bd_content ol ul {
    margin: 10px 0 0;
}

/* Inline emphasis */
.rac_sd_description strong,
.rac_sd_description b,
.rac_bd_content strong,
.rac_bd_content b {
    color: var(--rac-white-color);
    font-weight: 700;
}

.rac_sd_description em,
.rac_sd_description i,
.rac_bd_content em,
.rac_bd_content i {
    font-style: italic;
}

.rac_sd_description a,
.rac_bd_content a {
    color: var(--rac-primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(238, 46, 46, 0.4);
    transition: var(--rac-transition);
}

.rac_sd_description a:hover,
.rac_bd_content a:hover {
    color: var(--rac-white-color);
    text-decoration-color: var(--rac-white-color);
}

/* Blockquote */
.rac_sd_description blockquote,
.rac_bd_content blockquote {
    position: relative;
    margin: 26px 0;
    padding: 24px 26px 24px 56px;
    background: rgba(238, 46, 46, 0.06);
    border-left: 4px solid var(--rac-primary-color);
    border-radius: 0 16px 16px 0;
    color: var(--rac-white-color);
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
}

.rac_sd_description blockquote::before,
.rac_bd_content blockquote::before {
    content: "\201C";
    position: absolute;
    left: 18px;
    top: 8px;
    font-size: 40px;
    font-family: Georgia, serif;
    color: var(--rac-primary-color);
    opacity: 0.6;
    line-height: 1;
}

.rac_sd_description blockquote p,
.rac_bd_content blockquote p {
    margin-bottom: 0;
}

/* Images */
.rac_sd_description img,
.rac_bd_content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rac-border-radius);
    border: 1px solid var(--rac-border-color);
    margin: 18px 0;
    display: block;
}

.rac_sd_description figure,
.rac_bd_content figure {
    margin: 18px 0;
}

.rac_sd_description figcaption,
.rac_bd_content figcaption {
    font-size: 13px;
    color: var(--rac-font-color);
    text-align: center;
    margin-top: 8px;
}

/* Tables */
.rac_sd_description table,
.rac_bd_content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 26px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--rac-border-color);
}

.rac_sd_description th,
.rac_sd_description td,
.rac_bd_content th,
.rac_bd_content td {
    padding: 12px 16px;
    border: 1px solid var(--rac-border-color);
    text-align: left;
    line-height: 1.6;
}

.rac_sd_description th,
.rac_bd_content th {
    background: rgba(238, 46, 46, 0.1);
    color: var(--rac-white-color);
    font-weight: 700;
}

.rac_sd_description tr:nth-child(even) td,
.rac_bd_content tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

/* Horizontal rule */
.rac_sd_description hr,
.rac_bd_content hr {
    border: none;
    border-top: 1px solid var(--rac-border-color);
    margin: 30px 0;
}

/* Inline code / preformatted */
.rac_sd_description code,
.rac_bd_content code {
    background: rgba(255, 255, 255, 0.06);
    color: var(--rac-primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.rac_sd_description pre,
.rac_bd_content pre {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--rac-border-color);
    border-radius: 12px;
    padding: 16px 18px;
    overflow-x: auto;
    margin: 20px 0;
}

.rac_sd_description pre code,
.rac_bd_content pre code {
    background: none;
    color: var(--rac-font-color);
    padding: 0;
}

/* CKEditor text alignment classes */
.rac_sd_description .text-center,
.rac_bd_content .text-center {
    text-align: center;
}

.rac_sd_description .text-right,
.rac_bd_content .text-right {
    text-align: right;
}

/* CKEditor default image style classes (image-style-side etc.) */
.rac_sd_description .image-style-side,
.rac_bd_content .image-style-side {
    float: right;
    max-width: 50%;
    margin-left: 24px;
}

@media (max-width: 767px) {

    .rac_sd_description .image-style-side,
    .rac_bd_content .image-style-side {
        float: none;
        max-width: 100%;
        margin-left: 0;
    }
}