        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
        }
        
        .carousel-container {
            position: relative;
            width: 100%;
            /* height: 70vh; */
            overflow: hidden;
        }
        
        .carousel-slide {
            display: flex;
            width: 400%;
            height: 100%;
            /* transition: transform 0.8s ease-in-out; */
        }
        
        .carousel-slide img {
            width: 25%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background-color: #ff6a00;
            transform: scale(1.2);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #ff6a00;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-btn.prev {
            left: 20px;
        }
        
        .carousel-btn.next {
            right: 20px;
        }
        
        .content-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .content-section h2 {
            color: #ff6a00;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9a00;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature {
            flex: 1;
            min-width: 250px;
            background-color: #fff9f2;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #ff9a00;
        }
        
        .feature h3 {
            color: #ff6a00;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature i {
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .carousel-container {
                height: 50vh;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }



        
/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* ===========================
   MOBILE RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-brand img {
        width: 90px !important;
        height: 90px !important;
        margin-top: -8px;
    }

    .navbar-dark .navbar-toggler :hover {
    color: rgb(194 42 46);
    background-color:white;
}  
/* 
    .navbar-collapse {
        background-color: #c22a2e;
        text-align: center;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 0;
        color: #fff !important;
    } */

    .btn {
        padding: 8px 20px !important;
        font-size: 14px !important;
        margin: 10px auto;
        display: inline-block;
    }

    /* Carousel */
    .carousel-container {
        height: auto !important;
    }

    .carousel-slide img {
        /* width: 100% !important; */
        height: auto !important;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer .section-title {
        text-align: center !important;
    }

    .footer .btn.btn-link {
        font-size: 14px;
        text-align: center;
    }

    .footer iframe {
        width: 100% !important;
        height: 180px;
    }

    .footer .copyright {
        text-align: center;
        font-size: 13px;
    }

    /* Content adjustments */
    .content-section {
        padding: 15px;
        margin: 20px auto;
    }

    .feature {
        min-width: 100%;
        margin-bottom: 15px;
    }
}

/* For very small devices (phones under 480px) */
@media (max-width: 480px) {
    .navbar-brand img {
        width: 80px !important;
        height: 80px !important;
    }

    .carousel-btn {
        display: none; /* hides arrows to save space */
    }

    .footer iframe {
        height: 150px;
    }
}
    /* About Section Styles */
        /* .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        .about-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-subtitle {
            color: #e74c3c;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .about-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .about-title span {
            color: #e74c3c;
        }

        .about-description {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
            max-width: 90%;
        }

        .stats-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 16px;
            color: #777;
        }

        .read-more-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .read-more-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .image-main {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .card-1 {
            top: 20%;
            left: -30px;
        }

        .card-2 {
            bottom: 20%;
            right: -30px;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .card-content h4 {
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .card-content p {
            color: #777;
            font-size: 14px;
        }

        /* Responsive Design 
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-content, .about-image {
                flex: none;
                width: 100%;
            }
            
            .floating-card {
                position: static;
                margin-top: 20px;
            }
            
            .card-1, .card-2 {
                position: static;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
       
            
            .about-title {
                font-size: 32px;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 20px;
            }
        }
*/
 

   @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fff;
}

.about-section {
  padding: 80px 10%;
  background-color: #fffaf6;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-image1 img {
  width: 450px;
  border-radius: 50%;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.15);   */
  transition: transform 0.3s ease;
}

.about-image1 img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  max-width: 550px;
}

.about-tag {
  color: #c22a2e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 30px;
  color: #222;
  margin: 10px 0 20px;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background-color: #c22a2e;
  color: #fff;
  transform: translateY(-5px);
}

 

.stat-box i {
  font-size: 30px;
  color: #c22a2e;
  margin-bottom: 10px;
}

.stat-box:hover i {
  color: #fff;
}

.btn-readmore {
  display: inline-block;
  /* margin-top: 30px; */
  background-color: #c22a2e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-readmore:hover {
  background-color: #a81f23;
  color:white;
} 
    /* ✅ Responsive Design for About Section */

/* For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image1 img {
    width: 350px;
    max-width: 100%;
    height: auto;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-stats {
    justify-content: center;
  }
}

/* For mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  .about-section {
    padding: 50px 20px;
  }

  .about-image1 img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px; /* Slightly soften on small screens */
  }

  .about-content h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 250px;
  }

  .btn-readmore {
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 6px;
  }
}



       .containerx {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9vZCUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: #f5f5f5;
            padding: 20px;
            min-height: 100vh;
        }

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

        header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px 20px;
        }

        h1 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); */
        }

        h1:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
           background: linear-gradient(to right, #c22a2e, #c22a2e);
            border-radius: 2px;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }

        .dishes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .dish-card {
            background: rgba(30, 30, 30, 0.85);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            position: relative;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* .dish-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
            background: rgba(40, 40, 40, 0.9);
        } */

        .dish-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .dish-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dish-card:hover .dish-image img {
            transform: scale(1.1);
        }

        .dish-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .dish-card:hover .dish-overlay {
            opacity: 0.9;
        }

        .dish-price {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(to right, #ff7b00, #ffaa00);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .dish-content {
            padding: 20px;
        }

        .dish-content h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .dish-content p {
            color: #bbb;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .dish-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .dish-tag {
            background: rgba(255, 123, 0, 0.2);
            color: #ffaa00;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 170, 0, 0.3);
        }

        .veg-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
        }

        .veg {
            background: #27ae60;
            border: 2px solid #2ecc71;
        }

        .non-veg {
            background: #e74c3c;
            border: 2px solid #c0392b;
        }

        .dish-rating {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        .stars {
            color: #ffaa00;
            margin-right: 8px;
        }

        .rating-value {
            font-weight: bold;
            color: #fff;
        }

        .more-menu-btn {
            display: block;
            margin: 0 auto;
            background: linear-gradient(to right, #c22a2e, #c22a2e);
            color: white;
            border: none;
            /* padding: 15px 40px; */
            width:250px;
            height:50px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
        }

        .more-menu-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 123, 0, 0.6);
           background: linear-gradient(to right, #c22a2e, #c22a2e);
           color:white;
        }

        .more-menu-btn:active {
            transform: translateY(1px);
        }

        .more-menu-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .more-menu-btn:hover i {
            transform: translateX(5px);
        }

        .floating-bg {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 123, 0, 0.15) 0%, rgba(255, 123, 0, 0) 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .bg1 {
            top: 10%;
            left: 5%;
            width: 400px;
            height: 400px;
        }

        .bg2 {
            bottom: 10%;
            right: 5%;
            width: 350px;
            height: 350px;
        }

        @media (max-width: 768px) {
            .dishes-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .floating-bg {
                display: none;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            .dish-card {
                margin: 0 10px;
            }
            
            .containerx {
                padding: 10px;
            }


            .more-menu-btn {
            display: block;
            margin: 0 auto;
            background: linear-gradient(to right, #c22a2e, #c22a2e);
            color: white;
            border: none;
            /* padding: 15px 40px; */
            width:250px;
            height:50px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 123, 0, 0.4);
        }

        .more-menu-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 123, 0, 0.6);
           background: linear-gradient(to right, #c22a2e, #c22a2e);
           color:white;
        }
        }

   .container11 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

                .headerx {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(to right, #c22a2e, #c22a2e);
            color: white;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

         

        .subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }

        .food-culture {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #c22a2e;
        }

        .food-culture h2 {
            color: #c22a2e;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .collage {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .collage img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* .collage img:hover {
            transform: scale(1.05);
        } */

        .dishes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
/* 
        .dish-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        } */

        /* .dish-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        } */

        .dish-image {
            height: 220px;
            overflow: hidden;
        }

        .dish-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* .dish-card:hover .dish-image img {
            transform: scale(1.1);
        } */

        .dish-content {
            padding: 20px;
        }

        .dish-content h3 {
            color: #ffffff;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .dish-content p {
            color: #ffffff;
            margin-bottom: 15px;
        }

        .dish-tag {
            display: inline-block;
            background: #ffeaa7;
            color: #d35400;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        
        @media (max-width: 768px) {
            .collage {
                grid-template-columns: repeat(2, 1fr);
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .collage {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 1.8rem;
            }
        }

.xx{
           background-image: url(../img/bgs.png); /* 👈 your background image */
           background-color: #fff8e2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
             min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
}

   :root {
            --primary: #e63946;
            --secondary: #f1faee;
            --accent: #a8dadc;
            --dark: #1d3557;
            --light: #f8f9fa;
        }

                .restaurant-services-container {
            max-width: 1200px;
            width: 100%;
        }

        .restaurant-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .restaurant-section-title {
           font-size: 1.8rem;
    color: #c22a2e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .restaurant-section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), #ff7b00);
            border-radius: 2px;
        }

        .restaurant-section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .restaurant-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .restaurant-service-card {
            background: linear-gradient(to bottom right, #c22a2e, #c22a2e);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .restaurant-service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
          background: linear-gradient(to bottom right, #c22a2e, #c22a2e);
            transition: height 0.4s ease;
            z-index: -1;
        }

        .restaurant-service-card:hover:before {
            height: 100%;
        }

        .restaurant-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            color: white;
        }

        .restaurant-service-card:hover .restaurant-service-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: scale(1.1);
        }

        .restaurant-service-card:hover .restaurant-service-title,
        .restaurant-service-card:hover .restaurant-service-description {
            color: white;
        }

        .restaurant-service-icon {
            width: 90px;
            height: 90px;
           background: rgba(255, 255, 255, 0.2);
    color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--dark);
            font-size: 2.2rem;
            transition: all 0.4s ease;
        }

        .restaurant-service-title {
            font-size: 23px;
            margin-bottom: 15px;
            color:white;
            transition: color 0.4s ease;
        }

        .restaurant-service-description {
            color: #ffffff;
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        .restaurant-floating-bg {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0) 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .restaurant-bg1 {
            top: 10%;
            left: 5%;
            width: 400px;
            height: 400px;
        }

        .restaurant-bg2 {
            bottom: 10%;
            right: 5%;
            width: 350px;
            height: 350px;
        }

        @media (max-width: 768px) {
            .restaurant-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .restaurant-section-title {
                font-size: 2.2rem;
            }
            
            .restaurant-floating-bg {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .restaurant-section-title {
                font-size: 1.8rem;
            }
            
            .restaurant-service-card {
                margin: 0 10px;
            }
        }







        

      .xxx {
            /* background: 
                linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cmVzdGF1cmFudCUyMGludGVyaW9yfGVufDB8fDB8fHww&auto=format&fit=crop&w=1200&q=80'); */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .containerxx {
            max-width: 1200px;
            width: 100%;
        }

        .headerxx {
            text-align: center;
            margin-bottom: 80px;
        }

        .subtitlexx {
            color: #e63946;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .titlexx {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .descriptionxx {
            font-size: 1.2rem;
            color: #b0b0b0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0) 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(230, 57, 70, 0.3);
            box-shadow: 
                0 20px 40px rgba(230, 57, 70, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e63946, #ff6b6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .feature-description {
            color: #b0b0b0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .stats-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: #ffffff;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #e63946;
            margin-bottom: 10px;
            font-feature-settings: "tnum";
            text-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        .stat-label {
            color: #b0b0b0;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .accent-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #e63946, transparent);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        /* Floating animation for cards */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .feature-card {
            animation: float 6s ease-in-out infinite;
        }

        .feature-card:nth-child(2) {
            animation-delay: 1s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 2s;
        }

        .feature-card:nth-child(4) {
            animation-delay: 3s;
        }

        .feature-card:nth-child(5) {
            animation-delay: 4s;
        }

        /* Background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(230, 57, 70, 0.1);
            border-radius: 50%;
            animation: float-particle 20s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-section {
                padding: 40px 20px;
            }
        }


         .faqs{
                /* padding: 80px 0; */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
     
        }


         .container {
            max-width: 1200px;
            margin: 0 auto;
        }
/*         
        h1 {
            text-align: center;
            margin: 30px 0;
            color: #2c3e50;
            font-size: 2.5rem;
        } */
        
        .design-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .design-btn {
            padding: 12px 25px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .design-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        
        .design-btn.active {
            background: #2c3e50;
        }
        
        .faq-section {
            display: none;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .faq-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Design 1: Modern Split Layout */
        .design-1 .faq-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        
        .design-1 .faq-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: #f8f9fa;
        }
        
        .design-1 .faq-image {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #c22a2e 0%, #400c0d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            color: white;
        }
        
        .design-1 .faq-image-content {
            text-align: center;
            max-width: 400px;
        }
        
        .design-1 .faq-image i {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .design-1 .faq-image h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
                color: white;
        }
        
        .design-1 .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .design-1 .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            background-color: #fff;
            transition: background-color 0.3s;
        }
        
        .design-1 .faq-question:hover {
            background-color:  #7e1b1d  ;
            color:white;
        }
        
        .design-1 .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #7e1b1d;
            transition: transform 0.3s;
        }
        
        .design-1 .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .design-1 .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background-color: white;
        }
        
        .design-1 .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Design 2: Card Style */
        .design-2 .faq-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding: 40px;
        }
        
        .design-2 .faq-content {
            flex: 2;
            min-width: 300px;
        }
        
        .design-2 .faq-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .design-2 .faq-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .design-2 .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #3498db;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .design-2 .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .design-2 .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            background-color: #fff;
        }
        
        .design-2 .faq-question i {
            margin-right: 15px;
            color: #3498db;
            font-size: 1.2rem;
        }
        
        .design-2 .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s, padding 0.4s;
            background-color: white;
        }
        
        .design-2 .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Design 3: Minimalist */
        .design-3 .faq-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        
        .design-3 .faq-content {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: white;
        }
        
        .design-3 .faq-image {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .design-3 .faq-image-content {
            text-align: center;
        }
        
        .design-3 .faq-image-content i {
            font-size: 6rem;
            color: #3498db;
            margin-bottom: 20px;
        }
        
        .design-3 .faq-image-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .design-3 .faq-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .design-3 .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 10px 0;
        }
        
        .design-3 .faq-question::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.2rem;
            color: #3498db;
            transition: transform 0.3s;
        }
        
        .design-3 .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .design-3 .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .design-3 .faq-item.active .faq-answer {
            padding: 15px 0 0;
            max-height: 500px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .design-1 .faq-container,
            .design-2 .faq-container,
            .design-3 .faq-container {
                flex-direction: column;
            }
            
            .design-1 .faq-content,
            .design-1 .faq-image,
            .design-2 .faq-content,
            .design-2 .faq-image,
            .design-3 .faq-content,
            .design-3 .faq-image {
                width: 100%;
            }
            
            .design-1 .faq-image,
            .design-3 .faq-image {
                padding: 40px 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

 


            .gallery-img {
      width: 100%;
      border-radius: 10px;
      cursor: pointer;
    }


    .bg-lights{
      background-color: #c12a2e;
    }

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

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #c22a2e !important;
    border-color:#c22a2e !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #c22a2e;
    border-color: #c22a2e;
}

        .we1 {
  background-image: url(../img/bg-pattern.png); /* 👈 your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives a nice parallax effect */
  position: relative;
  z-index: 1;
  /* margin-top: -20px;; */
  
}

/* Optional: Add a soft overlay for better readability */
.we1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgb(255 255 255 / 92%); /* light overlay tint */
  z-index: -1;
}


.reservation {
  position: relative;
background: linear-gradient(rgb(0 0 0 / 34%), rgb(0 0 0 / 85%)), url(https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Zm9vZCUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=1200&q=80);

       
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  /* min-height: 100vh; */
}

.reservation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.reservation .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

.reservation h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 50px;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 700;
}

/* ===== Form Layout ===== */
form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 35px;
  justify-content: center;
}

.input-box {
  position: relative;
  text-align: left;
}

.input-box i {
  position: absolute;
  top: 15px;
  left: 10px;
  color: #ffffff;
  font-size: 16px;
}

.input-box input {
  width: 90%; /* smaller width for short underline */
  padding: 12px 15px 12px 35px;
  border: none;
  border-bottom: 2px solid #ffffff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
  margin-left: 5%;
  transition: all 0.3s ease;
}

.input-box input::placeholder {
  color: #ddd;
}

.input-box input:focus {
  border-bottom-color: #fff;
  width: 95%; /* expand slightly on focus */
}

/* ===== Button ===== */
button {
  grid-column: span 3;
  justify-self: center;
  background: #ffffff;
  border: none;
  color: #c22a2e;
  font-weight: 600;
  /* padding: 14px 40px; */
  width:120px;
  height:50px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #fff;
  color: #c22a2e;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  form {
    grid-template-columns: repeat(2, 1fr);
  }
  button {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  form {
    grid-template-columns: 1fr;
  }
  button {
    grid-column: span 1;
  }
  .reservation h2 {
    font-size: 36px;
  }
}