﻿
/* Main Slider Start */
.hero-slider .hero-slide {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    color: #fff;
    align-items: flex-end;
    padding-bottom: 10vh;
}

.hero-slider .hero-content {
    /*    max-width: 600px;*/
    margin-left: 80px;
}

.hero-slider h1 {
    font-size: 64px !important;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-slider p {
    font-size: 23px;
    margin-bottom: 20px;
    color: #FFF;
}

.hero-slider .btn {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-learn {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

    .btn-learn:hover {
        background: #fff;
        color: #000;
    }

.btn-map {
    background: #d2a446;
    color: #fff;
}

    .btn-map:hover {
        background: #b89036;
    }

.circle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
}

svg {
    width: 90px;
    height: 90px;
    transform: rotate(30deg); /* start from top */
}

circle {
    fill: none;
    stroke: #d4a052; /* gold color */
    stroke-width: 1;
    stroke-dasharray: 220; /* full circumference ~ 2πr */
    stroke-dashoffset: 40; /* creates the cut */
}

.arrow {
    font-size: 28px;
    font-weight: 400;
    margin-left: -65px; /* move arrow inside circle */
}

span.btn-txt {
    font-size: 14px;
    font-weight: 400;
    letter-spacing:2.5px;
}

.circle-btn:hover {
    color: #111 !important;
}

/* Position dots on the right side */
.hero-slider .owl-dots {
    position: absolute;
    top: 50%;
    right: 20px; /* adjust spacing from edge */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; /* spacing between dots */
}

    /* Dots style */
    .hero-slider .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        background: #fff; /* white dots */
        border-radius: 50%;
        display: block;
        opacity: 0.6; /* less visible by default */
        transition: all 0.3s ease;
    }

    /* Active dot */
    .hero-slider .owl-dots .owl-dot.active span {
        height: 20px; /* elongated active dot */
        background: #fcb900; /* orange highlight (change color if needed) */
        border-radius: 10px; /* make it pill shaped */
        opacity: 1;
    }

.hero-slider circle {
    /*stroke: #FFF;*/
}

.hero-slider .arrow {
    color: #FFF;
}

.hero-slider .btn-txt {
    color: #FFF;
}

@media (max-width: 500px) {
    .hero-slider .hero-content {
        margin-left: 2vh;
        margin-right: 5vh;
    }

    .hero-slider h1 {
        font-size: 32px !important;
    }

    .hero-slider p {
        font-size: 18px !important;
    }

    .hero-slider .hero-slide {
        padding-bottom: 5vh !important;
    }

    svg {
        width: 70px;
        height: 70px;
    }

    .hero-slider .arrow {
        font-size: 21px !important;
        font-weight: 400;
        margin-left: -55px; /* move arrow inside circle */
    }
}

@media (min-width: 501px) and (max-width: 767px) {
    .hero-slider h1 {
        font-size: 44px !important;
    }

    .hero-slider .hero-content {
        margin-left: 35px !important;
    }

    .hero-slider p {
        font-size: 18px !important;
    }

    .hero-slider svg {
        width: 70px !important;
        height: 70px !important;
    }

    .hero-slider .arrow {
        font-size: 24px;
        margin-left: -55px;
    }
}

/* Main slider end  */



/* Brands Section Start */

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

    .brand-header .brand-heading {
        font-weight: 500 !important;
        font-size: 1.8rem !important;
        letter-spacing: 5px !important;
        color: #a37228;
        font-family: 'Satoshi-Medium';
    }

    .brand-header h2 {
        font-weight: 500 !important;
        font-size: 3.7rem;
        color: #000;
        font-family: 'Satoshi-Medium';
    }

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    color: #111;
}

    .view-all-btn::before {
        content: "→";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #000;
        border-radius: 50%;
        font-size: 16px;
    }

.owl-carousel .item img {
    width: 100%;
    border-radius: 10px;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
}

    .brand-btn::before {
        content: "→";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 1px solid #bfa14a;
        border-radius: 50%;
        margin-right: 6px;
        font-size: 14px;
        color: #bfa14a;
    }

/* Navigation arrows */
.owl-nav {
    text-align: right;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

    .owl-nav button {
        background: transparent;
        border: 1px solid #bfa14a !important;
        border-radius: 50% !important;
        width: 40px;
        height: 40px;
        margin: 0 5px;
        font-size: 18px !important;
        color: #111 !important;
        transition: 0.3s;
    }

        .owl-nav button:hover {
            background: #bfa14a !important;
            color: #fff !important;
        }

.owl-carousel .item {
    margin-top: 0; /* reset */
    transition: transform 0.3s ease-in-out;
}


@media (max-width: 768px) {
    .brand-header h2 {
        font-size: 22px;
    }
}

/* baseline */
.offers-carousel .item {
    margin-top: 0;
    transition: margin-top .25s ease;
}

    .offers-carousel .item.stagger-bottom {
        margin-top: 32px;
    }
    /* down */
    .offers-carousel .item.stagger-top {
        margin-top: 0;
    }
/* up */

/* (optional) disable on small screens */
@media (max-width: 575.98px) {
    .offers-carousel .item {
        margin-top: 0 !important;
    }
}

.owl-carousel .owl-nav {
    position: absolute;
    top: -50px; /* adjust distance from top */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        background: none !important;
        border: 1px solid #b88b4a; /* gold-like border */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000 !important;
    }

    .owl-carousel .owl-nav button span {
        font-size: 22px;
        line-height: 1;
    }


.brand-carousel-nav .owl-prev,
.brand-carousel-nav .owl-next {
    width: 60px;
    height: 60px;
    margin: 0 2px;
    display: inline-flex;
    background: none;
    border: none;
}

@media(max-width:576px) {
    .brand-carousel-nav .owl-prev,
    .brand-carousel-nav .owl-next {
        width: 50px;
        Height: 50px;
    }
}

.brand-carousel-nav .owl-prev-icon,
.brand-carousel-nav .owl-next-icon {
    font-size: 20px;
}

.brand-circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    /* color: #b88b4a; */
    color: #000;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    top: -18px;
    left: 15px;
}

.brand-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #b88b4a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-circle-btn:hover .circle {
    transform: scale(1.1);
}

.brand-circle-btn:hover {
    color: #555;
}

.brand-btn-label {
    /* padding: 20px; */
    position: relative;
    left: -35px;
    padding: 5px 10px;
    background-color: #ffffff !important;
    font-size: 1rem;
    text-transform: uppercase;
}

.brands circle {
    stroke: #000;
}
.brand-items circle {
    stroke: #d4a052;
}


@media (max-width: 576px) {
    .brand-carousel .item img {
        width: 90% !important; /* shrink image */
        margin: 0 auto; /* center it */
    }

    .mobile-nav {
        display: block !important;
        text-align: center;
    }

    .desktop-nav {
        /*display: none !important;*/
    }

    .brands svg {
        width: 70px;
        height: 70px;
        transform: rotate(30deg);
    }

    .brands circle {
        stroke: #000; /* gold color */
    }

    .brands .arrow {
        /*font-size: 16px;*/
        font-size: 27px;
        font-weight: 400;
        /*margin-left: -47px;*/
        margin-left: -55px;
        color: #000;
    }

    .brands .btn-txt {
        /*font-size: 14px;*/
        font-size: 18px;
        font-weight: 400;
        color: #000;
    }

    .brand-circle-btn {
        left: 18% !important;
    }

    .brand-items circle {
        stroke: #d4a052;
    }

    button.brands.brand-items.circle-btn {
        top: -15px !important;
        position: relative;
        left: 5%;
    }
}

@media (min-width: 501px) and (max-width: 767px) {
    .container, .container-sm {
        max-width: 95% !important;
    }

    .mobile-nav {
        display: block !important;
        text-align: center;
    }

    .desktop-nav {
        /*display: none !important;*/
    }

    .brand-header svg {
        width: 70px !important;
        height: 70px !important;
    }

    .brand-header .arrow {
        font-size: 24px;
        margin-left: -32%;
    }

    .brand-header circle {
        stroke: #000 !important;
    }

    button.brands.brand-items.circle-btn {
        top: -22px !important;
        position: relative;
        left: 2%;
    }

    .brand-items svg {
        width: 70px !important;
        height: 70px !important;
    }

    .brand-items .arrow {
        font-size: 24px;
        margin-left: -55px;
    }
}
@media(min-width:768px){
    .mobile-nav {
        display: none !important;
    }
}
@media (min-width: 1200px) {
 

    .desktop-nav {
        display: block !important;
    }

    .circle-btn {
    }

    .brands svg {
        width: 90px;
        height: 90px;
        transform: rotate(30deg); /* start from top */
    }

    .brand-items svg {
        width: 70px;
        height: 70px;
        transform: rotate(30deg); /* start from top */
    }

    .brand-items .arrow {
        font-size: 16px !important;
        font-weight: 400;
        margin-left: -50px !important;
        color: #000;
    }

    .brands circle {
        stroke: #000; /* gold color */
    }

    .brands .arrow {
        font-size: 28px;
        font-weight: 400;
        margin-left: -65px; /* move arrow inside circle */
        color: #000;
    }

    .brands .btn-txt {
        /*font-size: 12px;*/
        font-size: 16px;
        font-weight: 400;
        color: #000;
    }

    .circle-btn:hover {
        color: #FFF !important;
    }

    .brand-items circle {
        stroke: #d4a052;
    }

    button.brands.brand-items.circle-btn {
        top: -22px !important;
        position: relative;
        left: 3%;
    }
}


/* Brands Section End */



/* Restaurants Section Start */

.food-section {
    /* text-align: center; */
    padding: 60px 20px;
    background-color: #fff9f4;
    position: relative;
    /* padding: 100px 0; */
    padding: 40px 0 20px;
    overflow: hidden;
}

    .food-section h2 {
        font-weight: 500;
        /*     font-size: 3.7rem;*/
        margin-bottom: 15px;
        font-family: 'Satoshi-Medium';
    }

    .food-section .btn-search {
        background: #fff;
        border: 0px solid #ccc;
        border-radius: 30px;
        padding: 10px 25px;
        margin: 20px 0;
        font-size: 1.2rem;
        transition: 0.3s;
        color: #a17127 !important;
    }

.btn-search:hover {
    background: #f5f5f5;
}

.food-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.food-card {
    width: 250px;
    height: 320px;
    /* border-radius: 10px; */
    overflow: hidden;
    transform: rotate(-3deg);
    transition: transform 0.3s ease-in-out;
    position: relative;
}
@media(max-width:768){
    .food-card{
        width:100%;
    }
}

    .food-card:nth-child(2) {
        transform: rotate(3deg);
    }

    .food-card:nth-child(3) {
        transform: rotate(-2deg);
    }

    .food-card:nth-child(4) {
        transform: rotate(3deg);
    }

    .food-card:hover {
        transform: scale(1.05);
        z-index: 2;
    }

    .food-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tag-offer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #c49a6c;
    color: #fff;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.food-card:nth-child(1) {
    position: relative;
    top: -150px;
    z-index: 3;
}

.food-card:nth-child(4) {
    position: relative;
    top: -150px;
}

.restaurants-section {
    text-align: center;
}

.bg-img {
    width: 391px;
    height: -webkit-fill-available;
    background-image: url(../images/pheonix-white-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    /* top: 30%;
         left: -10px; */
}

    .bg-img::before {
        content: "";
        position: absolute;
        /*        top: -120px;
 left: -60px;*/
        top: -5vh;
        left: -3vh;
        width: 100%;
        height: 250px;
        background: url(../images/pheonix-white-logo.png) no-repeat center / contain;
        opacity: 1;
        pointer-events: none;
    }

.tab-links {
    margin-bottom: 3rem !important;
    display: flex;
    justify-content: center;
    gap: 45px;
}

    .tab-links a {
        text-decoration: none;
        color: #333;
        cursor: pointer;
        padding-bottom: 5px;
        font-size: 1rem;
    }

        .tab-links a.active {
            border-bottom: 2px solid #000;
        }

.tab-content {
    /*display: none;*/  
}

    .tab-content.active {
        display: flex; /* or grid depending on your design */
        gap: 20px;
        flex-wrap: wrap;
    }

.btn-search:hover {
    background-color: #ffffff !important;
}

@media (max-width: 991px) {
    .bg-img{
        display:none;
    }
    .bg-img::before {
        top: -5vh;
        left: -15vh;
        height: 100px;
    }

    .food-card:nth-child(1) {
        top: 0px;
        z-index: 3;
    }

    .food-card {
        transform: rotate(0deg);
        width:100%;
    }

        .food-card:nth-child(2) {
            transform: rotate(0deg);
        }

        .food-card:nth-child(3) {
            transform: rotate(0deg);
        }

        .food-card:nth-child(4) {
            top: 0px;
        }

        .food-card:nth-child(4) {
            transform: rotate(0deg);
        }

    .tab-content.active {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .food-card {
        flex: 1 1 calc(50% - 20px);
        box-sizing: border-box;
    }

        .food-card:hover {
            transform: none;
        }

    .food-card {
        height: auto;
        width:100%;
    }

    .food-section h2 {
        font-size: 2rem;
    }

    .food-section .btn-search {
        font-size: 1rem !important;
    }
}

@media (min-width: 501px) and (max-width: 767px) {
    .bg-img::before {
        top: -9vh;
        left: 0vh !important;
        width: 60% !important;
    }

    .tab-content.active {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .food-card:nth-child(1) {
        top: 0px;
        z-index: 3;
    }

    .food-card {
        transform: rotate(0deg);
        width:100%;
    }

        .food-card:nth-child(2) {
            transform: rotate(0deg);
        }

        .food-card:nth-child(3) {
            transform: rotate(0deg);
        }

        .food-card:nth-child(4) {
            top: 0px;
        }

        .food-card:nth-child(4) {
            transform: rotate(0deg);
        }

    .tab-content.active {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .food-section .btn-search {
        font-size: 1rem;
    }

    /*.tab-content.active > * {
        flex: 1 1 calc(25% - 10px);*/ /* 4 items per row, accounting for gap */
    /*box-sizing: border-box;
    }*/
}

@media (min-width: 1200px) {

    .food-section h2 {
        font-size: 3.7rem;
    }
}
/* Restaurants Section End */





/* Events css start */
.bg-marquee {
    position: absolute;
    top: -10%;
     font-size: 8rem; 
    /*font-size: 10.4rem;*/
    font-weight: 600;
    /* color: rgba(0, 0, 0, 0.1); */
    color: rgb(0 0 0 / 10%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Satoshi-Bold';
}
@media(max-width:992px){
    .bg-marquee{
        font-size:6rem;
        top:-5%;
    }
}
.events-section h2 {
    font-size: 3.7rem !important;
    font-weight: 400 !important;
    font-family: 'Satoshi-Medium';
}

.events-section {
    padding: 60px 40px;
    position: relative;
    background-color: #d6b15a; /* yellow-golden background */
    /*    font-family: 'Poppins', sans-serif;*/
}

.events-section {
    overflow: hidden;
}

    .events-section::before {
        /*content: "In The Spotlight";*/
        position: absolute;
        top: 10%;
        left: 22%;
        /*transform: translateX(-50%);*/
        /*    font-size: 8rem;*/
        font-size: 10.4rem;
        font-weight: 600;
        /*    color: rgba(0, 0, 0, 0.1);*/
        color: rgb(0 0 0 / 10%);
        white-space: nowrap;
        z-index: 0; /* Behind everything */
        pointer-events: none;
        font-family: 'Satoshi-Bold';
    }

    .events-section h2 {
        text-align: center;
        /* margin-bottom: 40px; */
        font-size: 28px;
        font-weight: 600;
        color: #111;
    }

    .events-section .section-header {
        margin-bottom: 40px;
    }

/* Event card */
.event-card {
    background: #fff;
    /* box-shadow: 8px 8px 0 rgba(0,0,0,0.15); */
    /* overflow: hidden !important; */
    border: none !important;
    position: relative !important;
    display: inline-block !important;
    border-radius: 0px !important;
    transition:all 0.4s ease
}
/*.events-section h2*/
/* .event-card img {
  width: 100%;
  display: block;
} */
.event-info {
    padding: 15px;
    padding-left: 0px;
    background: #e3c66a;
    color: #111;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2 !important;
}

.event-date {
    text-align: center;
    background: #654310;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

span.date {
    font-size: 2.7rem;
    font-weight: 300;
    line-height: 2.2rem;
}

span.event-day {
    font-size: 1rem;
    line-height: 0.8rem;
}

span.event-month {
    font-size: 1rem;
    line-height: 1rem;
}

.event-desc {
    font-size: 1.4rem;
    margin-left:10px;
    color: #654310;
}
.clsFrom{
    font-size:12px;
    text-align:left;
}
.date-month{
    text-align:left;
    font-size:16px;
}
.event-date hr{
    margin:5px;
}
.event-swiper .event-info{
    gap:5px;
}
/* .event-card {

} */

.event-card-1 {
    position: relative !important;
    display: inline-block !important;
}

.event-card-2 {
    position: relative !important;
    display: inline-block !important;
    transform: scale(0.85);
    bottom: -70px;
}

.event-card-3 {
    position: relative !important;
    display: inline-block !important;
}

.event-card-1::after {
    content: "";
    position: absolute;
    top: 40px;
    left: -15px;
    width: 100%;
    height: 95%;
    background: #c19b38;
    z-index: 1;
}

.event-card-2::after {
    content: "";
    position: absolute;
    top: 34px;
    left: -15px;
    width: 100%;
    height: 95%;
    background: #e3c66a;
    z-index: 1;
}

.event-card-3::after {
    content: "";
    position: absolute;
    top: 40px;
    left: -15px;
    width: 100%;
    height: 95%;
    background: #c19b38;
    z-index: 1;
}

.event-card-1 img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.event-card-2 img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.event-card-3 img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.event-swiper .event-card .event-info {
    display: none;
    transition:all 0.4s ease;
}
.event-swiper .swiper-slide-active .event-card .event-info {
    display: flex;
    transition: all 0.4s ease;
}

.event-swiper .swiper-slide-active .event-card {
    /*transform: scale(0.85);
    bottom: -70px;*/
}

.event-swiper .event-card {
    position: relative !important;
    display: inline-block !important;
    width: 100%;
    transform: scale(0.90);
    transition:all 0.4s ease-in-out
}
    .event-swiper .event-card img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
    }
.event-swiper .swiper-slide-prev .event-card::after, .event-swiper .swiper-slide-next .event-card::after {
    content: "";
    position: absolute;
    top: 40px;
    left: -15px;
    width: 100%;
    height: 95%;
    background: #c19b38;
    z-index: 1;
}

.event-swiper .swiper-slide-active .event-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -15px;
    width: 100%;
    height: 95%;
    background: #e3c66a;
    z-index: 1;
}

@media (max-width: 500px) {
    .events-section h2 {
        font-size: 2.2rem !important;
        font-weight: 500 !important;
        font-family: 'Satoshi-Medium';
    }

    .event-card-2 {
        transform: scale(1);
        bottom: 0px;
    }

    .card.event-card.event-card-1 {
        width: 75%;
    }

    .card.event-card.event-card-2 {
        width: 75%;
    }

    .card.event-card.event-card-3 {
        width: 75%;
    }

    .event-card-1::after {
        top: 30px;
        left: -13px;
    }

    .event-card-3::after {
        top: 30px;
        left: -13px;
    }

    .event-list {
        gap: 30px;
    }

    .event-card-2::after {
        left: -13px;
        height: 92.5%;
    }

    .event-date {
        padding: 8px 15px;
        gap: 0px;
    }

    span.event-day {
        font-size: 0.8rem;
    }

    span.date {
        font-size: 1.7rem;
    }

    span.event-month {
        font-size: 0.7rem;
    }

    .hide-mobile {
        display: none;
    }

    #header-main {
        display: flex !important;
        justify-content: space-between !important;
    }

    .events-section {
        padding: 40px 10px;
    }
}



/* Events css end  */











/* Offers and packages start */

.offers-section {
    text-align: center;
    padding: 80px 0px;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 40px;
        font-weight: 500;
    }

.view-all {
    text-decoration: none;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    position: relative;
}

    .view-all::after {
        content: "→";
        margin-left: 6px;
    }

.offers-carousel .item {
    text-align: center;
    transition: all 0.4s ease-in-out;
    transform: scale(0.8);
    opacity: 0.6;
}

.offers-carousel .owl-item.center .item {
    transform: scale(1);
    opacity: 1;
}

.offers-carousel .item img {
    width: 100%;
    /*height: 350px;*/
    object-fit: cover;
    border-radius: 20px;
}

.offer-price {
    background: #caa64c;
    color: #fff;
    padding: 25px;
    margin-top: -5px;
    text-align: center;
    border-radius: 20px;
}

    .offer-price h3 {
        /*    margin: 0;*/
        margin: 0;
        font-size: 2.8rem;
        /* font-weight: bold; */
        font-family: 'Satoshi-Medium';
        color: #000;
    }

    .offer-price del {
        color: #33333330;
        font-size: 2.8rem;
        margin-left: 8px;
        font-family: 'Satoshi-Medium';
    }

    .offer-price p {
        margin: 5px 0 0;
        font-size: 14px;
        color: black;
        opacity:50%;
    }

/* Custom Navigation */
/*.offer-carousel-nav {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

    .offer-carousel-nav button {
        background: #fff !important;
        border: 1px solid #caa64c !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 0 5px;
        font-size: 18px !important;
        transition: all 0.3s ease-in-out;
    }

        .offer-carousel-nav button:hover {
            background: #caa64c !important;
            color: #fff !important;
        }
*/

    .offer-carousel-nav .owl-prev, .offer-carousel-nav .owl-next{
        width: 70px;
        height: 70px;
        margin: 0 5px;
        display: inline-flex;
        background: none;
        border: none;
    }




.offers-carousel {
    /*min-height: 70vh;*/
}

.offers-section h2 {
    font-weight: 500;
    font-family: 'Satoshi-Medium';
}


/* Base style */
.offers-carousel .owl-item .item {
    transition: all 0.4s ease-in-out;
    transform: scale(0.75) translateY(-50px);
    /* transform: scale(0.7); */
    opacity: 0.5;
}

/* Center item → largest */
.offers-carousel .owl-item.center .item {
    transform: scale(1) translateY(0px);
    opacity: 1;
}

/* Nearest left & right → medium size */
.offers-carousel .owl-item.left-near .item,
.offers-carousel .owl-item.right-near .item {
    transform: scale(0.85) translateY(50px);
    opacity: 0.8;
}

/* Far left & far right (non-near) → smallest + move down */
.offers-carousel .owl-item.active:not(.center):not(.left-near):not(.right-near) .item {
    /* transform: scale(0.65) translateY(20px); */
    transform: scale(0.75) translateY(-50px);
    opacity: 0.3;
}

/* Hide all offer-price by default */
.offers-carousel .offer-price {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

/* Show only for center item */
.offers-carousel .owl-item.center .offer-price {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 5px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}

.owl-nav .owl-prev {
    left: -30px; /* adjust spacing */
}

.owl-nav .owl-next {
    right: -30px; /* adjust spacing */
}

.owl-nav button:hover {
    background: #000;
}

.owl-nav {
    bottom: 10px !important;
}

/* Position nav buttons at bottom center */
.offers-carousel .owl-nav {
    position: absolute;
    bottom: -50px; /* move below carousel */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px; /* spacing between arrows */
}

    /* Reset default button styles */
    .offers-carousel .owl-nav button {
        all: unset; /* remove default button styles */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%; /* make circle */
        background: #000; /* black background */
        color: #fff; /* white arrow */
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s ease;
    }

        /* Hover effect */
        .offers-carousel .owl-nav button:hover {
            background: #ffcc00; /* gold highlight */
            color: #000;
        }

button.owl-prev {
    border-radius: 20px !important;
}

button.owl-next {
    border-radius: 20px !important;
}

.offer-circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    text-decoration: none;
}

.offer-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.offer-circle-btn:hover .circle {
    transform: scale(1.1);
}

.offer-circle-btn:hover {
    color: #555;
}

.offer-btn-label {
    /* padding: 20px; */
    position: relative;
    left: -35px;
    padding: 5px 10px;
    background-color: #ffffff !important;
}

.events-btn-label {
    position: relative;
    left: -35px;
    padding: 5px 10px;
    background-color: #d6b15a !important;
}

@media (max-width: 500px) {
    .offers-section h2 {
        /*font-size: 2rem !important;*/
        font-weight: 500 !important;
        font-family: 'Satoshi-Medium';
        max-width: 80%;
        text-align: left;
    }

    .offers-carousel {
        /*min-height: 65vh !important;*/
    }

        .offers-carousel .owl-stage-outer {
            /*min-height: 65vh !important;*/
        }
}

@media (min-width: 1200px) {
    .offers-section h2 {
        font-size: 3.7rem;
    }

    .offers-carousel .owl-carousel {
        /*min-height: 70vh;*/
    }

    .offers-carousel .owl-stage-outer {
        /*min-height: 70vh;*/
    }
}

/* Offers and packages end */



/* Phoenix Assist CSS start */

/* .assist-section */

.assist-section {
    background: linear-gradient( rgba(0, 0, 0, 0.5), /* top gradient (slight black) */
    rgba(0, 0, 0, 0.5) /* bottom gradient */
    ), url('../images/Dines/dine-homebanner.jpg') no-repeat center center/cover;
    padding: 80px 20px 140px;
    color: #fff;
}

.tab-btns {
    margin-bottom: 30px;
    gap: 50px;
}

    .tab-btns button {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 300;
        text-transform: uppercase;
        margin: 0 10px;
        position: relative;
    }

        .tab-btns button.active::after {
            content: '';
            display: block;
            height: 1px;
            background: #ffcc66;
            width: 100%;
            /* margin-top: 5px; */
        }

.feature-card {
    background: #ad792b;
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    /* border-radius: 8px; */
    transition: all 0.3s ease;
    /*cursor: pointer;*/
    height: 160px; /* fixed square style */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .feature-card:hover {
        background: transparent;
        border: 1px solid #fff;
        color: #fff;
    }

    .feature-card i {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
    }

.assist-tabs {

    gap: 70px;
}
@media(min-width:767px) {
    .assist-tabs {
        margin-top: 60px;

    }
}
.featured-card-text {
    font-size: 1.5rem;
    font-weight: 400;
}

.assist-heading {
    font-weight: 400;
    font-size: 3.7rem;
    font-family: 'Satoshi-Medium';
}

.feature-card img{
    width:64px;
}

.white-circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.white-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.white-circle-btn:hover .circle {
    transform: scale(1.1);
}

.white-circle-btn:hover {
    color: #ffffff;
}

.white-arrow {
    font-size: 36px;
}

span.white-btn-label {
    /* padding: 20px; */
    position: relative;
    left: -20px;
    top: 2px;
    font-weight: 300;
    /* padding: 5px 10px; */
    /* background-color: #fff9f5 !important; */
}

.assist-section circle {
    stroke: #ffffff;
}

.assist-section .arrow {
    color: #ffffff;
}

.assist-section .btn-txt {
    color: #FFF;
}


.cu-tab {
    /* text-decoration: none !important; */
    margin: 0;
    padding: 0 0 20px !important;
    list-style: none;
    /*margin-bottom:60px;*/
    gap:30px;
    border: none;
    color: #000;
}

.cu-item {
    text-transform:uppercase;
    padding: 15px 0px;
    vertical-align: middle;
}

    .cu-item:has(.cu-link.active) {
        background-color: transparent;
    }

    .cu-item:has(.cu-link:hover) {
        /*border-bottom: 2px solid #be8c44;*/
        background-color: transparent;
        /*border-color: #fff #fff black #fff !important;*/
    }




.cu-tab .cu-link {
    border: none;
    /*font-size: 22px;*/
    font-size: 1.1rem;
    font-weight: normal;
    padding: 20px 0;
    cursor: pointer;
}


.cu-link:focus-visible {
    outline: 0;
    /*box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);*/
}

.cu-tab .cu-link.active {
    color: var(--gold-text);
    /*font-weight: bold;*/
    background-color: transparent !important;
    border-bottom: 1px solid #be8c44;
}

.cu-tab .cu-link:hover {
    color: var(--gold-text);
    /*font-weight: bold;*/
    background-color: transparent !important;
    border-bottom: 1px solid #be8c44;
}

.cu-tab a {
    color: white;
    /*text-transform: uppercase;*/
}


@media (max-width: 767px) {
    #assist-tabs-main {
        display: grid !important;
        gap: 10px;
        justify-items: start;
    }

    .offers-carousel .owl-item.center .item {
        transform: scale(1) translateY(0px) !important;
    }

    .assist-heading {
        font-size: 2rem;
    }

    #tab-btns-main {
        display: flex !important;
        /*flex-direction: row !important;*/
        gap: 10px !important;
    }

    .assist-section {
        padding: 30px 10px;
    }

        .assist-section .tab-content {
            /*width: 80%;*/
        }

    .featured-card-text {
        font-size: 1.2rem;
    }

    .feature-card {
        /*height: 120px;*/
    }

    .assist-section .arrow {
        font-size: 21px;
        margin-left: -55px;
    }

    .cu-tab{
        /*margin-bottom:60px;*/
        gap:0;
    }
    .cu-item{
        padding:10px 0;
    }
}

@media(max-width:575px){
    .cu-tab{
        display:table;
    }
    .cu-item{
        display:table-cell
    }
    .cu-tab .cu-link{
        font-size:1rem;
    }
    .cu-tab .cu-link.active {
        color: #e8cf7d;
        /*font-weight: bold;*/
        background-color: transparent !important;
        font-weight:600;
        border: 1px solid #be8c44;
    }

    .cu-tab .cu-link:hover {
        color: #e8cf7d;
        /*font-weight: bold;*/
        background-color: transparent !important;
        border: 1px solid #be8c44;
    }
}
@media(min-width:530px){
    .cu-tab .cu-link {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Phoenix Assist CSS End */


/* Blog css start*/

.blog-section {
    background-color: #fff9f5 !important;
}

    .blog-section .card-title {
        font-weight: 400;
        font-size: 1.8rem;
        color: #000;
    }

    .blog-section .btn-outline-dark {
        font-weight: 500;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .blog-section h2 {
        font-weight: 500 !important;
        font-size: 3.7rem;
        color: #000;
        font-family: 'Satoshi-Medium';
    }
.blog circle {
    stroke: #000;
}

@media (max-width: 767px) {
    .blog-section h2 {
        font-size: 1.4rem;
    }
}

.section-title {
    color: #c1944f;
}

.text-yellow {
    color: #ad792a;
}

.blog-section .card {
    background-color: #fff9f5 !important;
}

.section-title {
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    letter-spacing: 5px !important;
}

p.category-title {
    font-size: 1.3rem;
    color: #000;
}

.blog-date {
    font-size: 1.2rem;
}

.circle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    text-decoration: none;
}

.circle {
    width: 90px;
    height: 90px;
    border: 1px solid #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.circle-btn:hover .circle {
    transform: scale(1.1);
}

/*.circle-btn:hover {
    color: #555;
}*/

.arrow {
    font-size: 36px;
}

span.btn-label {
    /* padding: 20px; */
    position: relative;
    left: -40px;
    padding: 5px 10px;
    background-color: #fff9f5 !important;
}

.blog-section .section-title {
    font-weight: 500 !important;
    font-size: 1.8rem !important;
    letter-spacing: 5px !important;
    color: #a37228;
    font-family: 'Satoshi-Medium';
}

@media (max-width: 500px) {
    .category-title {
        font-size: 1rem !important;
    }

    p.category-title.small.mb-3 {
        margin-bottom: 0px !important;
    }

    .blog-section .card-title {
        font-size: 1.3rem !important;
        margin-top: 0px !important;
    }

    .blog-date {
        font-size: 1rem;
    }

        .blog-date.mt-3 {
            margin-top: 0.5rem !important;
        }
}

/* Blog css end */

.olaLogo, .UberLogo {
    width: 100px
}
.olaLogo img, .UberLogo img{
    border-radius: 30px
}
@media(min-width:1091px) {
    .width-90 {
        width: 90%
    }
}