/********** 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:62px !important;
    }
}

.navbar-nav {
    align-items: center;
}
.navbar .btn {
    padding: 6px 18px !important;
    font-size: 14px;
    display: inline-block;
    font-weight: 300;
    color: #ffffff; 
     background: linear-gradient(135deg, #ad6b3e, #d8ae57);
    border-radius: 20px;
    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); */
    margin-right: 10px;
}
.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 12px;
    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;
    margin-top: -80px;
}

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




.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, .8), rgba(0, 0, 0, .5)), url(../img/banner/breadcrumb.jpg) bottom 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 ***/


.about-contact-section {
    background-color: rgba(0, 0, 0, 0.05); /* halka transparent */
    transition: 0.3s ease;
}

.about-contact-section:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.about-contact-icon img {
    width: 58px;
}

@media (max-width: 768px) {
.about-contact-icon img {
    width: 44px;
}
}

.about-contact-title {
    color: #000;
    font-size: 20px;
    margin-left: 20px;
}

@media (max-width: 768px) {
   .about-contact-title {
    color: #000;
    font-size: 16px;
    /* margin-left: 1px !important; */
}
}

.about-contact-number a {
    color: #000; /* black number */
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
}
.about-contact
{
    color: rgb(133, 72, 36, 1);
}

.about-contact-number a:hover {
    color: #333;
}
.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.959) !important;
    /* font-family: 'Cormorant Garamond', serif; */
}

@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*/

.counter-card-section
{
    /* margin-bottom: 50px; */
    background: linear-gradient(to top, rgba(0,0,0,0.0), rgba(0,0,0,0.0)), 
                url("../img/golden-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
.compact-fact {
     background: linear-gradient(to top, rgba(0,0,0,0.0), rgba(0,0,0,0.0)), 
                url("../img/counter-card.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 15px;       /* smaller padding */
    margin: 5px 0;
    border: 1px solid #854824;
}

.compact-fact:hover{
    
}

.compact-fact i {
    font-size: 2.5rem;   /* smaller icon */
    color: #69391d;      /* primary color */
    margin-bottom: 8px;
}

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

.compact-fact h1 {
    font-size: 2.5rem;   /* 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: -40px !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: 100%;
    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: 100%;
    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;
    padding-bottom: 70px;
}
.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('img/service-icon-bg.png'); /* 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-background
{
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .9)), url(../img/banner/footer-background.jpg) center center no-repeat !important;
    background-size: cover !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: #573019 !important;
    font-size: 48px !important;
}
.brand-name-2
{
    color: #854824 !important;
    
}
.brand-name-3
{
    color: #ffc78e !important;
    
}

@media (max-width: 768px) {
  .brand-name
{
    color: #721700 !important;
    font-size: 27px !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;
    background-color: #ffffff;
}

.mission-vision-section .mission-card,
.mission-vision-section .vision-card {
    background-color: #f3f3f3;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgb(170, 128, 79, 1);
}
.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.3);
}
.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: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/founder-background.jpg) top center no-repeat;
    background-size: cover;
    margin-top: 0px;
    margin-bottom: 30px;
}
.owner
{
    color: #fff;
}
.jeet-singh
{
    color: #ffc78e!important;
    font-weight: 100 !important;
    
}
/* 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;
}
.founder-para
{
    color: #a0a0a0;
    font-size: 18px;
    text-align: justify !important;
}


/*** 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: left;
}
.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 {
    width: 100%;   /* 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 */
    margin-top: 0px;
    /* padding: 4px; */
    /* border-left: 4px solid #854824; */
    /* border-top: 4px solid #854824; */
}
@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 */
    margin-top: -50px;
}
}
.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 page start */
.menu-section {
  padding: 0px 20px;
  background: transparent; /* section itself transparent */
  display: flex;
  justify-content: center;
}

.menu-bg {
    background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0)), url(../img/banner/new.jpg) center left no-repeat;
  /* background: #f9f9f9;  */
  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(182, 153, 116);
}

@media (max-width: 768px) {
 .menu-bg {
  background: #f9f9f9; /* 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;
}

.menu-item {
  border: 1px solid rgba(161, 81, 81, 0.582);
  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;
}

@media (max-width: 768px) {
 .wh-contact-info {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -50px;
}
}

.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%;
}

}

/* contact page end */

/* Enquiry page start */

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

.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 */

/* image slide start */
.hproductsitem{
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
}
.hproductsitem:hover{
    transform: translateY(-10px);
}
.hproductsitem img {
    margin-bottom: 12px;
    border-radius: 10px;
}
.hproductsitem h3{
    font-size: 18px;
    color: #001a36;
    font-weight: 600;
    text-align: center;
    height: 25px;
}
.hproductsitem p{
    color: #000;
    text-align: center;
    font-size: 14px;
    height: 90px;
}
.hproductsitem .btn-primary i{
    margin-left: 6px;
}
.hproductsitem .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
    justify-content: center;
    display: flex;
    width: 48%;
    margin: 10px auto;
    border-radius: 4px;
    color: #ff7202;
    border: none;
    padding:5px 0;
}
.hproductsitem .btn-primary:hover {
    background: #ff7202;
    color: #fff;
}
.hoffercardmain{
    padding: 30px 0 10px;
    /* background-color: #07305d; */
   background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(../img/banner/signature-background.jpg) center center no-repeat;
    background-size: cover;
    
}

.dish-head
{
    color: #fff;
    /* letter-spacing: 0.5 !important; */
}

.card-enquiry
{
    background: #5a2e15 !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}
.sig
{
    color: #fff;
    font-size: 50px;
}
/* image slide section end */



/* right side counter section */
/* Highlight Box */
.about-highlight-box {
    display: flex;
    flex-wrap: wrap;          /* Wrap on smaller screens */
    gap: 30px;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 25px;
    background: #270f02;
    padding: 15px 15px;       /* Proper padding */
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    /* border: 2px solid rgb(255, 174, 0); */
}

.highlight-year {
    text-align: center;
    color: #ffffff;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    /* border-radius: 10px; */
    font-size: 1.2rem;
    font-weight: 300;
    border: 2px solid #ffffff;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), url(../img/brown-linear.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.highlight-year h2 {
    font-size: 48px; /* Bigger number */
    margin: 0 0 10px 0;
    color: #ffffff !important;
}


.highlight-features p {
    margin-bottom: 8px;
    font-weight: 500;
}
.about-image-wrapper {
    transition: transform 0.4s ease;
}
.about-image-wrapper:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-highlight-box {
        flex-direction: column; /* Stack vertically */
        text-align: left !important;       /* Section text left */
    }

    .about-highlight-box .highlight-year
    {
         flex: unset;
        text-align: center !important;  
        margin-top: 20px !important;
    }


    .about-highlight-box .highlight-features {
        flex: unset;
        text-align: left !important;       /* Left align */
    }

    .about-highlight-box .highlight-features p {
        justify-content: flex-start; /* Left align icons and text */
    }
}

.highlight-features i {
    color: #502603;
    margin-right: 8px;
}
.highlight-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}


.highlight-image {
    text-align: center;
}

.highlight-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .highlight-image {
        margin-top: 0px;
        margin-left: 10px;
    }
}

/* right side counter section end */

/* Image styling */
.lm-image-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-fact-img {
    max-width: 98%;
    height: auto;
    transform: scale(1.1); 
}

/* Mobile View Fix */
@media (max-width: 991px) {

    /* Image upar */
    .lm-order-img {
        order: 1;
    }

    /* Cards niche */
    .lm-order-cards {
        order: 2;
    }

    /* Cards full width (ek ke niche ek) */
    .lm-order-cards .col-4 {
        width: 100%;
    }

    .lm-fact-img {
        transform: scale(1); /* mobile me normal size */
        margin-bottom: 20px;
    }
}


/* faq section start */


.faq-section {
    padding: 50px 20px;
    background-color: rgb(255, 250, 241);
    font-family: 'Poppins', sans-serif;
}

.f-question
{
    color: rgb(133, 72, 36) ;
}

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

.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.faq-content {
    flex: 1;
}

.faq-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 22px;
    transition: 0.3s;
    color: rgb(109, 58, 0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-text {
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.faq-active .faq-answer {
    max-height: 200px;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(45deg);
}

.faq-image-wrapper {
    flex: 1;
}

.faq-image {
    width: 100%;
    border-radius: 20px;
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
}

/* Responsive */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
    }

    .faq-image-wrapper {
        order: -1;
    }
}
/* faq section end */

/* specialities section start */

.specialities-section{
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #eef2f3);
  font-family: 'Poppins', sans-serif;
}

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

.specialities-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
}

/* Cards */
.specialities-card{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 1px solid #854824 ;
}

.specialities-card:hover{
  transform: translateY(-5px);
}

/* Titles */
.specialities-title{
  font-size: 25px;
  margin-bottom: 20px;
  color: #854824;
  /* text-align: center; */
}

.specialities-subtitle{
  font-size: 14px;
  margin-bottom: 10px;
  color: #6b7280;
}

/* List */
.specialities-list{
  padding-left: 18px;
}

.specialities-list li{
  margin-bottom: 10px;
  color: #514437;
  line-height: 1.5;
}

/* Center Image (Normal Image Style) */
.specialities-image-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.specialities-image-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;   /* VERY IMPORTANT */
}

.specialities-image-wrapper img{
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  border-radius: 18px;

  animation: rotateImage 14s linear infinite;
  transform-origin: center;
}

/* Smooth rotation */
@keyframes rotateImage{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px){
  .specialities-grid{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .specialities-image-wrapper img{
    max-width: 100%;
  }
}


/* new-menu-section start */

.new-menu-section{
  /* max-width:800px; */
  margin:0 auto;   /* ✅ PERFECT CENTER */
  padding:80px;
  font-family:Arial, sans-serif;
  /* padding-top: 50px; */
  background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0)), url(../img/menu-background.jpg) center center no-repeat;
  background-size: cover;
  margin-top: -100px;
  margin-bottom: -100px;
}
@media(max-width:768px){
.new-menu-section{
  /* max-width:800px; */
  margin:0 auto;   /* ✅ PERFECT CENTER */
  padding:10px;
  font-family:Arial, sans-serif;
  /* padding-top: 50px; */
  background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0)), url(../img/new-3.jpg) center center no-repeat;
  background-size: cover;
}
}


/* TAB */
.new-menu-item{
  margin:0 auto; 
  max-width:820px;
  margin-bottom:15px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,0.08);
  background:#fff;
}


.new-menu-tab{
  width:100%;
  text-align:left;
  padding:18px 20px;
  font-size:24px;
  font-weight:600;
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/menu-strip.jpg) center center no-repeat;
  background-size: cover;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #e9e9e9;
  font-family: "Cormorant Garamond", serif;
}

@media(max-width:768px){
.new-menu-tab{
  width:100%;
  text-align:left;
  padding:18px 20px;
  font-size:20px;
  font-weight:600;
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/menu-strip.jpg) center center no-repeat;
  background-size: cover;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #e9e9e9;
  font-family: "Cormorant Garamond", serif;
}
}

/* LEFT SIDE (icon + text ek saath) */
.tab-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.price{
  font-size:20px;
  color:#ffffff;
  margin-left:10px;
}

@media (max-width: 768px){
 .price{
  font-size:18px;
  color:#ffffff;
  margin-left:10px;
}
}

/* 📱 Mobile View */
@media (max-width: 768px){
  .tab-left{
    flex-direction: column;
    align-items: flex-start;
  }

  .price{
    margin-left: 0;
    margin-top: 4px;
  }
}

.silver
{
    color: #ffc170;
}

.new-menu-icon{
  font-size:22px;
}

/* CONTENT */
.new-menu-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding:0 20px;
  background: linear-gradient(135deg, #1d120b, #3d2104);
  border-top: 1px solid #ffc170;
}

/* ROW DESIGN */
.new-menu-row{
  display:flex;
  gap:20px;
  padding:15px 0;
  border-bottom:1px solid #ffc170;
}

.new-menu-left{
  width:260px;              /* increased width */
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.new-menu-left img{
  width:120px;              /* smaller but clean balance */
  height:120px;
  object-fit:cover;
  border-radius:10px;
  padding: 3px;
  border: 2px solid #ffffff;
}

.new-menu-left h3{
  font-size:20px !important;
  margin:0;
  font-weight:500;
  white-space:nowrap;      /* 🔥 prevents break */
  margin-left: 20px;
  color: #ffc170;
  font-size: 20px;
   font-family: "Cormorant Garamond", serif;
}

@media(max-width:768px){
 .new-menu-left h3{
  font-size:20px !important;
  margin:0;
  font-weight:700;
  white-space:nowrap;      /* 🔥 prevents break */
  margin-left: 0px !important;
}
}

.new-menu-right{
  flex:1;
}

.new-menu-right ul{
  margin:0;
  padding-left: 180px;
  
}

.new-menu-right ul li{
  padding:4px 0;
  font-size:14px !important;
  color:#cacaca;
}

.price-tag{
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.price-tag p{
  display: inline-block;
  background: linear-gradient(135deg, #29180f, #4a2b1d);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

@media(max-width:768px){
.new-menu-right ul li{
  padding:4px 0;
  font-size:14px;
  color:#cacaca;
}
}

/* RESPONSIVE */
@media(max-width:768px){
  .new-menu-row{
    flex-direction:column;
  }

  .new-menu-left{
    width:100%;
  }
}

@media(max-width:768px){
  .new-menu-right{
    padding-left:0;   /* ❌ remove shift on mobile */
  }

  .new-menu-right ul{
    padding-left:18px; /* normal mobile indent */
  }
}



.new-service {
  padding: 80px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.service-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-left {
  flex: 1;
}

.service-title {
  font-size: 38px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 700;
}

@media (max-width: 768px) {
.service-title {
  font-size: 30px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 700;
}
}
.services-color
{
    color: #854824;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}



/* new service section start */
/* Thread line */
.service-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #000000;
  height: 290px;
}

@media (max-width: 768px) {
.service-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #000000;
  height: 400px;
}
}

.service-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.service-list .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}


@media (max-width: 768px) {
.service-list .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}
}
.left-side-icon
{
    font-size: 18px;
    color: rgb(255, 189, 67);
}
.stalls
{
    margin-left: 20px;
   
}
@media (max-width: 768px) {
 .stalls
{
    margin-left: 0px;
   
}
}

.service-list h4 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.service-list p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

/* Right Side Image */
.service-right {
  flex: 1;
  text-align: center;
}

.service-right img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
  transition: 0.3s;
}

.service-right img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .service-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .service-list::before {
    left: 18px;
  }
}

/* new service section end */

.welcome-image {
    width: 80%;        /* size control */
    height: auto;      /* maintain ratio */
    display: block;
    margin: 0 auto;    /* center align */
    border-radius: 10px;
}

@media (max-width: 768px) {
.welcome-image {
    width: 100%;        /* size control */
    height: auto;      /* maintain ratio */
    display: block;
    margin: 0 auto;    /* center align */
    border-radius: 10px;
}
}

/* specialities section start */

.event-minus-specialties{
  background: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .0)), url(../img/specialities-background.jpg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.event-minus-title{
  font-weight: 700;
  font-size: 38px;
  color: #7c340d;
  /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); */
}

.event-minus-subtitle{
  color: #6c757d;
}

.event-minus-card{
  background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/specialities-card.jpg) center center no-repeat;
  background-size: cover;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  height: 100%;
}

.event-minus-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.event-minus-icon{
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #ffa461, #af3700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.event-minus-card h5{
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px){
  .event-minus-title{
    font-size: 24px;
  }
}


/* services thraed section  */

.buffet-specialties-section {
    background: #fff;
}

/* Title */
.buffet-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}


/* Thread List */
.buffet-thread-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Vertical line */
.buffet-thread-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    /* background: #000000; */
    height: 380px;
}

@media (max-width: 768px) {
    .buffet-thread-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: none;
    height: 380px;
}
}

/* List Item */
.buffet-thread-list li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    position: relative;
    padding-left: 50px;
    font-size: 16px;
}

/* Icon Circle */
.buffet-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #854824;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.buffet-thread-list li:hover .buffet-icon {
    background: #000;
    transform: scale(1.1);
    transition: 0.3s;
}

/* Image Styling */
.buffet-img-box {
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    max-width: 550px;
}

.buffet-img-box img {
    width: 100%;
    transition: 0.4s;
}

.buffet-img-box:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .buffet-title {
        font-size: 24px;
    }

    .buffet-thread-list li {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .buffet-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

.buffet-thread-list li h6 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .buffet-thread-list li h6 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}
}

.buffet-thread-list li p {
    margin: 4px 0 0;
    font-size: 16px;
    color: #666;
}

/* spacing improve */
.buffet-thread-list li {
    align-items: flex-start;
}
/*  */

.enquiry-back
{
    background-color: rgb(231, 231, 231);
    padding: 50px 30px;
    border-radius: 10px;
    border: 1px solid rgb(119, 54, 0);
}

@media (max-width: 768px) {
.enquiry-back
{
    background-color: rgb(231, 231, 231);
    padding: 50px 10px;
    border-radius: 10px;
}
}

.welcome-section
{
    margin-top: -60px;
}
.submit-button-now
{
    background-color: #854824 !important;
}
.submit-button-now:hover
{
    background-color: #a16900 !important;
}


/* customized menu strip */

.two-column-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 25px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.two-column-list ul li {
    position: relative;
    padding-left: 15px;
}

/* optional bullet style */
.two-column-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .two-column-list ul {
        grid-template-columns: 1fr;
    }
}

.top-space
{
    margin-left: 10px;
}




/* Desktop */
.video-wrapper {
    height: 350px;
    overflow: hidden;
    margin-top: 120px;
}

.welcome-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .video-wrapper {
        height: auto;  
        margin-top: -50px;
    }

    .welcome-video {
        width: 100%;
        height: auto;   /* 👈 original size */
        object-fit: contain; /* 👈 full video visible (no crop) */
    }
}


/* certificate download */

.about-download-btn{
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(232, 59, 12, 1), rgba(255, 120, 0, 1));
    color: #fff;
    /* font-weight: 600; */
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-download-btn:hover{
    background: rgba(232, 59, 12, 1);
    transform: translateY(-2px);
    color: #ffffff !important;
}
/* ======================================================= */

.navbar-btn-group{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile me stack + spacing */
@media (max-width: 768px){
    .navbar-btn-group{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .navbar .btn{
        width: 100%;
    }
}

@media (max-width: 768px){
    .navbar .ps-3{
        padding-left: 0 !important;
        margin-top: 10px;
    }

    .navbar .text-light{
        font-size: 13px;
    }
    .mobile-foot {
        display: none;
    }
}

/* certificate section start */

.certificate-section{
    background: #ebebeb;
    color: #fff;
}

.certificate-img{
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.certificate-img:hover{
    transform: scale(1.05);
}
.certificate-color
{
    color: #000000 !important;
}




/* Dropdown css */
.navbar .dropdown-menu {
    border-radius: 10px;
    padding: 8px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #0d6efd;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }
}



.dropdown-item.active, .dropdown-item:active {
    background-color: #eaa636 !important;
    color: #fff;
}