/************************************/


/*** 	 01. Global Variables	  ***/


/************************************/

:root {
    --primary-color: #111330;
    --secondary-color: #CEE2EE;
    --text-color: #111330;
    --accent-color: #EF5744;
    --bg-color: #F6F3F0;
    --white-color: #FFFFFF;
    --divider-color: #1113301A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Fraunces", serif;
    --accent-font: "Fraunces", serif;
}


/************************************/


/*** 	   02. General css		  ***/


/************************************/

section {
    padding-top: 70px;
    padding-bottom: 70px;
}

p {
    font-size: 17px !important;
}


/*Menu*/

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    display: block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1em;
    padding: 15px 15px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.main-navigation ul.sub-menu {
    display: none;
    padding-left: 15px;
}

.main-navigation ul.sub-menu.depth-0 {
    padding-left: 0;
}

.menu-toggle {
    display: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--accent-color);
}

.main-navigation .current-menu-item>a {
    font-weight: bold;
}


/* Mobile styles */

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        width: 40px;
        height: 40px;
        background: #000;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        z-index: 1;
        color: #fff;
    }
    .main-navigation li.has-children>a {
        padding-right: 40px;
    }
    .main-navigation ul.sub-menu {
        display: none;
        padding-left: 15px;
        background-color: #f9f9f9;
    }
    .main-navigation ul.sub-menu .sub-menu {
        padding-left: 15px;
    }
    .main-navigation ul.sub-menu li a {
        padding-left: 25px;
    }
    .main-navigation ul.sub-menu li.has-children>a {
        padding-right: 40px;
    }
    .main-navigation ul.sub-menu.active {
        display: block;
    }
}


/* Desktop styles */

@media (min-width: 992px) {
    .main-navigation>ul>li {
        display: inline-block;
    }
    .main-navigation ul.sub-menu {
        position: absolute;
        min-width: 200px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding-left: 0;
    }
    .main-navigation ul.sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }
    .main-navigation li.has-children>a {
        padding-right: 30px;
    }
    /* Show submenu on hover (desktop only) */
    .main-navigation li.has-children:hover>ul.sub-menu {
        display: block;
    }
}


/* Navbar styles */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    padding-bottom: 0px;
}

.top-nav {
    background: var(--white-color);
    /* border-radius: 30px; */
    align-items: center;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

button.navbar-toggler {
    background: #EF5744;
    color: #fff;
}


/*Menu End*/


/* Sticky Navbar */

#masthead {
    background-color: #fff;
    transition: .5s ease top;
    top: -105px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    &.sticky {
        /* position: fixed; */
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
    .header {
        justify-content: center;
        h1 {
            color: white;
        }
    }
    z-index: 999;
}

.lcp-text {
    font-display: swap;
    /* if using custom font */
    animation: none;
    /* avoid load animations on LCP element */
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}


/* .container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
} */

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    background: #111330;
    color: var(--white-color);
    border: none;
    border-radius: 100px;
    padding: 17px 56px 17px 25px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    background-image: url('../assets/images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #EF5744;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
    background-color: var(--primary-color);
    background-image: url('../assets/images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
    background: var(--white-color);
}

.btn-default.btn-dark {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-default.btn-dark:before {
    background-color: var(--primary-color);
    background-image: url('../assets/images/arrow-white.svg');
}

.btn-default.btn-dark::after {
    background: var(--white-color);
}

.btn-default.btn-white-hover {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    background: white;
    color: black;
    border: none;
    border-radius: 100px;
    padding: 17px 56px 17px 25px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default.btn-white-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 40px;
    height: 40px;
    background-color: #111330;
    background-image: url('../assets/images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    /* color: white; */
}

.btn-default.btn-white-hover:hover::before {
    transform: translateY(-50%) rotate(45deg);
    background-color: #111330;
    /* arrow background #111330 */
    background-image: url('../assets/images/arrow-white.svg');
    /* arrow icon white */
}

.btn-default.btn-white-hover::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #e63946;
    /* hover overlay white */
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn-default.btn-white-hover:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default.btn-white-hover:hover {
    color: white;
    /* text turns #111330 */
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-right: 20px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
    color: #EF5744;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url('../assets/images/arrow-text.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 10px;
    height: 10px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    filter: brightness(0) invert(0);
    transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    position: relative;
    background-color: var(--bg-color);
    border-radius: 80px 80px 0 0;
    /* margin-top: -90px; */
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title.section-title-center {
    width: 100%;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 20px;
}

.main-title {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #595A6F;
    padding-left: 14px;
    margin-bottom: 10px;
}

.main-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.section-title h1 {
    display: inline-block;
    font-size: 54px;
    line-height: 1.1em;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 40px;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.light-section {
    background-color: var(--secondary-color);
}

.light-section .section-title-content p,
.light-section .section-title p,
.light-section .section-title h3 {
    color: var(--primary-color);
}

.light-section .section-title h3::before {
    background: var(--primary-color);
}

.dark-section {
    background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}


/************************************/


/**** 	   03. Header css		 ****/


/************************************/

.topbar {
    padding: 10px 0;
    background-color: #111330;
}

.topbar-contact-info ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.topbar-contact-info ul li {
    font-size: 16px;
    color: var(--white-color);
}

.topbar-contact-info ul li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
    color: var(--accent-color);
}

.topbar-contact-info ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.topbar-social-links {
    text-align: right;
}

.topbar-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    gap: 10px 20px;
}

.topbar-social-links ul li a {
    background: var(--accent-color);
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.topbar-social-links ul li a i {
    font-size: 16px;
}

header.main-header {
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    /* max-width: 1300px; */
    /* margin: 0 auto; */
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(30px);
    max-width: 1300px;
    margin: 0 auto;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    position: relative;
    margin: 0 5px;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1em;
    padding: 15px 10px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-btn {
    text-align: end;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--white-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}


/************************************/


/***        04. Hero css	      ***/


/************************************/


/* === Slider Base === */

.slider01 {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


/* === Right Image Animation === */

.rotate360 {
    animation: rotate360 25s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* === Rotate the badge continuously === */

.bg-video-wrap .book-btn {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 141px;
    height: 141px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../assets/images/about-removebg.webp) no-repeat center center;
    background-size: contain;
    text-decoration: none;
    animation: spinBadge 10s linear infinite;
    /* Add rotation */
}


/* Keep the badge background rotating smoothly */

@keyframes spinBadge {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Ensure pseudo-element stays fixed with badge */

.bg-video-wrap .book-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 141px;
    height: 141px;
    /* background: url(../assets/images/about.png) no-repeat center center; */
    background-size: contain;
    z-index: 0;
    animation: spinBadge 10s linear infinite;
}


/* Inner icon stays static in center */

.bg-video-wrap .book-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 83px;
    height: 83px;
    z-index: 1;
}

.bg-video-wrap .book-btn .icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}


/* === Center Content in Middle === */

.center-content {
    position: absolute;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    margin-top: 250px;
}

.center-content h1 {
    /* font-size: 72px; */
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.center-content h1 span {
    /* font-size: 85px; */
    font-weight: 400;
    color: #fff;
}


/* Make sure video background stays full height */

.bg-video-wrap {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}


/* Responsive */

@media (max-width: 991px) {
    .center-content h1 {
        font-size: 42px;
    }
    .center-content h1 span {
        font-size: 55px;
    }
    .center-content {
        transform: none !important;
        left: 0%;
        margin-top: 70px;
    }
}


/* === Responsive === */

@media (max-width: 991px) {
    .bg-video-wrap video,
    .bg-video-wrap .overlay {
        height: 100%;
    }
    .banner-social-list,
    .banner-call {
        display: none;
    }
    .book-btn {
        bottom: 20px;
        right: 20px;
    }
    .slider01 h1 {
        font-size: 2rem;
    }
    .slider01 p {
        font-size: 16px;
    }
    .bg-video-wrap .book-btn {
        position: absolute;
        right: 30px;
        bottom: 30px;
        width: 70px;
        height: 70px;
    }
}


/* === Video Background === */

.bg-video-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* === Overlay === */

.bg-video-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


/* === Foreground Container === */

.bg-video-wrap .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}


/* === Text & Buttons === */

.slide-in-left {
    animation: slideInLeft 1.2s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider01 h1 {
    font-weight: 700;
    line-height: 1.2;
}

.slider01 p {
    font-size: 18px;
    line-height: 1.7;
}

.slider02 {
    background: url('../assets/images/slider2bg.jpg') center/cover no-repeat;
    width: 100%;
    /* height: 90vh; */
    /* display: flex; */
    align-items: center;
}

.pizza-it {
    position: absolute;
}

.pizza-1 {
    bottom: 30px;
    /* right: -70px; */
}

.pizza-2 {
    top: 20px;
    right: -120px;
    max-width: 350px;
}

.pizza-3 {
    top: 50px;
    /* left: 360px; */
    /* top: 10px; */
}

.pizza-4 {
    bottom: 80px;
    left: -20px;
}

.banner-slide-3 .pizza-it {
    position: absolute;
}

.banner-slide-3 .pizza-1 {
    top: 100px;
    right: 640px;
}

.banner-slide-3 .pizza-2 {
    bottom: -20px;
    right: 50px;
    top: unset;
}

.banner-slide-3 .pizza-3 {
    top: 28px;
    right: 100px;
}

.banner-slide-3 .pizza-4 {
    bottom: -10px;
    right: 594px;
    left: unset;
}

.banner-slide-3 .pizza-5 {
    top: 100px;
    right: -35px;
}

.banner-slide-3 .pizza-6 {
    top: 30px;
    right: 600px;
}

.active .pizza-img {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUpBig;
    animation-delay: 0.5s;
}

.active .pizza-1 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 1.3s;
}

.active .pizza-2 {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 1.8s;
}

.active .pizza-3 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 2s;
}

.active .pizza-4 {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 2.5s;
}

.active .banner-slide-3 .pizza-img {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1s;
}

.active .banner-slide-3 .pizza-1 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 1.3s;
}

.active .banner-slide-3 .pizza-2 {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 1.8s;
}

.active .banner-slide-3 .pizza-3 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 2s;
}

.active .banner-slide-3 .pizza-4 {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 2.5s;
}

.active .banner-slide-3 .pizza-5 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 1.5s;
}

.active .banner-slide-3 .pizza-6 {
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounceInDown;
    animation-delay: 1.8s;
}


/* .slider03 {
    background: linear-gradient(90deg, #a4161a, #161616);
    color: #fff;
} */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

@keyframes swing {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

.slider-image {
    animation: swing 4s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.img02 {
    animation: fadeUp 2s ease-in-out forwards;
}

@keyframes zoomInOut {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.img03 {
    animation: zoomInOut 6s ease-in-out infinite;
}

.slide-in-left {
    animation: slideInLeft 1.2s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1.2s ease forwards;
}

.rotate360 {
    animation: rotate360 20s linear infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Slide in from top */

.slide-in-top {
    animation: slideInTop 1.2s ease forwards;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
        /* starts above */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        /* ends at original position */
    }
}


/* Slide in from bottom */

.slide-in-bottom {
    animation: slideInBottom 1.2s ease forwards;
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
        /* starts below */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        /* ends at original position */
    }
}

.rotate360 {
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.display-3 {
    font-size: 48px;
    font-weight: 700;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    /* background: white; */
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.slider-button-next {
    right: 10px;
}

.slider-button-prev {
    left: 10px;
}

.slider-pagination {
    text-align: center;
    margin-top: 10px;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background: #333;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.2s ease-out forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-in forwards;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.img01 {
    width: 100%;
    height: auto;
}

.img02 {
    width: 100%;
    height: auto;
}


/************************************/


/*** 	   05. Our-Story css 	  ***/


/************************************/

.about-us {
    padding: 70px 0 70px;
}

.about-extra-text p {
    font-size: 16px;
    /* color: #555; */
    line-height: 1.7;
    margin-top: 20px;
}

.about-us-images {
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.about-image-box-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    /* gap: 30px; */
}

.about-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.about-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.016;
    object-fit: cover;
}

.customer-rate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #111330;
    border-radius: 10px;
    width: 100px;
    height: 260px;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    padding: 25px 30px;
    margin-top: 30px;
}

.customer-rate-box h2 {
    height: 50%;
    font-size: 44px;
    color: var(--white-color);
}

.customer-rate-box p {
    height: 50%;
    color: var(--white-color);
    margin: 0;
}

.about-image-box-2 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 30px;
    width: 100%;
}

.about-image-box-2 .about-image {
    width: calc(100% - 220px);
    margin-top: -130px;
    height: auto;
}

.about-image-box-2 .about-image figure {
    border: 6px solid var(--bg-color);
}

.about-image-box-2 .about-image figure img {
    aspect-ratio: 1 / 0.9;
}

.about-image-box-2 .contact-us-circle {
    margin: -70px 0 0 50px;
    height: auto;
    width: auto;
}

.contact-us-circle a {
    display: inline-block;
    border-radius: 50%;
}

.contact-us-circle a img {
    max-width: 140px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
    height: auto;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-us-circle a:hover img {
    animation-play-state: paused;
}

.about-body-list {
    margin-bottom: 20px;
}

.about-body-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.about-body-list ul li {
    /* width: calc(50% - 15px); */
    position: relative;
    line-height: 1.5em;
    /* padding-left: 30px; */
}

.about-body-list ul li i {
    color: #EF5744 !important;
}

.about-counter-list {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    padding: 30px;
}

.about-counter-item {
    position: relative;
    width: calc(33.33% - 40px);
}

.about-counter-item::before {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.about-counter-item:last-child:before,
.about-counter-item:nth-child(3n+3):before {
    display: none;
}

.about-counter-item h2 {
    font-size: 34px;
    margin-bottom: 5px;
}

.about-counter-item p {
    margin: 0;
}

.about-btn {
    margin-top: 40px;
}


/************************************/


/*** 	  06. Service css 	  ***/

.service {
    background: url('/assets/images/BG-2.png');
    background-position: center center;
    background-size: cover;
    /* background-image: ; */
}

.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 70px 0px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.214);
    background-color: rgba(255, 255, 255, 0.963);
    overflow: hidden;
}


/* Overlay effect */

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 70px 0px;
    background: #EF5744;
    /* #111330 to #EF5744 */
    border-radius: 8px;
    transition: 1s;
    opacity: 0.8;
    z-index: 1;
}


/* 🔥 Make button react when the whole service card is hovered */

.service-item:hover .btn-default {
    color: #fff;
    border-color: #fff;
}

.service-item:hover .btn-default::after {
    right: auto;
    left: 0;
    width: 100%;
}

.service-item:hover .btn-default::before {
    border-radius: 70px 0px;
    background-color: #EF5744;
    top: 50%;
    right: 6px;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    background-image: url('../assets/images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px auto;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    transform: translateY(-50%) rotate(45deg);
}


/* Expand overlay on hover */

.title1 {
    font-size: 40px;
}

.service-item:hover .service-content::after {
    border-radius: 70px 0px;
    height: 100%;
    opacity: 1;
}


/* Keep content above overlay */

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
    transition: 1s;
}


/* Icon and heading color change on hover */

.service-item .service-content-icon i,
.service-item .service-content-icon h2,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-content-icon i {
    color: #EF5744;
}

.service-item:hover .service-content-icon i,
.service-item:hover .service-content-icon h2 {
    color: #fff !important;
}

.service-item:hover .service-content-icon p {
    color: #fff;
}


/* Button hover change */

.service-item:hover .service-content-icon a.btn-primary {
    background: #fff;
    color: #000;
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}


/************************************/


/************************************/


/*** 	  06. Our History css 	  ***/


/************************************/

.our-steps {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1600&q=80');
    /* Replace with your bg image */
    background-size: cover;
    background-position: center;
    color: #fff;
    /* padding: 80px 0; */
    overflow: hidden;
    z-index: 9999;
    background-attachment: fixed;
}

.our-steps .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    /* Dark overlay */
    z-index: 1;
}

.our-steps .container {
    position: relative;
    z-index: 2;
}


/* Optional: make text and steps more readable */

.our-steps .history-item-content h2,
.our-steps .history-item-content h4,
.our-steps .history-item-content p {
    color: #fff;
}

.our-history-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.history-item {
    /* width: calc(33.33% - 20px); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.history-item:nth-child(even) {
    flex-direction: column-reverse;
    margin-top: 40px;
}

.history-item-content h2 {
    font-size: 36px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    /* padding-bottom: 20px; */
}

.history-item-content p {
    color: var(--primary-color);
    margin: 0;
}

.history-item-image figure {
    display: block;
    border-radius: 50%;
}

.history-item-image figure img {
    width: 100%;
    max-width: 170px;
    border-radius: 50%;
    margin: 0 auto;
}


/************************************/


/*** 	 07. Why Choose Us css 	  ***/


/************************************/

.why-choose-us {
    position: relative;
}

.why-choose-us::before,
.why-choose-us::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Make sure pseudo-elements are visible and positioned */

.why-choose-us::before,
.why-choose-us::after {
    content: "";
    position: absolute;
    width: 150px;
    /* Adjust size */
    height: 150px;
    /* Adjust size */
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}


/* Positioning your existing images */

.why-choose-us::before {
    background-image: url('../assets/images/why-1.webp');
    top: 150px;
    left: -70px;
    animation: rotate360 10s linear infinite;
}

.why-choose-us::after {
    background-image: url('../assets/images/why-2.webp');
    bottom: 25%;
    right: -70px;
    animation: rotate360 12s linear infinite reverse;
    /* reverse for opposite rotation */
}


/* Keyframes for continuous rotation */

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.why-choose-us .section-title.section-title-center {
    max-width: 1080px;
}

.why-choose-btn {
    text-align: center;
    margin-top: 40px;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-item {
    position: relative;
    /* width: calc(25% - 22.5px); */
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    /* border-radius: 200px; */
    text-align: center;
    padding: 50px 50px;
    overflow: hidden;
    border-radius: 300px 300px 0 0;
}

.why-choose-item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    z-index: 1;
}

.why-choose-item:hover .why-i {
    /* display: none; */
    opacity: 0;
}

.why-choose-item-content h3 {
    font-size: 26px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-content img {
    max-width: 130px;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
}

.why-choose-item.active .why-choose-item-content img,
.why-choose-item:hover .why-choose-item-content img {
    opacity: 0;
}

.why-choose-item-content p {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.why-choose-item.active .why-choose-item-content p,
.why-choose-item:hover .why-choose-item-content p,
.why-choose-item.active .why-choose-item-content h3,
.why-choose-item:hover .why-choose-item-content h3 {
    color: var(--white-color);
}

.why-choose-item-bg-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 300px 300px 0 0;
}

.why-choose-item.active .why-choose-item-bg-image,
.why-choose-item:hover .why-choose-item-bg-image {
    opacity: 1;
    visibility: visible;
}

.why-choose-item-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    /* border-radius: 200px; */
    opacity: 50%;
    width: 100%;
    /* height: 100%; */
    border-radius: 300px 300px 0 0;
}

.why-choose-item-bg-image img {
    width: 100%;
    height: 100%;
    /* border-radius: 200px; */
}

.section-footer-text {
    margin-top: 60px;
    text-align: center;
}

.section-footer-text p {
    display: inline-block;
    margin-bottom: 0;
}

.dark-section .section-footer-text p {
    color: var(--white-color);
}

.section-footer-text span {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    background: var(--accent-color);
    padding: 4px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}


/************************************/


/***   		08. Our Menu Css      ***/


/************************************/

.wow,
.animated {
    animation-duration: 2s !important;
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

.menu-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, #212529, #212529 5px, rgba(0, 0, 0, 0) 5px, rgba(0, 0, 0, 0) 10px);
    z-index: -1;
    opacity: 0.009;
}


/* Tabs */

.tab {
    overflow: hidden;
}

.tab ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.tab .tabs {
    text-align: center;
    margin-bottom: 40px;
}

.tab .tabs li {
    display: inline-block;
    margin: 0 30px;
}

.tab .tabs li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.tab .tabs li a i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #edf5ff;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: 0.4s;
}

.tab .tabs li a:hover,
.tab .tabs li a:focus {
    color: #EF5744;
}

.tab .tabs li a:hover i,
.tab .tabs li a:focus i {
    color: #fff;
    background-color: #EF5744;
}

.tab .tabs li.current a {
    color: #EF5744;
}

.tab .tabs li.current a i {
    color: #fff;
    background-color: #EF5744;
}


/* Tabs Content */

.tab .tabs_item {
    display: none;
    position: relative;
    padding: 30px 30px 0 30px;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tab .tabs_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EF5744;
    opacity: 0.8;
    z-index: -1;
}

.tab .tabs_item:first-child {
    display: block;
}


/* Single Menu */

.tab .tabs_item .single-menu {
    position: relative;
    margin-bottom: 30px;
    padding-left: 110px;
}

.tab .tabs_item .single-menu .food-menu-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
}

.tab .tabs_item .single-menu .food-menu-img img {
    border-radius: 50%;
}

.tab .tabs_item .single-menu .food-menu-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 9px;
    overflow: hidden;
}

.tab .tabs_item .single-menu .food-menu-content .menu-price {
    float: right;
    font-weight: 400;
    font-size: 20px;
}

.tab .tabs_item .single-menu .food-menu-content ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.tab .tabs_item .single-menu .food-menu-content ul li {
    color: #eeeeee;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 6px;
    font-weight: 600;
}


/* Background images for each tab */

.tab-item-bg-one {
    background-image: url(../assets/images/offer-img1.jpg);
}

.tab-item-bg-two {
    background-image: url(../assets/images/offer-img2.jpg);
}

.tab-item-bg-three {
    background-image: url(../assets/images/offer-img3.jpg);
}

.tab-item-bg-four {
    background-image: url(../assets/images/offer-img4.jpg);
}

.tab-item-bg-five {
    background-image: url(../assets/images/offer-img1.jpg);
}

.tab-item-bg-six {
    background-image: url(../assets/images/offer-img2.jpg);
}

.line-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    z-index: 2;
}

.team-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    width: auto;
    z-index: 2;
}


/* Bottom to Top Animation */

.line-bg img {
    display: block;
    animation: moveUp 4s linear infinite;
    /* Adjust duration as needed */
}

@keyframes moveUp {
    0% {
        transform: translateY(100%);
        /* Start below */
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        /* Move above */
        opacity: 0;
    }
}


/* Menu Area Two */

.menu-area-two {
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu-area-two::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, #212529, #212529 5px, rgba(0, 0, 0, 0) 5px, rgba(0, 0, 0, 0) 10px);
    z-index: -1;
    opacity: 0.009;
}

.menu-area-two .shape2 {
    top: 10%;
}


/* Single Restaurant Menu */

.single-restaurant-menu {
    margin-bottom: 40px;
    position: relative;
    padding-left: 110px;
}

.single-restaurant-menu .menu-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 85px;
    height: 85px;
}

.single-restaurant-menu .menu-image img {
    border-radius: 50%;
}

.single-restaurant-menu .menu-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 9px;
    overflow: hidden;
}

.single-restaurant-menu .menu-content .price {
    float: right;
    font-size: 20px;
    font-weight: 400;
    color: #EF5744;
}

.single-restaurant-menu .menu-content ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style-type: none;
    margin-right: -15px;
    margin-left: -15px;
}

.single-restaurant-menu .menu-content ul li {
    color: #777777;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 6px;
    font-weight: 600;
}


/* Box Menu */

.laureel-food-menu {
    margin-bottom: 40px;
}

.laureel-food-menu h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 3px solid #eeeeee;
    padding-bottom: 5px;
    display: inline-block;
}

.laureel-food-menu .single-box-menu {
    position: relative;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 5px;
    padding: 30px 30px 30px 135px;
    box-shadow: 2px 2px 10px rgba(72, 73, 121, 0.15);
}

.laureel-food-menu .single-box-menu .food-image {
    position: absolute;
    left: 30px;
    top: 25px;
    width: 85px;
    height: 85px;
}

.laureel-food-menu .single-box-menu .food-image img {
    border-radius: 50%;
}

.laureel-food-menu .single-box-menu .menu-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 9px;
    overflow: hidden;
}

.laureel-food-menu .single-box-menu .menu-content .price {
    float: right;
    font-size: 20px;
    font-weight: 400;
    color: #EF5744;
}

.laureel-food-menu .single-box-menu .menu-content p {
    margin-bottom: 0;
}


/* Menu Item */


/* .menu-item {
    margin-bottom: 40px;
} */

.menu-item .menu-image {
    position: relative;
}

.menu-item .menu-image .price {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #EF5744;
    color: #fff;
    padding: 6px 10px 4px;
    border-radius: 5px 0 0 0;
}

.menu-item .menu-content {
    margin-top: 20px;
}

.menu-item .menu-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 9px;
}

.menu-item .menu-content p {
    margin-bottom: 0;
}


/* Backgrounds and shapes */

.bottom-bg {
    background-image: url(../img/rightside-bg.png);
    background-position: center center;
    background-size: contain;
    background-repeat: repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    opacity: 0.2;
}

.shape1 {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
}

.shape2 {
    position: absolute;
    top: 20%;
    right: 50px;
    width: 100px;
}

.shape3 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 100px;
}


/* vision mission */

.our-approach {
    background: #ffff;
    /* padding: 100px 0 70px; */
}

.mission-vission-item {
    background: #f4f4f4;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.mission-vission-header {
    position: relative;
    padding: 40px;
}

.mission-vission-header:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-header::after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.mission-vission-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    z-index: 1;
    overflow: hidden;
}

.mission-vission-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .icon-box:before {
    top: auto;
    height: 100%;
}

.mission-vission-item .icon-box img {
    position: relative;
    max-width: 30px;
    z-index: 1;
}

.mission-vission-content {
    position: relative;
    z-index: 1;
}

.mission-vission-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.mission-vission-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-content h3,
.mission-vission-item:hover .mission-vission-content p {
    color: var(--white-color);
}

.mission-vission-image img {
    width: 100%;
    aspect-ratio: 1 / 0.59;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-image img {
    transform: scale(1.1);
}

.our-benefit {
    padding: 100px 0;
}

.our-benefit-content {
    margin-right: 30px;
}

.our-benefit-img {
    margin-top: 30px;
}

.our-benefit-img figure {
    display: block;
    border-radius: 20px;
}

.our-benefit-img img {
    width: 100%;
    aspect-ratio: 1 / 0.543;
    object-fit: cover;
    border-radius: 20px;
}

.our-benefit-box {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.our-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.our-benefit-item {
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.our-benefit-item:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover::after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.our-benefit-item .icon-box {
    margin-bottom: 40px;
}

.our-benefit-item .icon-box img {
    position: relative;
    z-index: 1;
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.benefit-item-content {
    position: relative;
    z-index: 1;
}

.benefit-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.benefit-item-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p {
    color: var(--white-color);
}

.our-benefit-get-quote {
    text-align: center;
}

.our-benefit-get-quote p {
    margin-bottom: 0;
}

.our-benefit-get-quote p a {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.our-benefit-get-quote p a:hover {
    color: var(--primary-color);
}


/*  contact us */

.contact {
    position: relative;
    background: url('../assets/images/image-10.webp') center/cover no-repeat;
    overflow: hidden;
    /* ensures overlay doesn't overflow */
}

.contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* overlay color & opacity */
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    /* content appears above overlay */
}

.contact {
    background-color: white;
}

.reserv-col {
    background-color: #F6F3F0;
    /* background: url('../assets/images/pattern-dark.png') center/cover no-repeat; */
    /* background:url(../assets/images/resource/pattern-dark.png) repeat; */
    position: relative;
    padding: 35px 35px;
    min-height: 100%;
    /* border-radius: 50% 50% 50% 50%; */
}

.contact-form {
    /* background: url('../assets/images/pattern-dark.png') center/cover no-repeat; */
    border: 2px solid #EF5744;
}

.form-border {
    border: 2px solid #EF5744 !important;
}


/* Floating effect for left & right images */


/* .contact .col-1 img {
    animation: floatZoom 6s ease-in-out infinite alternate;
    transform-origin: center;
} */


/* Keyframes for floating + zooming */

@keyframes floatZoom {
    0% {
        transform: scale(1) translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05) translateY(-10px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0px);
        opacity: 0.7;
    }
}


/* Form Inputs & Selects */

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #EF5744;
    /* Theme color border */
    background-color: #fff;
    /* White background */
    color: #333;
    /* Text color */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #EF5744;
    /* Theme color on focus */
    box-shadow: 0 0 5px rgba(239, 87, 68, 0.5);
    outline: none;
}

.contact-formm .form-control,
.contact-formm .form-select {
    border: 2px solid #EF5744;
    /* Theme color border */
    background-color: #fff;
    /* White background */
    color: #333;
    /* Text color */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-formm .form-control:focus,
.contact-formm .form-select:focus {
    border-color: #EF5744;
    /* Theme color on focus */
    box-shadow: 0 0 5px rgba(239, 87, 68, 0.5);
    outline: none;
}


/* Submit Button */


/************************************/


/*** 	  09. What We Do css 	  ***/


/************************************/

.what-we-do {
    padding: 100px 0 190px;
}

.what-we-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-item {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.whay-we-content {
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
}

.what-we-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
}

.what-we-header .icon-box img {
    width: 100%;
    max-width: 50px;
}

.what-we-btn a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-btn a img {
    width: 100%;
    max-width: 12px;
    transition: all 0.3s ease-in-out;
}

.what-we-btn a:hover img {
    transform: rotate(45deg);
}

.what-we-body h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

.what-we-body p {
    margin: 0;
}

.what-we-img figure {
    display: block;
    border-radius: 30px;
}

.what-we-img img {
    width: 100%;
    aspect-ratio: 1 / 0.755;
    object-fit: cover;
    border-radius: 30px;
}

.what-we-item:nth-child(3n+2) {
    flex-direction: column-reverse;
}

.what-we-item:nth-child(3n+2) .whay-we-content {
    background: var(--accent-color);
}

.what-we-item:nth-child(3n+3) .whay-we-content {
    background: var(--primary-color);
}

.what-we-item:nth-child(3n+2) .what-we-btn a,
.what-we-item:nth-child(3n+3) .what-we-btn a {
    background: var(--white-color);
}

.what-we-item:nth-child(3n+2) .what-we-body h2,
.what-we-item:nth-child(3n+3) .what-we-body h2,
.what-we-item:nth-child(3n+2) .what-we-body p,
.what-we-item:nth-child(3n+3) .what-we-body p {
    color: var(--white-color);
}


/************************************/


/*** 	   10. CTA Box css 	      ***/


/************************************/

.count {
    position: relative;
    background: url('../assets/images/cta-box-bg.webp') no-repeat;
    background-position: center center;
    background-size: cover;
    /* padding: 100px 0 190px; */
    overflow: hidden;
}

.count::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.count .container {
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-top: 40px;
}

.cta-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-counter-item {
    /* width: calc(25% - 22.5px); */
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
}

.cta-counter-item .icon-box {
    margin-right: 20px;
}

.cta-counter-item .icon-box img {
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.cta-counter-item:hover .icon-box img {
    transform: rotateY(180deg);
    filter: brightness(0) invert(1);
}

.cta-counter-content {
    width: calc(100% - 60px);
}

.cta-counter-content h2 {
    font-size: 44px;
    line-height: 1em;
    color: var(--white-color);
    margin-bottom: 10px;
}

.cta-counter-content p {
    color: var(--white-color);
    margin: 0;
}


/* Team */

.team-item .overlay-box {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background-position: center center;
}

.team-item .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.40;
    background-color: #e4c590;
}

.team-item .overlay-box .overlay-inner {
    position: relative;
    text-align: center;
}

.team-item .inner-box:hover .overlay-box {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}


/*** Team Start ***/

.team2 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/team-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: #EF5744 !important;
    color: white !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: white !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}


/************************************/


/*** 	  11. Our Gallery css     ***/


/************************************/

.our-gallery {
    padding: 100px 0 190px;
}

.our-gallery .container-fluid {
    max-width: 1600px;
}

.our-gallery-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-image {
    position: relative;
    width: calc(33.33% - 20px);
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    opacity: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.gallery-image:hover:before {
    transform: scale(1);
}

.gallery-image figure {
    display: block;
    border-radius: 20px;
}

.gallery-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease-in-out;
}

.gallery-image:hover .gallery-btn {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-btn a {
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn a img {
    width: 100%;
    max-width: 14px;
    transition: all 0.4s ease-in-out;
}

.gallery-btn a:hover img {
    transform: rotate(45deg);
}


/************************************/


/*** 	12. Scrolling Ticker css  ***/


/************************************/

.our-scrolling-ticker {
    background: var(--white-color);
    padding: 100px 0 190px;
}

.scrolling-ticker-box {
    --gap: 40px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-ticker-box.scroll-reverse {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-ticker-box.scroll-reverse .scrolling-content {
    animation-direction: reverse;
}

.scrolling-ticker-box:hover .scrolling-content {
    animation-play-state: paused;
}

.scrolling-content span {
    font-family: var(--accent-font);
    font-size: 24px;
}

.scrolling-content span img {
    max-width: 64px;
    border-radius: 10px;
    margin-right: 20px;
}

.scrolling-content span:nth-child(even) img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}


/************************************/


/***   13. Our Testimonials css   ***/


/************************************/

.our-testimonials {
    overflow: hidden;
    background-color: #111330e6;
}

.testi_btn {
    margin-bottom: -2rem;
}

.testimonials-image {
    height: 100%;
}

.testimonials-image figure {
    display: block;
    height: 100%;
}

.testimonials-image figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

.testimonials-content {
    height: 100%;
    text-align: center;
    padding: 0px 5.208vw 0px;
}

.testimonials-content .section-title {
    margin-bottom: 40px;
}

.testimonial-quote {
    margin-bottom: 30px;
}

.testimonial-quote img {
    max-width: 50px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-author h2 {
    font-size: 20px;
}

.testimonial-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

.author-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.author-content p {
    color: var(--white-color);
    opacity: 80%;
    margin: 0;
}

.testimonial-pagination {
    text-align: center;
    margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    border-radius: 100px;
    height: 10px;
    width: 10px;
    background: var(--dark-divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.3s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 26px;
    background: var(--accent-color);
}


/************************************/


/***     14. Our events css       ***/


/************************************/


/* .our-events {
    padding: 100px 0 190px;
} */

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45em;
    background: transparent;
    color: var(--primary-color);
    padding: 5px 50px 5px 0px;
}

.faq-accordion.events-accordion .accordion-header .accordion-button {
    padding: 5px 0px 5px 50px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    background: var(--accent-color);
}

.faq-accordion.events-accordion .accordion-item .accordion-button::after,
.faq-accordion.events-accordion .accordion-item .accordion-button.collapsed::after {
    right: auto;
    left: 0;
}

.faq-accordion .accordion-item .accordion-body {
    padding-top: 15px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

.events-btn {
    margin-top: 50px;
}

.events-image-box {
    position: relative;
    margin-left: 15px;
}

.events-image figure {
    display: block;
    border-radius: 30px;
}

.events-image-box {
    position: relative;
}

.events-image {
    position: relative;
    display: inline-block;
}

.events-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #EF5744;
    border-radius: 100px 0% 100px 0;
    /* Same rounded top look */
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
    transition: all 0.4s ease;
}


/* .events-image img {
    width: 100%;
    border-radius: 500px 500px 0 0;
    display: block;
    position: relative;
    z-index: 1;
} */


/* Optional hover animation */

.events-image:hover::before {
    border-color: #ef5744;
    /* highlight color */
    transform: scale(1.03);
}

.events-image figure img {
    width: 100%;
    /* aspect-ratio: 1 / 1.133; */
    object-fit: cover;
    border-radius: 100px 0% 100px 0;
}

.event-counter-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 1;
}

.event-counter-item {
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
}

.event-counter-item h2 {
    font-size: 44px;
    line-height: 1em;
    color: var(--white-color);
    margin-bottom: 5px;
}

.event-counter-item p {
    color: var(--white-color);
    margin: 0;
}


/************************************/


/************************************/


/*** 	   16. Our Blog css       ***/


/************************************/

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
    font-size: 24px;
}

.post-item-content p {
    font-size: 14px;
    /* color: ; */
    margin: 10px 0;
}

.post-meta {
    font-size: 12px;
    /* color: #999; */
    margin-bottom: 10px;
}


/************************************/


/***  Footer CSS for Style-Two ***/


/* .main-footer.style-two {
    padding: 100px 0 0;
    position: relative;
    background: var(--dark-color);
    color: var(--white-color);
} */

.footer-top-button {
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translate(-50%, 50%);
}

.footer-top-button a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111330;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

.footer-top-button a:hover {
    background: var(--accent-color);
}

.footer-top-button a img {
    width: 100%;
    max-width: 12px;
    transform: rotate(-45deg);
    animation: jumpInfinite 0.8s linear infinite alternate;
}

@keyframes jumpInfinite {
    0% {
        margin-top: 8px;
    }
    100% {
        margin-bottom: 8px;
    }
}

.footer-overlay {
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .widget-title {
    font-size: 20px;
    color: #111330;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.footer-widget .widget-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget .widget-content ul li {
    margin-bottom: 15px;
    line-height: 1.5em;
}

.footer-widget .widget-content ul li a {
    color: #111330;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-widget .widget-content ul li a:hover {
    color: var(--accent-color);
}

.footer-widget.contact-widget .widget-content ul.list {
    padding: 0;
}

.footer-widget.contact-widget .widget-content ul.list li {
    display: flex;
    /* align-items: center; */
    margin-bottom: 15px;
    color: #111330;
}

.footer-widget.contact-widget .widget-content ul.list li i {
    margin-right: 10px;
    font-size: 18px;
    color: var(--accent-color);
}

.footer-widget.contact-widget .social-links {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.footer-widget.contact-widget .social-links li {
    display: inline-block;
    margin-right: 10px;
}

.footer-widget.contact-widget .social-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #111330;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-widget.contact-widget .social-links li a:hover {
    background: var(--accent-color);
}

.footer-widget.contact-widget .social-links li a i {
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.copyright {
    border-top: 1px solid #111330;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.copyright-info {
    color: #111330;
}

.copyright-info a {
    color: #111330;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.copyright-info a:hover {
    color: #ef5744;
}

@media (max-width: 767px) {
    .copyright {
        flex-direction: column;
        text-align: center;
    }
    .footer-widget {
        margin-bottom: 20px;
    }
    .footer-widget.contact-widget .social-links li {
        margin-right: 5px;
    }
}


/************************************/


/***   28. Contact Us Page css	  ***/


/************************************/

.page-contact-us {
    background-color: #fff;
    color: #111330;
    ;
}

.contact-info-item {
    border: 1px solid #111330;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-info-img img {
    width: 100%;
    aspect-ratio: 1 / 0.61;
    object-fit: cover;
}

.contact-info-body {
    position: relative;
    padding: 80px 80px 40px;
    text-align: center;
}

.contact-info-body:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-body:after {
    top: 0;
}

.contact-info-body .icon-box {
    position: relative;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.contact-info-body .icon-box:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111330;
    border-radius: 5px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after {
    top: 0;
}

.contact-info-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 34px;
    z-index: 1;
}

.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.contact-info-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p {
    color: var(--white-color);
}

.contact-form-section {
    background: var(--secondary-color);
    padding: 100px 0;
}

.contact-form-img {
    margin-right: 45px;
}

.contact-form-img figure {
    display: block;
    border-radius: 20px;
}

.contact-form-img img {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    border-radius: 20px;
}

.contact-formm .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background: var(--white-color);
    border-radius: 12px;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
    outline: none;
}

.contact-formm .form-control::placeholder {
    color: var(--text-color);
}

.google-map {
    overflow: hidden;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 600px;
    width: 100%;
}

.contact-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0 100px 0 100px;
}


/************************************/


/***      31. Responsive css      ***/


/************************************/

@media only screen and (max-width: 1300px) {
    .topbar {
        padding: 15px 0;
    }
    .navbar {
        border-radius: 0;
        padding: 20px 0;
    }
    header.main-header .header-sticky.active {
        transform: translateY(0px);
    }
    .bg-section {
        border-radius: 40px 40px 0 0;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default::before {
        width: 34px;
        height: 34px;
        right: 4px;
    }
    .bg-section {
        border-radius: 20px 20px 0 0;
    }
    .topbar {
        display: none;
    }
    .topbar-contact-info ul {
        gap: 20px;
    }
    .topbar-contact-info ul li {
        font-size: 14px;
    }
    .topbar-social-links ul {
        gap: 10px;
    }
    .navbar {
        padding: 0px;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-title.section-title-center {
        max-width: 100%;
    }
    .section-content-btn .section-btn {
        margin-top: 20px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 40px;
    }
    .section-title h2 {
        font-size: 34px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
        margin-top: 15px;
    }
    .hero {
        min-height: auto;
        align-content: start;
        padding: 200px 0 150px;
    }
    .hero.hero-slider-layout .hero-slide {
        min-height: auto;
        align-content: start;
        padding: 200px 0 150px;
    }
    .hero-content {
        margin: 0;
    }
    .working-hours-item {
        margin: 30px auto 0 0;
        padding: 20px;
    }
    .working-hours-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .working-hours-body ul li {
        margin-bottom: 10px;
    }
    /* .about-us {
        padding: 50px 0 140px;
    } */
    .about-us-images {
        max-width: 80%;
        margin: 0 auto 30px;
    }
    .customer-rate-box {
        height: 250px;
        padding: 20px 25px;
    }
    .customer-rate-box h2 {
        font-size: 34px;
    }
    .about-image-box-2 .contact-us-circle {
        margin: -60px 0 0 40px;
    }
    .contact-us-circle a img {
        max-width: 120px;
    }
    .about-image-box-2 .about-image {
        width: calc(100% - 190px);
    }
    .about-body-list {
        margin-bottom: 10px;
    }
    /* .about-body-list ul li {
        padding-left: 25px;
    } */
    .about-body-list ul li::before {
        font-size: 16px;
    }
    .about-counter-list {
        padding: 20px;
    }
    .about-counter-item h2 {
        font-size: 28px
    }
    .about-btn {
        margin-top: 30px;
    }
    .our-history {
        padding: 50px 0 140px;
    }
    .history-item {
        gap: 30px;
    }
    .history-item-content h2 {
        font-size: 45px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .history-item-image figure img {
        max-width: 150px;
    }
    /* .why-choose-us {
        padding: 50px 0 140px;
    } */
    .why-choose-us::before,
    .why-choose-us::after {
        width: 160px;
        height: 160px;
        opacity: 30%;
    }
    .why-choose-btn {
        margin-top: 30px;
    }
    .why-choose-item-content h2 {
        font-size: 45px;
    }
    .section-footer-text {
        margin-top: 30px;
    }
    .section-footer-text span {
        padding: 2px 8px;
        margin-right: 5px;
    }
    .our-menu {
        padding: 50px 0 140px;
    }
    .our-menu-tab-nav {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .our-menu-tab-nav ul {
        gap: 15px 40px;
    }
    .our-menu-list {
        gap: 30px;
    }
    .our-menu-item {
        width: 100%;
    }
    .our-menu-image {
        margin-right: 15px;
    }
    .our-menu-image img {
        max-width: 100px;
    }
    .menu-item-body {
        width: calc(100% - 115px);
    }
    .menu-item-title {
        margin-bottom: 10px;
    }
    .what-we-do {
        padding: 50px 0 140px;
    }
    .what-we-item {
        width: calc(50% - 15px);
    }
    .what-we-img figure,
    .what-we-img img {
        border-radius: 20px;
    }
    .whay-we-content {
        padding: 30px;
        border-radius: 20px;
    }
    .what-we-header {
        margin-bottom: 20px;
    }
    .what-we-header .icon-box img {
        max-width: 40px;
    }
    .what-we-body h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    /* .cta-box {
        padding: 50px 0 140px;
    } */
    .cta-btn {
        margin-top: 30px;
    }
    /* .cta-counter-list {
        margin-top: 40px;
        padding-top: 40px;
    } */
    /* .cta-counter-item {
        width: calc(50% - 15px);
    } */
    .cta-counter-content h2 {
        font-size: 34px;
    }
    .our-gallery {
        padding: 50px 0 140px;
    }
    .our-gallery-box {
        gap: 20px;
    }
    .gallery-image {
        width: calc(33.33% - 13.33px);
    }
    .our-scrolling-ticker {
        padding: 50px 0 140px;
    }
    .scrolling-ticker-box {
        --gap: 30px;
    }
    .scrolling-ticker-box.scroll-reverse {
        margin-top: 20px;
        padding-top: 20px;
    }
    .scrolling-content span {
        font-size: 22px;
    }
    .scrolling-content span img {
        margin-right: 10px;
    }
    .testimonials-image figure img {
        height: auto;
        aspect-ratio: 1 / 0.7;
    }
    .testimonials-content {
        padding: 50px 15px 140px;
    }
    .testimonials-content .section-title {
        margin-bottom: 40px;
    }
    .testimonial-quote {
        margin-bottom: 20px;
    }
    .testimonial-quote img {
        max-width: 40px;
    }
    .testimonial-content p {
        font-size: 20px;
    }
    .our-events {
        padding: 50px 0 140px;
    }
    .our-events-content {
        margin-bottom: 30px;
    }
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        padding: 0px 35px 0px 0px;
    }
    .faq-accordion.events-accordion .accordion-header .accordion-button {
        padding: 0px 0px 0px 35px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding-top: 10px;
    }
    .events-btn {
        margin-top: 40px;
    }
    .events-image-box {
        margin-left: 0;
    }
    .events-image figure img {
        aspect-ratio: 1 / 0.91;
    }
    .event-counter-item {
        padding: 20px;
    }
    .event-counter-item h2 {
        font-size: 34px;
    }
    .reserve-table {
        padding: 50px 0 140px;
    }
    .reserve-table-form {
        margin: 0 0 30px 0;
    }
    .reserve-table-form .form-label {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .reserve-table-form .form-control {
        padding: 12px 15px;
    }
    .reserve-table-form .form-control.form-select {
        padding: 12px 35px 12px 15px;
    }
    .reserve-table-content {
        padding: 30px;
    }
    .reserve-table-info-item {
        margin-bottom: 30px;
    }
    .reserve-table-info-item h3 {
        font-size: 22px;
    }
    .post-featured-image {
        margin-bottom: 15px;
    }
    .post-featured-image a {
        border-radius: 20px;
    }
    .post-featured-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-item-content {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .main-footer {
        padding: 50px 0 0;
    }
    .about-footer {
        margin: 0 0 30px 0;
    }
    .footer-social-links {
        padding-top: 20px;
        margin-top: 20px;
    }
    .footer-links h3 {
        margin-bottom: 20px;
    }
    .footer-links ul li {
        margin-bottom: 12px;
    }
    .footer-copyright {
        padding: 30px 0;
        margin-top: 60px;
    }
    .page-header {
        padding: 210px 0 170px;
    }
    .page-header-box h1 {
        font-size: 40px;
        margin-bottom: 5px;
    }
    .approach-content {
        margin-bottom: 30px;
    }
    .approach-body {
        padding: 30px;
        border-radius: 20px;
    }
    .mission-vision-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .mission-vision-content {
        margin-bottom: 20px;
    }
    .mission-vision-content h3 {
        margin-bottom: 10px;
    }
    .mission-vision-list ul li {
        padding-left: 25px;
    }
    .mission-vision-list ul li::before {
        font-size: 16px;
    }
    .approach-image {
        height: auto;
        margin-left: 0px;
    }
    .approach-image figure,
    .approach-image img {
        height: auto;
        border-radius: 20px;
    }
    .approach-image img {
        aspect-ratio: 1 / 0.7;
    }
    .best-food {
        padding: 50px 0 110px;
    }
    .best-food-item {
        padding: 150px 30px 30px 30px;
    }
    .test-tradition {
        padding: 50px 0 140px;
    }
    .test-tradition-image-box {
        height: auto;
        margin: 0 0 30px 0;
    }
    .test-tradition-image,
    .test-tradition-image figure,
    .test-tradition-image img {
        height: auto;
    }
    .test-tradition-image figure,
    .test-tradition-image img {
        border-radius: 20px;
    }
    .test-tradition-image img {
        aspect-ratio: 1 / 0.7;
    }
    .test-tradition-cta-box {
        max-width: 335px;
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
    .test-tradition-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .test-tradition-body-item .icon-box {
        margin-right: 10px;
    }
    .test-tradition-item-content {
        width: calc(100% - 60px);
    }
    .test-tradition-list ul li {
        margin-bottom: 15px;
        padding-left: 25px;
    }
    .test-tradition-list ul li:before {
        font-size: 16px;
    }
    .our-team {
        padding: 50px 0 110px;
    }
    .team-image {
        margin-bottom: 15px;
    }
    .team-image img {
        aspect-ratio: 1 / 1.1;
    }
    .our-faqs {
        padding: 50px 0 140px;
    }
    .faqs-images {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .faq-img-1 figure,
    .faq-img-1 img,
    .faq-img-2 figure,
    .faq-img-2 img {
        border-radius: 20px;
    }
    .faq-img-1 img {
        aspect-ratio: 1 / 0.7;
    }
    .faq-img-2 img {
        aspect-ratio: 1 / 1.37;
    }
    .faq-cta-box {
        right: auto;
        bottom: 15px;
        left: 15px;
        padding: 10px;
    }
    .page-menu {
        padding: 50px 0 140px;
    }
    .page-blog {
        padding: 50px 0 140px;
    }
    .page-pagination {
        margin-top: 10px;
    }
    .page-single-post {
        padding: 50px 0 140px;
    }
    .post-image {
        margin-bottom: 20px;
    }
    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.44em;
    }
    .post-entry h2 {
        font-size: 34px;
    }
    .post-entry p {
        margin-bottom: 15px;
    }
    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    .post-entry blockquote p {
        font-size: 18px;
    }
    .post-tags {
        margin-bottom: 20px;
    }
    .tag-links {
        gap: 10px;
    }
    .post-tags .tag-links a {
        padding: 10px 15px;
    }
    .post-social-sharing ul {
        text-align: left;
    }
    .page-team {
        padding: 50px 0 110px;
    }
    .page-team-single {
        padding: 50px 0 140px;
    }
    .team-member-image {
        margin: 0 0 30px;
    }
    .member-social-list {
        margin-top: 30px;
    }
    .team-personal-info-box {
        padding: 50px 0 140px;
    }
    .team-expertise-box {
        margin: 0 0 30px 0;
    }
    .skills-progress-bar {
        margin-bottom: 30px;
    }
    .skills-progress-bar .skillbar .skill-data {
        margin-bottom: 15px;
    }
    .team-contact-form {
        padding: 30px;
    }
    .page-testimonials {
        padding: 50px 0 110px;
    }
    .page-testimonials .testimonial-item {
        padding: 20px;
    }
    .page-testimonials .testimonial-item .testimonial-content p {
        font-size: 16px;
    }
    .page-gallery {
        padding: 50px 0 110px;
    }
    .page-gallery-box .photo-gallery figure,
    .page-gallery-box .photo-gallery img {
        border-radius: 20px;
    }
    .page-video-gallery {
        padding: 50px 0 110px;
    }
    .video-gallery-image a::before,
    .video-gallery-image img {
        border-radius: 20px;
    }
    .page-faqs {
        padding: 50px 0 140px;
    }
    .page-single-sidebar {
        position: static;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page-category-list {
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-category-list ul li a {
        padding: 15px 35px 15px 15px;
    }
    .page-category-list ul li a::before {
        right: 15px;
    }
    .sidebar-cta-box {
        padding: 190px 20px 20px;
        border-radius: 20px;
    }
    .sidebar-cta-contact .icon-box {
        margin-right: 10px;
    }
    .cta-contact-content {
        width: calc(100% - 60px);
    }
    .page-faqs .page-faq-accordion {
        margin-bottom: 40px;
    }
    .contact-us-image {
        margin-bottom: 30px;
    }
    .contact-us-img figure,
    .contact-us-img img {
        border-radius: 20px;
    }
    .contact-us-img img {
        aspect-ratio: 1 / 0.7;
    }
    .opening-hours-item {
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
    .opening-hours-item h3 {
        margin-bottom: 20px;
    }
    .opening-hours-item ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .contact-form .form-control {
        padding: 13px 15px;
    }
    .contact-info-box {
        padding: 50px 0 140px;
    }
    .contact-info-item {
        width: calc(50% - 40px);
    }
    .contact-info-item:nth-child(3n+3)::after {
        display: block;
    }
    .contact-info-item:last-child:after,
    .contact-info-item:nth-child(2n+2)::after {
        display: none;
    }
    .google-map-iframe,
    .google-map-iframe iframe {
        height: 550px;
    }
    .page-reserve-table {
        padding: 50px 0 140px;
    }
    .error-page {
        padding: 50px 0 140px;
    }
    .error-page-image {
        margin-bottom: 20px;
    }
    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .topbar-contact-info ul {
        justify-content: center;
    }
    .topbar-contact-info ul li img {
        max-width: 18px;
        margin-right: 5px;
    }
    .topbar-contact-info ul li a span {
        display: none;
    }
    .topbar-social-links {
        display: none;
    }
    .section-row {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 26px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .hero-btn {
        gap: 15px;
    }
    .working-hours-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .working-hours-header h3 {
        font-size: 18px;
    }
    .working-hours-header img {
        max-width: 24px;
    }
    .about-us-images {
        max-width: 100%;
    }
    /* .about-image-box-1 {
        gap: 20px;
    } */
    .about-image-box-1 .about-image {
        width: calc(100% - 110px);
    }
    .customer-rate-box {
        gap: 0px;
        width: 75px;
        height: 150px;
        /* padding: 15px 20px; */
        margin-top: 0px;
        font-size: 17px;
    }
    .customer-rate-box h2 {
        height: 40%;
        font-size: 20px;
    }
    .customer-rate-box p {
        /* height: 60%; */
        font-size: 15px;
        font-size: 14px !important;
    }
    .about-image-box-2 {
        gap: 20px;
        height: auto;
        width: auto;
    }
    .about-image-box-2 .contact-us-circle {
        margin: -50px 0 0 20px;
    }
    .contact-us-circle a img {
        max-width: 100px;
    }
    .about-image-box-2 .about-image {
        width: calc(100% - 140px);
        margin-top: -30px;
    }
    .about-body-list ul {
        gap: 15px;
    }
    .about-counter-list {
        border-radius: 20px;
        padding: 15px;
    }
    .about-counter-list {
        gap: 20px;
    }
    .about-counter-item {
        width: calc(33.33% - 13.33px);
    }
    .about-counter-item::before {
        right: -10px;
    }
    .about-counter-item h2 {
        font-size: 22px;
    }
    .about-counter-item p {
        font-size: 14px;
    }
    .history-item {
        width: 100%;
        gap: 20px;
    }
    .history-item:nth-child(even) {
        flex-direction: column;
        margin-top: 0px;
    }
    .history-item-content h2 {
        font-size: 30px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .history-item-image figure img {
        max-width: 130px;
    }
    .why-choose-item-content h2 {
        font-size: 30px;
    }
    .our-menu-image {
        margin-right: 10px;
    }
    .our-menu-image img {
        max-width: 80px;
    }
    .menu-item-body {
        width: calc(100% - 90px);
    }
    .menu-item-title h3 {
        font-size: 18px;
    }
    .menu-item-title span {
        font-size: 16px;
    }
    .menu-item-content p {
        font-size: 14px;
    }
    .what-we-item {
        width: 100%;
    }
    .what-we-item:nth-child(3n+2) {
        flex-direction: inherit;
    }
    .whay-we-content {
        padding: 20px;
    }
    .what-we-body h2 {
        font-size: 24px;
    }
    .cta-btn {
        gap: 15px;
    }
    /* .cta-counter-item {
        display: block;
    } */
    .cta-counter-item .icon-box {
        margin: 0 0 15px 0;
    }
    .cta-counter-content {
        width: 100%;
    }
    .cta-counter-content h2 {
        font-size: 24px;
    }
    .gallery-image {
        width: calc(50% - 10px);
    }
    .gallery-btn a {
        width: 45px;
        height: 45px;
    }
    .gallery-btn a img {
        max-width: 12px;
    }
    .scrolling-content span {
        font-size: 20px;
    }
    .testimonials-image figure img {
        aspect-ratio: 1 / 0.99;
    }
    .testimonial-quote img {
        max-width: 35px;
    }
    .testimonial-content {
        margin-bottom: 20px;
    }
    .testimonial-content p {
        font-size: 16px;
    }
    .testimonial-pagination {
        margin-top: 30px;
    }
    .author-content h3 {
        font-size: 18px;
    }
    .faq-accordion .accordion-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }
    .event-counter-box {
        position: initial;
        margin-top: 20px;
    }
    .event-counter-item {
        background: var(--primary-color);
        width: calc(50% - 10px);
    }
    .event-counter-item h2 {
        font-size: 24px;
    }
    .event-counter-item p {
        font-size: 14px;
    }
    .reserve-table-form .form-label {
        font-size: 16px;
    }
    .reserve-table-content {
        padding: 30px 20px;
    }
    .reserve-table-info-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .reserve-table-info-item ul li a {
        width: 38px;
        height: 38px;
    }
    .reserve-table-info-item ul li a i {
        font-size: 18px;
    }
    .post-item-content h2 {
        font-size: 18px;
    }
    .footer-social-links h3 {
        font-size: 18px;
    }
    .footer-links {
        margin-bottom: 30px;
    }
    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-newsletter-form {
        margin-top: 20px;
    }
    .footer-copyright {
        justify-content: center;
        padding: 40px 0 15px;
        margin-top: 30px;
    }
    .page-header-box h1 {
        font-size: 26px;
    }
    .approach-body {
        padding: 20px;
    }
    .mission-vision-list ul {
        display: block;
    }
    .mission-vision-list ul li {
        width: 100%;
        margin-bottom: 10px;
    }
    .mission-vision-list ul li:last-child {
        margin-bottom: 0;
    }
    .approach-image img {
        aspect-ratio: 1 / 1.1;
    }
    .best-food-item {
        padding: 100px 20px 20px 20px;
    }
    .best-food-content {
        max-width: 100%;
    }
    .best-food-image img {
        opacity: 30%;
    }
    .test-tradition-image img {
        aspect-ratio: 1 / 0.85;
    }
    .test-tradition-cta-box {
        max-width: 300px;
        padding: 15px;
    }
    .test-tradition-cta-header h3 {
        font-size: 18px;
    }
    .test-tradition-body {
        gap: 20px;
    }
    .test-tradition-body-item {
        width: 100%;
    }
    .test-tradition-item-content h3 {
        font-size: 18px;
    }
    .faqs-images {
        gap: 20px;
    }
    .faq-img-box-1 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }
    .faq-img-1 {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }
    .faq-img-box-2 {
        width: 100%;
    }
    .faq-img-2 img {
        aspect-ratio: 1 / 0.9;
    }
    .post-single-meta ol li {
        font-size: 16px;
    }
    .post-single-meta ol li i {
        font-size: 16px;
    }
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-entry h2 {
        font-size: 24px;
    }
    .tag-links {
        font-size: 18px;
    }
    .member-content-body ul li {
        font-size: 18px;
    }
    .member-content-body ul li span {
        width: 60%;
    }
    .team-contact-form {
        border-radius: 12px;
        padding: 30px 20px;
    }
    .contact-us-img img {
        aspect-ratio: 1 / 1.02;
    }
    .opening-hours-item {
        padding: 10px;
    }
    .opening-hours-item h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .contact-info-item {
        width: 100%;
    }
    .contact-info-item:nth-child(2n+2)::after {
        display: block;
    }
    .contact-info-item:after {
        top: auto;
        right: 0;
        left: 0;
        height: 1px;
        width: 100%;
        bottom: -15px;
    }
    .contact-info-content h3 {
        font-size: 18px;
    }
    .google-map-iframe,
    .google-map-iframe iframe {
        height: 400px;
    }
}


/*================================================
Partner Area CSS
=================================================*/

.partner-area {
    text-align: center;
}


/* ---- Slider Styling ---- */

.slider-container {
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.slider-slide .item a {
    display: block;
    border: 1px solid #eee;
    padding: 10px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.slider-slide .item a:hover {
    /* border-color: ; */
    transform: scale(1.05);
}

.slider-slide img {
    width: 100px;
    height: auto;
    display: inline-block;
}


/* ---- Slider Navigation ---- */

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

.slider-button:hover {
    background: #ef5744;
    /* color: #fff; */
}

.slider-button-next {
    right: 10px;
}

.slider-button-prev {
    left: 10px;
}


/* ---- Dots ---- */

.slider-pagination {
    text-align: center;
    margin-top: 15px;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #007bff;
}


/* Responsive */

@media (max-width: 768px) {
    .footer-top-button {
        position: absolute;
        left: 50%;
        bottom: 82px;
        transform: translate(-50%, 50%);
    }
    .footer-top-button a {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #111330;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 50%;
        border: none;
        padding: 0;
        transition: all 0.4s ease-in-out;
    }
    .footer-top-button a img {
        width: 100%;
        max-width: 10px;
        transform: rotate(-45deg);
        animation: jumpInfinite 0.8s linear infinite alternate;
    }
    .slider-slide img {
        width: 80px;
    }
}

.reservation-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url(../assets/images/find-us-bg.webp);
    z-index: 1;
    text-align: center;
    position: relative;
}

.reservation-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    /* Replaced $#111330_color */
    opacity: 0.7;
    z-index: -1;
}

.reservation-area::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-image: url(../assets/images/dots.png);
    background-repeat: repeat;
    z-index: -1;
}

.reservation-area h2 {
    color: #ffffff;
    /* Replaced $white_color */
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: -5px;
    margin-bottom: 25px;
}

.work-process {
    background: #f7fbff;
    padding: 80px 0;
}

.process-step {
    position: relative;
}

.process-icon {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    border: 2px dashed #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s;
}

.process-icon .icon-front,
.process-icon .icon-back {
    position: absolute;
    font-size: 40px;
    color: #111;
    backface-visibility: hidden;
    transition: transform 0.6s;
}

.process-icon .icon-back {
    transform: rotateY(180deg);
}

.process-step:hover .process-icon .icon-front {
    transform: rotateY(180deg);
}

.process-step:hover .process-icon .icon-back {
    transform: rotateY(360deg);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e63946;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h2 {
    margin-top: 20px;
    font-weight: 700;
    font-size: 24px;
}

.fixh2 {
    font-size: 24px;
    font-weight: 600;
}

.process-step p {
    color: #333;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 0;
}

@media (max-width: 992px) {
    .spacing-7 {
        padding: 0px !important;
    }
    .services-section .service-block {
        margin-bottom: 30px;
    }
    .service-block .inner-box .icon {
        left: -8px !important;
    }
    .menu-tabs .buttons .tab-buttons .tab-btn {
        margin-left: 0px;
    }
    .contact-info-body {
        padding: 40px 40px 20px;
    }
    .why-choose-item {
        width: 100%;
        padding-right: 30px;
        padding-left: 30px;
        padding-bottom: 35px;
        padding-top: 60px;
    }
    /* .copyright-info-right,
    .copyright-info {
        font-size: 15px !important;
    } */
    .slider-slide h3 {
        font-size: 21px !important;
    }
    .menu-tabs .buttons .tab-buttons .tab-btn:after {
        margin-left: 16px !important;
    }
    .service-item:hover .btn-default::before {
        width: 30px;
        height: 30px;
    }
    .post-item-content h2 a {
        font-size: 20px !important;
    }
    .service- {
        margin-bottom: 18px !important;
    }
    .services-section .s-block.alternate h2 {
        font-size: 20px !important;
    }
    .services-section .s-block h2 {
        padding-left: 60px !important;
        font-size: 20px !important;
    }
    .banner-slide-3 .pizza-5 {
        top: 170px;
        right: -35px;
    }
    .banner-slide-3 .pizza-2 {
        bottom: 217px;
        right: 0px;
        top: unset;
    }
    .banner-slide-3 .pizza-6 {
        top: 167px;
        right: 190px;
    }
    .btn-default {
        padding: 12px 41px 12px 14px !important;
        font-size: 11px !important;
    }
    .btn-default.btn-white-hover::before {
        width: 29px;
        height: 29px;
    }
    .menu-tabs .menu-col.img-col {
        padding: 0px !important;
    }
    .testimonials-section .new-col {
        padding: 35px !important;
    }
    .services-section .s-block {
        margin-bottom: 30px !important;
    }
    .newbox {
        margin-top: 75px !important;
    }
    .reserv-col {
        padding: 0px;
    }
    .copyright {
        padding-top: 15px !important;
        padding-bottom: 0px !important;
    }
    .chef-section-1 .title-box {
        padding-right: 0px !important;
    }
    .chef-section-1 .chef-image,
    .side-image.specialoffer-img,
    .chef-section-1 .chef-image.image3 img {
        display: none;
    }
    .display-3,
    .title1,
    .reservation-area h2 {
        font-size: 23px;
    }
    .slidr {
        padding-top: 50px;
    }
    section,
    .bg-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .tabs-box .tabs-content .tab {
        padding: 0px !important;
    }
}

.reserve-section .outer-box>.row {
    margin: 0 0;
}

.reserve-section .reserv-col {
    position: relative;
    padding: 0 0;
}

.reserve-section .reserv-col .inner {
    position: relative;
    min-height: 100%;
}

.reserve-section .reserv-col .title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.reserve-section .reserv-col .title h2 {
    line-height: 1.2em;
}

.reserve-section .reserv-col .request-info a {
    color: var(--main-color);
}

.reserve-section .reserv-col .request-info a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.reserve-section .reserv-col form .row {
    margin: 0 -10px;
}

.reserve-section .reserv-col form .row .form-group {
    padding: 0 10px;
    margin-bottom: 20px;
}

.reserve-section .reserv-col form .btn-style-one {
    display: block;
    width: 100%;
}

.reserve-section .reserv-col form .btn-style-one .btn-wrap .text-two,
.reserve-section .reserv-col form .btn-style-one .btn-wrap {
    width: 100%;
}


/* reservation split style ( common css used from above css) */

.reserve-section.splitscreen .graphic-col .graphic-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reserve-section.splitscreen .graphic-col .image {
    display: none;
}

.reserve-section.splitscreen .reserv-col {
    background-color: var(--color-two);
}

.reserve-section.splitscreen .reserv-col .inner {
    background-color: var(--color-two);
}

.reserve-section.splitscreen .reserv-col .inner {
    background: url(../assets/images/resource/pattern-dark.png) repeat;
    position: relative;
    padding: 150px 180px;
    min-height: 100%;
    display: inline-block;
}

.reserve-section.splitscreen .reserv-col .inner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--main-color);
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.reserve-section.splitscreen .reserv-col .inner .title-box h2 {
    padding-bottom: 0;
}


/* css for style two ( comon css used as above css) */

.reserve-section.style-two {
    position: relative;
    background-color: var(--black-color);
}

.reserve-section.style-two .outer-box {
    margin: 0 0;
    top: 0;
}

.reserve-section.style-two .reserv-col {
    background-color: var(--color-two);
}

.reserve-section.style-two .reserv-col .inner .title-box h2 {
    padding-bottom: 0;
}

.reserve-section.style-two .reserv-col .inner {
    background: url(../assets/images/resource/pattern-dark.png) repeat;
    position: relative;
    padding: 75px 100px;
    min-height: 100%;
    display: inline-block;
}

.reserve-section.style-two .reserv-col .inner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--main-color);
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}


/*** 

====================================================================
  Menu Section Tab Style
====================================================================

***/

.menu-section {
    position: relative;
    overflow: hidden;
    background: url('../assets/images/menu-bg-paper.jpg') center/cover no-repeat;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab-buttons {
    position: relative;
}

.tabs-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tabs-box .tabs-content {
    position: relative;
    background-color: white;
    background-repeat: repeat;
    background-position: top center;
    background-size: cover;
}

.tabs-box .tabs-content:before {
    content: '';
    position: absolute;
    left: 0px;
    right: auto;
    top: 0;
    width: 70px;
    height: 100%;
    background-color: var(--color-two);
    background-repeat: repeat;
    background-position: top center;
}

.tabs-box .tabs-content .tab {
    position: relative;
    display: none;
    padding: 60px 40px;
}

.tabs-box .tabs-content .active-tab {
    display: block;
}

.menu-tabs {
    position: relative;
}

.menu-tabs .buttons {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 0px;
}

.menu-tabs .buttons .tab-buttons {
    position: relative;
    text-align: center;
    font-family: var(--font-family-Fraunces);
}

.menu-tabs .buttons .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    margin-left: 40px;
    margin-right: 40px;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-family: var(--font-family-Urbanist);
}

.menu-tabs .buttons .tab-buttons .tab-btn:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 5px;
    border-top: 1px solid var(--main-color);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.menu-tabs .buttons .tab-buttons .tab-btn.active-btn:before {
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.menu-tabs .buttons .tab-buttons .tab-btn:after {
    content: '';
    position: absolute;
    left: 100%;
    margin-left: 36px;
    top: 50%;
    margin-top: -8px;
    height: 14px;
    width: 14px;
    background: url(../assets/images/logo_EF5744.svg) no-repeat;
}


/* .menu-tabs .buttons .tab-buttons .tab-btn:last-child:after {
    display: none;
} */

.tabs-box .tabs-content .tab .row {
    display: flex;
    align-items: center;
    /* This vertically centers the two columns */
    flex-wrap: wrap;
    /* Ensures responsiveness for smaller screens */
}

.menu-tabs .menu-col .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical centering inside the column */
    height: 100%;
    /* padding-left: 70px; */
    padding: 20px 10px;
}

.menu-tabs .menu-col.img-col {
    text-align: center;
    padding-top: 30px;
}

.menu-tabs .menu-col.img-col .inner {
    display: block;
}

.menu-tabs .menu-col:nth-child(2) .inner {
    padding-right: 0;
    border-right: none;
}

.menu-tabs .menu-col:nth-child(2) .inner:after {
    display: none;
}

.menu-tabs .menu-col.img-col .image {
    position: relative;
    display: inline-block;
}

.menu-tabs .menu-col.img-col .image img {
    display: block;
    border-radius: 300px 300px 0 0;
    position: relative;
    z-index: 1;
}

.menu-tabs .menu-col.img-col .image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #EF5744;
    border-radius: 100% 100% 0 0;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.image:hover::before {
    border-color: #ef5744;
    /* highlight color */
    transform: scale(1.04);
}

.menu-tabs .dish-block {
    position: relative;
    margin-bottom: 35px;
}

.menu-tabs .dish-block:last-child {
    margin-bottom: 0;
}

.menu-tabs .dish-block .inner-box {
    position: relative;
    padding-left: 120px;
    min-height: 100px;
    padding-top: 10px;
}

.menu-tabs .dish-block .dish-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 400px;
    overflow: hidden;
}

.menu-tabs .dish-block .dish-image img {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 400px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.menu-tabs .dish-block .inner-box:hover .dish-image img {
    transform: rotate(90deg);
}

.menu-tabs .dish-block .title {
    position: relative;
    line-height: 24px;
    margin-bottom: 10px;
    display: flex;
}

.menu-tabs .dish-block .title .menu-list-line {
    flex-grow: 1;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    border-bottom-color: var(--white-color-opacity-three);
    height: 17px;
}

.menu-tabs .dish-block .title .ttl {
    position: relative;
    float: left;
    padding-right: 10px;
    text-transform: capitalize;
}

.menu-tabs .dish-block .title .ttl a {
    color: #111330;
}

.menu-tabs .dish-block .title .ttl a:hover {
    color: #EF5744;
}

.ttl h2 {
    font-size: 16px;
}

.menu-tabs .dish-block .title .ttl .s-info {
    position: relative;
    display: inline-block;
    line-height: 18px;
    padding: 0 5px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--black-color);
    background: var(--main-color);
    margin-left: 8px;
}

.menu-tabs .dish-block .title .price {
    position: relative;
    float: right;
    font-size: 16px;
    color: var(--main-color);
    padding-left: 5px;
}

.menu-tabs .dish-block .desc {
    position: relative;
    font-size: 15px;
    color: var(--color-three);
}

.menu-tabs .dish-block .desc a {
    color: var(--color-three);
}

.menu-section .open-timing {
    position: relative;
    text-align: center;
}

.menu-section .open-timing .hours {
    position: relative;
    padding: 25px 0;
}


/* Example CSS to style the active button */

.tab-buttons .tab-btn {
    /* default button styles */
    color: white;
}

.tab-buttons .tab-btn.active-btn {
    /* style for the currently selected button */
    /* background-color: black; */
    color: #EF5744;
}


/* Ensure only the active tab is visible through CSS (if you prefer) */

.tabs-content .tab {
    display: none;
}

.tabs-content .tab.active-tab {
    display: block !important;
    /* The JS already handles this with style.display, 
                                but this is good practice if you only toggle the class */
}


/*** 

====================================================================
  Services Section
====================================================================

***/

.services-section {
    position: relative;
    background-color: var(--color-one);
    z-index: 1;
}

.services-section .row {
    display: flex;
    align-items: center;
    /* Vertically center columns */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.services-section .s-col {
    position: relative;
    padding-right: 50px;
}

.services-section .s-col .inner {
    position: relative;
    display: block;
}

.services-section .s-col.last {
    order: 12;
    padding-left: 50px;
    padding-right: 0;
}

.services-section .image-col {
    position: relative;
    order: 5;
}

.services-section .image-col .image-box {
    position: relative;
    display: inline-block;
    text-align: center;
}

.services-section .image-col .image-box img {
    position: relative;
    z-index: 1;
    border-radius: 200px 200px 0 0;
    width: 100%;
}

.services-section .image-col .image-box::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #EF5744;
    border-radius: 100% 100% 0 0;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 2;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.image-box:hover::before {
    border-color: #ef5744;
    /* highlight color */
    transform: scale(1.04);
}

.services-section .s-block {
    position: relative;
    margin-bottom: 100px;
}

.services-section .s-col .s-block:last-child {
    margin-bottom: 0;
}

.services-section .s-block .inner {
    position: relative;
    display: block;
    min-height: 100px;
}

.services-section .s-block.alternate .inner {
    padding-left: 0;
    text-align: right;
}

.services-section .s-block .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 60px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.s-block .inner:hover .icon-box {
    transform: rotateY(180deg);
}

.services-section .s-block.alternate .icon-box {
    left: auto;
    right: 0;
    margin-top: 16px;
    font-size: 34px;
}

.services-section .s-block .icon-box i {
    font-size: 34px;
}

.services-section .s-block.alternate h2 {
    padding-top: 15px;
    padding-right: 70px;
    font-size: 24px;
    letter-spacing: 1.5px;
}

.services-section .s-block h2 {
    /* padding-top: 0px; */
    padding-right: 0;
    padding-left: 70px;
    letter-spacing: 1.5px;
    font-size: 24px;
}

.s-h2 {
    text-align: start;
}

.services-section .s-block .text {
    position: relative;
    color: black;
    padding-top: 15px;
    line-height: 1.4;
}

.s-text {
    text-align: start;
}

.s-icon i {
    padding-top: 15px;
}

.newbox {
    margin-top: 150px;
}


/*** 

====================================================================
  Chef Section 1
====================================================================

***/

.chef-section-1 {
    position: relative;
    background-color: var(--color-two);
}

.chef-section-1 .title-box {
    padding-right: 100px;
}

.chef-section-1 .title-box p {
    padding-bottom: 25px;
}

.chef-section-1 .chef-image {
    position: relative;
    text-align: right;
    margin: 0 auto;
}

.chef-section-1 .chef-image.image1 img {
    border-radius: 200px;
}

.chef-section-1 .chef-image.image2 img {
    border-radius: 200px;
    text-align: right;
}

.chef-section-1 .chef-image.image3 {
    margin-top: auto;
    text-align: right;
}

.chef-section-1 .chef-image.image3 img {
    border-radius: 200px 200px 0 0;
    text-align: right;
}

.chef-section-1 .row>.col-xl-4:last-child {
    display: flex;
    flex-direction: column;
}

.chef-section-1 .chef-image.image1 {
    position: relative;
    display: inline-block;
    border-radius: 200px;
    overflow: hidden;
}

.chef-section-1 .chef-image.image1 img {
    display: block;
    border-radius: 200px;
    position: relative;
    z-index: 1;
}

.chef-section-1 .chef-image.image1::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15px;
    right: 30px;
    bottom: 25px;
    border: 1px solid #e63946;
    border-radius: calc(200px - 20px);
    /* Adjust for inner corner */
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.image1:hover::before {
    border-color: #ef5744;
    /* highlight color */
    transform: scale(1.03);
}


/* .image1:hover {
    transform: translate3d(-0.1px, -2.9px, 0px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
    display: block;
    left: 0px;
    top: 0px;
} */

.chef-section-1 .round-stamp {
    position: absolute;
    left: -30px;
    bottom: 65px;
    width: 133px;
    height: 133px;
    display: flex;
    /* Flexbox added */
    align-items: center;
    /* Vertical centering */
    justify-content: center;
    /* Horizontal centering */
    z-index: 100;
}

.chef-section-1 .round-stamp .stamp_icon {
    position: relative;
    z-index: 100;
}


/* .chef-section-1 .round-stamp:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: url(../assets/images/resource/chefbadge.png) no-repeat;
} */

.list-style {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.list-style li {
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.list-style li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #ef5744;
    /* your theme color */
    transition: color 0.3s ease;
}

.list-style li:hover {
    color: #000;
    transform: translateX(5px);
}

.list-style li:hover i {
    color: #d44131;
}


/*** 

====================================================================
  Testimonials Section
====================================================================

***/

.testimonials-section {
    position: relative;
    background: #272943;
}


/* .testimonials-section .row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
} */


/* .testimonials-section .new {
    max-width: 1600px;
} */

.testimonials-section .carousel-img-col {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    /* Adjust this to control overlap */
    z-index: 1;
    padding: 0;
}


/* .testimonials-section .carousel-img-col img {
    width: 100%;
    border-radius: 200px 0 0 0;
} */

.testimonials-section .carousel-img-col .carousel-image {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.image-layer {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 200px 0 0 0;
    padding-top: 70px;
}

.testimonials-section .carousel-img-col .carousel-image .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-section .new-col {
    position: relative;
    border: solid 1px #EF5744;
    border-radius: 0 200px 0 0;
    background: rgba(39, 41, 67, 1);
    padding: 140px;
    z-index: 100;
}

.testimonials-section .carousel-box {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .testi-top {
    position: relative;
    text-align: center;
}

.testimonials-section .testi-top .quote-text {
    position: relative;
    line-height: 1.6em;
    font-size: 20px;
    color: white;
}

.quote-text {
    position: relative;
    line-height: 1.6em;
    font-size: 20px;
    color: white;
}

.testimonials-section .thumbs-carousel-box {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 40px;
}

.testimonials-section .testi-thumbs {
    position: relative;
    max-width: 130px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .testi-thumbs .owl-stage-outer {
    overflow: visible;
}

.testimonials-section .testi-thumbs .image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 15px;
    -ms-transform: scale(0.80);
    transform: scale(0.80);
    cursor: pointer;
    border-radius: 50%;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.testimonials-section .testi-thumbs .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonials-section .testi-thumbs .active .image {
    -ms-transform: scale(1);
    transform: scale(1);
    border: solid 2px var(--main-color);
}

.testimonials-section .testi-thumbs .auth-title {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main-color);
    font-size: 12px;
    letter-spacing: 0.20em;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.testimonials-section .testi-thumbs .active .auth-title {
    opacity: 1;
    visibility: visible;
}


/*** 
====================================================================
  Special Offer Section (Custom Slider Version)
====================================================================
***/

.special-offer {
    position: relative;
    background: #111330;
}

.special-offer .outer-container {
    position: relative;
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
}

.slider-slide {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.slider-wrapper .slider-slide {
    margin-bottom: 0;
}

.slider-slide .inner-box {
    position: relative;
    display: block;
    text-align: center;
}

.slider-slide img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 200px 0px 100px 0;
    background-color: var(--main-color);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.slider-slide .image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(133, 18, 18, 0.745);
    border-radius: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.offer-block-two .inner-box:hover .image::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.slider-slide:hover img {
    opacity: 0.6;
    transform: scale(1.05) rotate(2deg);
}

.slider-slide h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--white-color);
}

.slider-slide p {
    font-size: 15px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.slider-slide a.read-more {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.slider-slide a.read-more:hover {
    color: var(--white-color);
}


/* Pagination Dots */

.slider-pagination {
    display: none;
}


/* Section Bottom Button */

.special-offer .lower-link-box {
    margin-top: 40px;
}


/* Side Image */

.side-image.specialoffer-img {
    right: -30px;
    top: -95px;
    z-index: 100;
    position: absolute;
}


/* Background Text */

.special-offer .bg-text {
    font-size: 500px;
    line-height: 0.5em;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 30%;
    opacity: 0.05;
    color: var(--white-color);
    text-transform: uppercase;
    pointer-events: none;
}

.spacing-7 {
    padding: 35px 15px 70px 70px;
}

.journey-box {
    padding: 70px 15px 0px 70px;
}


/* ===============================================
    14.Timeline
------------------------*/

.layer-content img {
    width: 100%;
    height: auto;
}

.timeline {
    position: relative;
}

.timeline .timeline-panel {
    position: relative;
    padding-left: 100px;
}

.timeline .timeline-year,
.timeline .timeline-year::before {
    border-radius: 50%;
}

.timeline .timeline-year {
    left: 0;
    position: absolute;
    top: 5px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 19px;
}

.timeline .timeline-year:before {
    position: absolute;
    width: 92px;
    content: "";
    height: 92px;
    background: transparent;
    display: block;
    border-radius: 50%;
    border: 1px solid #fff;
    top: -6px;
    right: -6px;
}

.timeline .timeline-body h3:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    left: -34px;
    top: 10px;
    width: 10px;
    height: 10px;
}

.timeline .timeline-panel .timeline-body {
    position: relative;
    padding-top: 0;
    margin-left: 35px;
    padding-bottom: 50px;
    color: white;
}

.timeline .timeline-panel .timeline-body p:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 11px;
    width: 2px;
    height: 100%;
    background: #f0f0f0;
    background: rgba(255, 255, 255, .1);
}

.timeline .timeline-panel:last-child .timeline-body:before {
    height: 70%;
}

.timeline .timeline-body .title {
    position: relative;
    text-align: left;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

.timeline .timeline-panel:last-child .timeline-body {
    padding-bottom: 0;
}

.ttm-bgcolor-darkgrey {
    background-color: #121d27 !important;
}

.bg-img18 {
    background-image: url(.../assets/images/row-bgimage-18.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.timeline .timeline-year {
    background-color: #EF5744;
}

.timeline .timeline-body h3:after {
    background-color: #EF5744;
}

.bg-img19 {
    background-image: url(../assets/images/row-bgimage-19.jpg);
    /* background-repeat: no-repeat; */
    background-position: center;
    border: 13px solid #e7eaec;
    width: 100%;
    height: auto;
}

.ttm-bgcolor-darkgrey,
.ttm-bgcolor-darkgrey>.ttm-bg-layer>.ttm-bg-layer-inner {
    background-color: #121d27 !important;
}

.layer-content {
    position: relative;
    z-index: 9;
    height: 100%;
}

.spacing-8 {
    padding: 50px 40px 50px 40px;
}

.mb_65 {
    margin-bottom: -65px !important;
}

.mt_65 {
    margin-top: -65px !important;
}

.p-15 {
    padding: 15px !important;
}

.border-dashed {
    border: 1px dashed #ef5744;
}

.mt-35 {
    margin-top: 35px !important;
}

.text-opecity,
.ttm-bgcolor-darkgrey p,
.featured-imagebox-event .tribe-events-vanue,
.featured-imagebox-event .ttm-event-meta-item {
    color: white;
}

.spacing-8 {
    padding: 50px 40px 50px 40px;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.ttm-row {
    padding: 90px 0 !important;
}

.mb-30 {
    font-weight: 300;
}