/********** Template CSS **********/
:root {
    --primary: #d3a673;
    --secondary: #545454;
    --light: #e9dfd4;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    /* background-color: #bf9565 !important; */
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    margin-left: 5px;
}

.download-menu-btn {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .download-menu-btn {
        margin-right: 0px;
    }
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 55px !important;
    }
}

.navbar-nav {
    align-items: center;
}

.navbar .btn {
    padding: 8px 18px !important;
    font-size: 14px;
    display: inline-block;
    font-weight: 300;
    color: #ffffff;
    background: linear-gradient(135deg, #ad6b3e, #e78c15);
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* border: 1px solid rgb(250, 76, 23); */
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

.navbar .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover effect */
.navbar .btn:hover {
    color: #ffffff;
    background: #804400;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    /* transform: translateY(-3px); */
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;

    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 3rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/banner/breadcrumb.jpg) center center no-repeat;
    background-size: cover;
}

.text-shadow-soft {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
    border: 1px solid rgb(236, 236, 236) !important;
}

.product-item:hover {
    background: rgb(191, 149, 101) !important;
}

.product-item:hover * {
    color: #ffffff;
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

/* home page start */


.banner-main-heading {
    font-size: 70px !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
}

@media (max-width: 768px) {
    .banner-main-heading {
        font-size: 40px !important;
    }
}


.banner-upper-heading {
    font-size: 18px !important;
    color: #d7a279 !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

@media (max-width: 768px) {
    .banner-upper-heading {
        font-size: 10px !important;
        /* margin-top: -50px !important; */
    }
}

.read-more-btn {
    background-color: #000000 !important;
    border: 1px solid rgb(255, 136, 0);
    padding: 8px 20px !important;
}

.read-more-2 {
    background-color: #966b39 !important;
}

@media (max-width: 768px) {
    .read-more-2 {
        background-color: #966b39 !important;
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .rich-north {

        font-size: 17px !important;
    }
}


/* counter section strat*/
.compact-fact {
    background: #f8f9fa;
    /* Light background */
    border-radius: 12px;
    padding: 15px;
    /* smaller padding */
    margin: 5px 0;
    border: 1px solid rgb(223, 223, 223);
}

.compact-fact i {
    font-size: 2.5rem;
    /* smaller icon */
    color: rgb(170, 128, 79);
    /* primary color */
    margin-bottom: 8px;
}

.compact-fact p {
    font-size: 1rem;
    /* smaller text */
    margin-bottom: 4px;
    margin-top: 5px;
}

.compact-fact h1 {
    font-size: 2rem;
    /* smaller number */
    margin: 0;
}

/* counter section end */

.btn-success {
    background-color: #640202 !important;
    border: none;
    font-weight: 300 !important;
    border-left: 2px solid rgb(255, 217, 0);
}

.btn-success:hover {
    background-color: #b90000 !important;
}

.call-background {
    background-color: rgb(182, 140, 92) !important;
    /* border-bottom: 1.5px solid #000000 !important; */
    /* border-left: 1.5px solid #000000 !important; */
    /* border-right: 1.5px solid #000000 !important; */
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    margin-top: -50px !important;
}

@media (max-width: 768px) {
    .call-background {
        display: none;
    }
}

.landmark {
    font-size: 45px;
}

.landmark-head {
    font-size: 70px;
    color: #721700;
}


/* what we offer Section Start */


.feature-center-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-left,
.feature-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    min-width: 250px;
}

.feature-card-left,
.feature-card-right {
    /* background: #f8f9fa; */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.offer-section {
    margin-top: -60px !important;
}

/* .icon-box-left, .icon-box-right {
    background: linear-gradient(120deg, #c64208, #e4a71a);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border-radius: 5%;
    font-size: 24px;
} */

.feature-center {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-center img {
    max-width: 115%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-center-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .feature-left,
    .feature-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature-card-left,
    .feature-card-right {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

/* Mobile: stack cards vertically */
@media (max-width: 767px) {

    .feature-left,
    .feature-right {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card-left,
    .feature-card-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .feature-center {
        margin: 30px 0;
    }
}

.border-line {
    margin-top: -35px;
    margin-bottom: -20px;
}

/* Floating animation for center image */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    /* moves up 15px */
    100% {
        transform: translateY(0);
    }
}

.feature-center img {
    max-width: 115%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.icon-box-left img,
.icon-box-right img {
    width: 60px;
    /* same as the box size */
    height: 60px;
    object-fit: contain;
    /* maintains aspect ratio */
    border-radius: 5%;
    /* optional, matches your box style */
    margin-bottom: 10px;
}

/* what we offer Section end */


/* why choose section start */
.traffic-why-choose-section {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
        url("../img/why-choose-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -30px;
}

.chef-image img {
    transform: translateY(0px);
    /* 20px niche sarkayega */
}

.move-down {
    transform: translateY(50px);
    /* jitna niche chahiye adjust karein */
}

.main-heading-3 {
    color: #ffffff !important;
}

.cosmic9-right-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
}

/* Transparent Cards with Blur */
.cosmic9-card {
    background: rgba(255, 255, 255, 0.15);
    /* halki transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px !important;
    border-left: 1px solid rgb(205, 154, 102, 1);

    /* Adjust top-bottom padding */
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}

.cosmic9-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.cosmic9-card-icon-bg {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('');
    /* icon background */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

/* Icon Image */
.icon-img {
    width: 55px;
    height: 55px;

}

/* Card Content */
.cosmic9-card-content h5 {
    /* margin-bottom: 0.5rem; */
    margin-top: 10px;
    color: #ffc78e;
    font-weight: 100 !important;

}

.cosmic9-card-content p {
    margin: 0;
    color: #f8f8f8;
    font-size: 0.95rem;
}

.right-content {
    justify-items: right;

}

.company-brand {
    color: #ff4e18 !important;
}

.company-brand:hover {
    color: yellow !important;
}

.footer-brand {
    background-color: #000000 !important;
}

.footer-heading {
    font-size: 22px !important;
}

@media (max-width: 768px) {
    .footer-heading-2 {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-heading-3 {
        margin-top: -10px;
    }
}

@media (max-width: 768px) {
    .footer-heading-4 {
        margin-top: -40px;
    }
}



/* why choose section end */

.upper-heading {
    color: #b85300 !important;
    font-weight: 500;
    letter-spacing: 1px !important;
}

.brand-name {
    color: #721700 !important;
    font-size: 48px !important;
}

.brand-name-2 {
    color: #721700 !important;

}

.brand-name-3 {
    color: #ffc78e !important;

}

@media (max-width: 768px) {
    .brand-name {
        color: #721700 !important;
        font-size: 35px !important;
    }
}

.video-adjust {
    max-width: 92% !important;
    height: auto !important;

}

.video-background {
    background-color: red !important;
}

@media (max-width: 768px) {
    .video-adjust {
        max-width: 100% !important;
        height: auto !important;
    }
}

.review-section {
    margin-top: -50px !important;
}

.testimonial-section {
    background-color: #ffffff !important;
}

.testimonial-bg {
    background-color: #fff0dc !important;
    /* Yaha apni pasand ka color code use karein */
}

.culinary-section {
    padding-top: 50px !important;
    margin-top: -60px !important;
}

.intro-paragraph {
    text-align: justify;
}

.bullet {
    display: inline-block;
    width: 12px;
    /* Bullet size */
    height: 12px;
    background-color: #bf9565;
    /* Inner bullet color (primary) */
    /* border: 1px solid #000000;   */
    border-radius: 50%;
    /* Makes it round */
    position: relative;
}

/* mission and vision section start */

.mission-vision-section {
    margin-top: 0px;
    margin-bottom: -80px;
}

.mission-vision-section .mission-card,
.mission-vision-section .vision-card {
    background-color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision-section .mission-card:hover,
.mission-vision-section .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-vision-section .mission-icon,
.mission-vision-section .vision-icon {
    margin-bottom: 15px;

}

.mission-vision-icon {
    color: rgb(170, 128, 79) !important;
}

.mission-vision-section .mission-title,
.mission-vision-section .vision-title {
    font-weight: 600;
}

.mission-vision-section .mission-text,
.mission-vision-section .vision-text {
    color: #555;
    line-height: 1.6;
}

/* founder section start */

.founder-section {
    background-color: #f9f9f9;
    margin-top: 0px;
    margin-bottom: 30px;
}

/* Unique Section Heading */
.founder-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
}


/* Unique Founder Card */
.founder-card-unique {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
    /* Center card in column */
    /* border: 1px solid #ffa600; */
}

.founder-card-unique:hover {
    transform: translateY(-3px);
}

.founder-img-unique {
    width: 100%;
    display: block;
    height: auto;
}

/* Name & Position Below Image */
.founder-info-unique {
    background-color: #aa804f;
    color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 12px 10px;
    text-align: left;
    height: 80px;

}

.founder-name-unique {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    color: #ffffff;
}

.founder-position-unique {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 0.5px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.footer-para {
    text-align: center;
}

.footer-logo-center {
    text-align: center;
    /* Text & logo center */
}

.footer-logo-center a img {
    display: inline-block;
    /* Logo ko center karne ke liye */
    max-height: 100px;
    /* Pehle jaise size */
}

.footer-logo-center .footer-para {
    margin: 0 auto;
}

/*** Footer  end***/

.custom-small-img {
    max-width: 350px;
    /* Image ko chota karne ke liye */
    height: auto;
    /* Aspect ratio maintain kare */
    display: block;
    margin: 0 auto;
    /* Center alignment */
    border-radius: 10px;
    /* Rounded corners optional */
}

@media (max-width: 768px) {
    .custom-small-img {
        max-width: 300px;
        /* Image ko chota karne ke liye */
        height: auto;
        /* Aspect ratio maintain kare */
        display: block;
        margin: 0 auto;
        /* Center alignment */
        border-radius: 10px;
        /* Rounded corners optional */
    }
}

.about-section {
    margin-top: -100px;
}


.location-section {
    background-color: rgba(0, 0, 0, 0.082) !important;
    /* thoda darker transparent */
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px !important;
}

.location-section .location-img img {
    max-width: 80px;
    /* Image size adjust */
    height: auto;
}

.visit {
    color: #721700 !important;
    font-size: 22px;
    letter-spacing: 1px;
}

.location-section .location-info p {
    color: #000000;
    /* Text color white for transparency effect */
    margin: 0;
}

.zomato-premium-section {
    background: #fdf7ed;
    /* subtle Zomato-themed gradient */
    padding: 60px 0;
}

.zomato-img {
    border-radius: 12px;
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
}

.zomato-title {
    font-weight: 700;
    color: #c9122a;
    /* Zomato-like accent */
}

.zomato-text {
    color: #333;
    line-height: 1.6;
    font-size: 18px !important;
}

@media (max-width: 991px) {
    .zomato-text {
        color: #333;
        line-height: 1.6;
        font-size: 15px !important;
        text-align: justify;
    }
}



.zomato-order-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #b8001f, #e71515);
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgb(250, 76, 23);
    /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.zomato-order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Hover effect */
.zomato-order-btn:hover {
    color: #ffffff;
    background: #800000;
    /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .zomato-title {
        font-size: 2rem;
    }

    .zomato-text {
        font-size: 1.1rem;
    }
}

/* book table section start */
.dining-section {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../img/why-choose-background.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-table {
    margin-bottom: 20px !important;
}

/* Container */
.dining-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* vertical center alignment */
    justify-content: center;
    /* horizontal center alignment */
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding: 40px;
    border-radius: 12px;
    /* background: rgba(255, 255, 255, 0.85);  */
}

/* Image */
.dining-image {
    flex: 1 1 400px;
    /* flexible but minimum 400px */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dining-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Content */
.dining-content {
    flex: 1 1 400px;
    /* flexible but minimum 400px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.dining-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #a5a5a5;
    text-align: justify;
}

.dining-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffc78e;
    font-weight: 600;
}

.book-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    background: #000000;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #ffc78e;
    margin-top: 5px;
}

.book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    transform: skewX(-60deg);
    animation: shineLTR 1.5s linear infinite;
    pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .dining-container {
        flex-direction: column;
        text-align: center;
        padding: 0px;
    }

    .dining-image,
    .dining-content {
        flex: 1 1 100%;
        justify-content: center;
        align-items: center;
    }

    .dining-content h3 {
        text-align: center;
    }

    .book-btn {
        display: block;
        margin: 20px auto 0 auto;
    }

    .dining-content p {
        text-align: center;
    }
}

/* book table section end */

.menu-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;

    background-image: url("../img/menu-background.jpg");
    /* apni image path */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    margin-top: -100px;
    margin-bottom: -100px;
}



.menu-bg {

    background-color: #520101;
    max-width: 900px;
    /* width limit for background */
    width: 100%;
    border-radius: 12px;
    /* optional rounded corners */
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /* optional shadow for premium look */
    border: 2px solid rgb(255, 178, 78);
}

@media (max-width: 768px) {
    .menu-bg {
        background: #520101;
        /* background color applied here */
        max-width: 900px;
        /* width limit for background */
        width: 100%;
        border-radius: 12px;
        /* optional rounded corners */
        padding: 20px 0px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        /* optional shadow for premium look */
    }
}

.menu-list {
    list-style: none;
    max-width: 900px;
    margin: auto;
    padding: 0;
    margin-top: -35px;
}

.menu-item {
    border: 1px solid rgba(255, 238, 0, 0.979);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 12px;
    cursor: pointer;

}

.menu-heading {
    font-size: 20px;
    color: rgb(124, 40, 40);
}

@media(max-width:768px) {
    .menu-heading {
        font-size: 14px;
        color: rgb(124, 40, 40);
    }
}

.menu-header span:first-child {
    flex: 1;
    margin-left: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.dropdown-arrow {
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: rgb(124, 40, 40);
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.submenu li {
    padding: 12px 0;
    border-top: 1px solid #eee;
    font-size: 1rem;
    color: #555;
}

@media(max-width:768px) {
    .submenu li {
        padding: 12px 0;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #555;
    }
}

/* Open state */
.menu-item.active .submenu {
    max-height: 500px;
    /* large enough for content */
}

.menu-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Responsive */
@media(max-width:768px) {
    .menu-header span:first-child {
        font-size: 1rem;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }
}

/* gallery page start */

.media-section {
    padding: 50px 20px;
    background: #ffffff;
    font-family: 'Arial', sans-serif;
    margin-top: -100px !important;
}

.tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 30px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    background: #e0e0e0;
    color: #333;
    font-size: 16px;
    border-radius: 30px;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #c1894d;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 300px;
    /* fixed card height */
}

.photo-card img {
    width: 100%;
    height: 240px;
    /* fixed image height */
    object-fit: cover;
    /* ensures image fills without distortion */
    display: block;
}

.photo-card h4 {
    padding: 20px;
    font-size: 16px;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .photo-card h4 {
        padding: 11px;
        font-size: 16px;
        color: #333;
        margin: 0;
    }
}

.photo-card:hover {
    transform: scale(1.05);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 300px;
    /* same fixed height */
    display: flex;
    flex-direction: column;
}

.video-card iframe {
    flex: 1;
    /* iframe fills remaining space */
    width: 100%;
    object-fit: cover;
}

.video-card h4 {
    padding: 10px;
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Hover effect */
.photo-card:hover,
.video-card:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .video-card iframe {
        height: 180px;
    }

    .photo-card {
        height: 280px;
    }
}

/* contact page start */
.wh-contact-section {
    margin-bottom: 50px;
    background-color: #ffffff;
}

.wh-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wh-contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.wh-contact-info {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wh-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    transition: transform 0.3s, box-shadow 0.3s;
}

.wh-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wh-contact-icon {
    font-size: 32px;
    color: #c2934e;
    flex-shrink: 0;
    margin-top: 5px;
}

.wh-contact-title {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #333;
}

.wh-contact-text {
    margin: 0;
    font-size: 15px;
    color: #555;
}

.wh-contact-map {
    flex: 1 1 500px;
    min-width: 300px;
    height: 100%;
}

.wh-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    border: none;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .wh-contact-wrapper {
        flex-direction: column;
    }

    .wh-contact-info,
    .wh-contact-map {
        flex: 1 1 100%;
    }

    .wh-contact-map {
        flex: 1 1 500px;
        min-width: 100%;
        height: 100%;
    }

    .mobile-footer {
        display: none;
    }

}

/* contact page end */

/* Enquiry page start */

.enquiry-heading {
    font-size: 40px;
    margin-bottom: 20px !important;
}

.now {
    color: #640202;
}

.enquiry-btn {
    background: #ffc107;
    color: #000;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .enquiry-btn {
        margin-right: 20px !important;
    }
}

.enquiry-btn:hover {
    background: #e0a800;
    color: #ffffff;
}

.submit-button {
    background-color: #a88043 !important;
}

.submit-button:hover {
    background-color: #c47808 !important;
}

/* Enquiry page end */

.explore-de {
    color: #ffffff;
}

.brand-name-4 {
    color: #e9b200;
}

.upper-heading-2 {
    color: #ffffff !important;
}


/* Section background (optional) */
.form-section {
    background: #ffffff;
    padding: 0px 0;
}

/* Form Box */
.enquiry-form-box {
    background: #f8f8f8;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #61000073;
    /* clean border */
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
    transition: 0.3s;
    margin-top: 20px;
}

/* Hover effect */
.enquiry-form-box:hover {
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.12); */
}

/* Input fields */
.enquiry-form-box .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Focus effect */
.enquiry-form-box .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* Button styling */
.submit-button {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}