@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@font-face {
  font-family: 'Dancing Script';
  src: url("../fonts/DancingScript-Regular.woff2") format("woff2"), url("../fonts/DancingScript-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal; }
/* ----------------------------------------------------------
:: Mixin CSS
---------------------------------------------------------- */
/* ----------------------------------------------------------
:: Common CSS
---------------------------------------------------------- */
html {
  scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #868686;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased; }
  @media screen and (max-width: 767px) and (min-width: 320px) {
    body {
      font-size: 0.9rem; } }
  @media screen and (min-width: 1920px) {
    body {
      font-size: 1.1rem; } }

/* ----------------------------------------------------------
:: Common CSS
---------------------------------------------------------- */
.gray-color {
  color: #cccccc; }

.brown-color {
  color: #9f3e23; }

.black-color {
  color: #04000b; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #04000b;
  margin: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.5em;
  font-weight: normal; }

a {
  color: #fff;
  text-decoration: none; }
  a:hover, a:focus {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #9f3e23; }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

::selection {
  color: #fff;
  background: #9f3e23; }

.text-justify {
  text-align: justify; }

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0; }

.list-count {
  column-count: 2; }

.section-xl {
  padding: 100px 0; }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .section-xl {
      padding: 60px 0;
      overflow: hidden; } }

.section-lg {
  padding: 80px 0; }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .section-lg {
      padding: 50px 0;
      overflow: hidden; } }

.section-md {
  padding: 60px 0; }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .section-md {
      padding: 40px 0; } }

.section-sm {
  padding: 40px 0; }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .section-sm {
      padding: 30px 0; } }

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px; }
  .social-icons li {
    list-style: none; }
    .social-icons li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: #3f3f3f;
      transition: all 0.3s ease; }
      .social-icons li a i {
        font-size: 1.2rem;
        color: #fff; }
      .social-icons li a:hover {
        background: #9f3e23; }

@media screen and (max-width: 768px) {
  .get-in {
    margin-top: 2rem; } }

.section-title h4 {
  color: #9f3e23;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  display: inline-flex;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .section-title h4 {
      font-size: 1rem; } }

h2 {
  font-size: 3rem;
  color: #04000b;
  font-family: 'Marcellus', cursive;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3; }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 1.8rem; } }

.custom-btn {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  color: #fff;
  background-color: #9f3e23;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1; }
  .custom-btn::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 150%;
    background: #000;
    transform: translateY(-50%) skew(25deg) scale(0);
    transition: all 0.35s ease;
    z-index: -1; }
  @media screen and (max-width: 768px) {
    .custom-btn {
      padding: 8px 10px; } }
  .custom-btn:hover {
    color: #fff; }
    .custom-btn:hover::after {
      transform: translateY(-50%) skew(25deg) scale(1.2); }

.custom-btn-1, .custom-btn-1-red {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: #04000b;
  background-color: #fff;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
  border: 1px solid #cccccc;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 0.5rem; }
  .custom-btn-1::after, .custom-btn-1-red::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 150%;
    background: #04000b;
    transform: translateY(-50%) skew(25deg) scale(0);
    transition: all 0.35s ease;
    z-index: -1; }
  .custom-btn-1:hover, .custom-btn-1-red:hover {
    color: #fff; }
    .custom-btn-1:hover::after, .custom-btn-1-red:hover::after {
      transform: translateY(-50%) skew(25deg) scale(1.2); }

.custom-btn-1-red {
  background: #9f3e23;
  color: #fff; }
  @media screen and (max-width: 768px) {
    .custom-btn-1-red {
      padding: 10px 12px; } }
  .custom-btn-1-red::after {
    background: #04000b; }

.back-to-top {
  position: fixed;
  bottom: 8px;
  right: 8px;
  width: 42px;
  height: 41px;
  line-height: 41px;
  background: url(../images/scroll-top.webp) no-repeat;
  font-size: 10px;
  text-align: center;
  display: none;
  filter: invert(1);
  z-index: 9999; }
  .back-to-top:hover {
    color: #fff; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

.dot-lists {
  list-style: disc;
  padding-left: 18px;
  margin: 0; }
  .dot-lists li {
    font-size: 1rem;
    line-height: 2;
    font-weight: 600; }

.swiper-pagination-bullet {
  opacity: 1; }

.swiper-pagination-bullet-active {
  background: #000; }

.gallery-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer; }
  .gallery-item.big {
    height: 100%; }
    @media screen and (max-width: 768px) {
      .gallery-item.big {
        height: 360px; } }
  .gallery-item .img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0); }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform; }
  .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1; }
  .gallery-item::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 10px;
    width: 2px;
    height: 0;
    background: #9f3e23;
    transition: height 0.4s ease;
    z-index: 2; }
  .gallery-item .bottom-border {
    position: absolute;
    left: 6px;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: #9f3e23;
    transition: width 0.4s ease;
    z-index: 2; }
  .gallery-item .gallery-overlay {
    position: absolute;
    bottom: 56px;
    left: 56px;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateX(15px);
    transition: 0.4s ease; }
    @media screen and (max-width: 768px) {
      .gallery-item .gallery-overlay {
        bottom: 30px;
        left: 30px; } }
    .gallery-item .gallery-overlay span {
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 6px;
      display: block; }
      @media screen and (max-width: 768px) {
        .gallery-item .gallery-overlay span {
          font-size: 0.8rem; } }
    .gallery-item .gallery-overlay h4 {
      font-weight: 700;
      margin: 0;
      color: #fff; }
      @media screen and (max-width: 768px) {
        .gallery-item .gallery-overlay h4 {
          font-size: 0.9rem; } }
  .gallery-item:hover img {
    transform: scale(1.08); }
  .gallery-item:hover::before {
    opacity: 1; }
  .gallery-item:hover::after {
    height: 50%; }
  .gallery-item:hover .bottom-border {
    width: 50%; }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateX(0); }

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  background: #ddddddf2; }

.gallery-item img {
  display: block; }

.prgoress_scrollup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border: 2px solid #9f3e23;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease; }
  .prgoress_scrollup.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .prgoress_scrollup:hover {
    transform: translateY(-6px) scale(1.05); }
  .prgoress_scrollup .icon {
    position: absolute;
    font-size: 1.2rem;
    color: #fff;
    z-index: 2; }

.rating {
  color: #9f3e23 !important; }
  @media screen and (max-width: 767px) and (min-width: 320px) {
    .rating {
      margin-top: 2rem; } }
  .rating span {
    padding-left: 1rem;
    font-size: 1.4rem;
    color: #868686; }

.breadcrum-banner {
  background-image: url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/breadcrub.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  height: 78vh;
  background-position: bottom; }
  @media screen and (max-width: 767px) and (min-width: 320px) {
    .breadcrum-banner {
      height: 15vh; } }
  .breadcrum-banner .breadcrum-title h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-align: start;
    text-transform: uppercase; }
    @media screen and (max-width: 767px) and (min-width: 320px) {
      .breadcrum-banner .breadcrum-title h1 {
        font-size: 1.9rem; } }
  .breadcrum-banner .breadcrumb {
    background: #9f3e23;
    display: inline-block;
    padding: 0.5rem; }
    .breadcrum-banner .breadcrumb li {
      padding: 0 5px;
      position: relative;
      display: inline-block;
      z-index: 1;
      font-weight: 600;
      font-size: 16px;
      color: #fff; }
      .breadcrum-banner .breadcrumb li::after {
        content: ">>";
        margin-left: 10px; }
      .breadcrum-banner .breadcrumb li:last-child::after {
        content: ""; }
      .breadcrum-banner .breadcrumb li a:hover {
        color: #04000b; }

.simple-list {
  list-style-type: disc;
  padding-left: 16px;
  margin: 0; }
  .simple-list li {
    list-style-position: outside; }

.simple-list li::marker {
  color: #9f3e23; }

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 5; }
  @media screen and (min-width: 1920px) {
    .scroll-down {
      bottom: 80px; } }
  @media screen and (max-width: 767px) {
    .scroll-down {
      bottom: 280px; } }
  .scroll-down .mouse {
    width: 28px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    display: block; }
    @media screen and (max-width: 767px) {
      .scroll-down .mouse {
        width: 20px;
        height: 30px; } }
    .scroll-down .mouse::before {
      content: "";
      width: 4px;
      height: 8px;
      background: #fff;
      position: absolute;
      left: 50%;
      top: 8px;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: scrollMove 1.5s infinite; }
  .scroll-down::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    display: block;
    margin: 6px auto 0;
    animation: arrowMove 1.5s infinite; }

@keyframes scrollMove {
  0% {
    opacity: 0;
    top: 6px; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    top: 16px; } }
@keyframes arrowMove {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(8px) rotate(45deg); } }
/* ==============================================================
    # 404 page
=================================================================== */
.error-main {
  margin-top: 7rem; }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .error-main {
      margin-top: 0rem; } }
  @media screen and (min-width: 1600px) {
    .error-main {
      margin-top: 10rem; } }
  .error-main .error-page-area {
    position: relative;
    z-index: 1; }
    .error-main .error-page-area .shape-left,
    .error-main .error-page-area .shape-right {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 100%;
      width: 20%;
      background-repeat: no-repeat !important;
      background-size: contain !important;
      z-index: -1;
      opacity: 0.3; }
    .error-main .error-page-area .shape-left {
      left: -116px;
      background-position: left !important; }
    .error-main .error-page-area .shape-right {
      right: -112px;
      background-position: right !important; }

.error-box h3 {
  font-size: 5rem;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 3px 3px #c0c0c0; }
  @media screen and (max-width: 767px) and (min-width: 320px) {
    .error-box h3 {
      font-size: 5rem; } }
.error-box h4 {
  font-weight: 700;
  margin-bottom: 1rem; }
.error-box p {
  padding: 0 10%; }

/* LOADER WRAPPER */
#page-loader {
  position: fixed;
  inset: 0;
  background: #9f3e23;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease; }

/* HIDE STATE */
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden; }

/* CONTENT */
.loader-content {
  text-align: center; }

.loader-logo {
  width: 120px;
  margin-bottom: 15px;
  animation: pulse 1.5s ease-in-out infinite; }
  @media screen and (min-width: 1601px) {
    .loader-logo {
      width: 200px; } }
  @media screen and (max-width: 767px) {
    .loader-logo {
      width: 100px; } }

@keyframes bounce {
  0%,
    80%,
    100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }
@keyframes pulse {
  0%,
    100% {
    transform: scale(1.5); }
  50% {
    transform: scale(1.15); } }
/* ----------------------------------------------------------
:: Classy Navbar
---------------------------------------------------------- */
.navbar {
  position: absolute;
  z-index: 9;
  width: 86%;
  background: #9f3e23;
  top: 2rem;
  padding: 0.6rem;
  left: 0;
  margin: auto;
  right: 0;
  border-radius: 10px; }
  @media (min-width: 1601px) {
    .navbar {
      width: 74%; } }
  @media (max-width: 767px) {
    .navbar {
      padding: 6px 0; } }
  @media screen and (max-width: 992px) and (min-width: 320px) {
    .navbar {
      top: 0;
      position: relative;
      width: 100%;
      border-radius: 0; }
      .navbar .navbar-toggler {
        background-color: #9f3e23; }
        .navbar .navbar-toggler span {
          color: #fff; } }
  .navbar .navbar-collapse .navbar-nav.nav-right .nav-item:last-child {
    margin-right: 0px !important; }
  @media (max-width: 992px) {
    .navbar .navbar-collapse .navbar-nav {
      overflow-y: scroll;
      height: auto; } }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    list-style: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    vertical-align: middle;
    padding: 0 0.6rem;
    /* mobile */ }
    @media (max-width: 600px) {
      .navbar .navbar-collapse .navbar-nav .nav-item {
        margin-right: 0;
        padding: 0; } }
    @media screen and (min-width: 1400px) {
      .navbar .navbar-collapse .navbar-nav .nav-item {
        padding: 0 1rem; } }
    .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
      font-size: 17px;
      text-transform: capitalize;
      color: #fff;
      display: inline-block;
      position: relative;
      font-weight: 600;
      background-color: transparent !important;
      transition: color 0.4s ease; }
      .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 0%;
        height: 2px;
        background: #fff;
        transition: width 0.5s ease; }
      .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
        color: #fff;
        background-color: transparent !important; }
      .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::before {
        width: 100%; }
    @media (max-width: 992px) {
      .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        color: #868686 !important; }
        .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
          display: none; } }
  .navbar .navbar-collapse .navbar-nav .dropdown-toggle:after {
    content: "\f107";
    font-family: "FontAwesome";
    border: none;
    padding: 0;
    color: inherit;
    font-size: 0.75rem; }
  .navbar .navbar-collapse .navbar-nav .dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    min-width: 100px; }
    .navbar .navbar-collapse .navbar-nav .dropdown-menu .nav-link:hover {
      color: #9f3e23;
      transform: translateY(0px) translateX(5px) !important; }
    @media screen and (min-width: 320px) and (max-width: 1024px) {
      .navbar .navbar-collapse .navbar-nav .dropdown-menu .nav-link {
        background: #9f3e23;
        line-height: 1rem; } }
    .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item {
      color: #04000b;
      padding: 0.8rem;
      background: #fff;
      transition: 0.3s;
      line-height: 24px;
      font-weight: 600;
      font-size: 0.9rem;
      text-wrap: wrap;
      text-transform: capitalize;
      transition: all 500ms ease;
      position: relative; }
      .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item .active, .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item:hover, .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item:active {
        color: #04000b; }
        .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item .active::after, .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item:hover::after, .navbar .navbar-collapse .navbar-nav .dropdown-menu li .dropdown-item:active::after {
          width: 100%; }
    .navbar .navbar-collapse .navbar-nav .dropdown-menu li:last-child .dropdown-item {
      border-bottom: none; }
  .navbar .navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 28px 0 #0000003d; }

.brand-logo img {
  width: 120px; }
  @media screen and (max-width: 768px) {
    .brand-logo img {
      width: 90px; } }
.brand-logo p {
  line-height: 1;
  padding-left: 0.7rem; }

.fixed-top {
  background-color: #9f3e23;
  position: fixed;
  padding: 8px 0;
  box-shadow: 0px 0px 10px #5f367a61;
  width: 100%;
  top: 0;
  border-radius: 0;
  z-index: 99;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; }
  @media screen and (max-width: 768px) {
    .fixed-top {
      padding: 9px 0; } }
  .fixed-top img {
    width: 100px; }
    @media screen and (max-width: 768px) {
      .fixed-top img {
        width: 70px; } }
  .fixed-top .navbar-nav .nav-link {
    color: #fff; }
    .fixed-top .navbar-nav .nav-link:hover, .fixed-top .navbar-nav .nav-link:focus {
      color: #fff !important; }

/* ============ only desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto; }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    min-width: 250px;
    background: #0d2d62;
    border-radius: 0;
    right: -100px; }

  .navbar .nav-item:hover .nav-link {
    color: #fff; }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%; }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
    padding: 0;
    left: -12px; } }
/* ============ desktop 1920 resolution// ============ */
@media screen and (min-width: 1400px) {
  .navbar .nav-item .dropdown-menu {
    min-width: 300px; } }
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none; }

/* ============ desktop view .end// ============ */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 64px;
    right: 0;
    min-width: 300px;
    min-height: 100%;
    background: #fff;
    box-shadow: 0 9px 10px 0 #0006;
    z-index: 9;
    padding: 20px;
    min-width: 200px; }

  .navbar-collapse.collapsing {
    right: -75%;
    transition: height 0s ease; }

  .navbar-collapse.show {
    right: 0;
    transition: right 300ms ease-in-out; }

  .navbar-toggler.collapsed ~ .navbar-collapse {
    transition: right 500ms ease-in-out; }

  .navbar-toggler {
    box-shadow: none; } }
.navbar .megamenu {
  padding: 1rem; }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important; }

  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 74%;
    margin: 0 auto;
    padding: 30px !important; } }
/* ============ desktop view .end// ============ */
/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    /* margin-top:10px; */ } }
/* ============ mobile view .end// ============ */
@media screen and (max-width: 992px) and (min-width: 320px) {
  .m-img {
    height: 40px; } }
/* ----------------------------------------------------------
:: banner
---------------------------------------------------------- */
.banner .banner-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  pointer-events: none; }
  @media (max-width: 768px) {
    .banner .banner-content {
      margin-top: -15rem;
      text-align: center; } }
.banner h1 {
  font-size: 6rem;
  color: #fff;
  font-weight: 900;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 4px;
  font-family: 'Marcellus', cursive; }
  @media (min-width: 1601px) {
    .banner h1 {
      font-size: 7rem; } }
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 2.2rem; } }
.banner h4 {
  font-size: 1.5rem; }
  @media (min-width: 1601px) {
    .banner h4 {
      font-size: 2rem; } }
.banner h2 {
  font-size: 1.5rem;
  padding: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #9f3e23;
  color: #fff;
  display: inline-block;
  transform: translateX(200px);
  margin-top: 1rem; }
  @media (max-width: 768px) {
    .banner h2 {
      transform: translateX(0px);
      font-size: 1rem;
      padding: 8px; } }
  @media (min-width: 1601px) {
    .banner h2 {
      transform: translateX(0px);
      text-align: center; } }
.banner .estd-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase; }
  @media (max-width: 768px) {
    .banner .estd-wrap {
      font-size: 1rem; } }
  .banner .estd-wrap .estd-text {
    opacity: 0.85; }
  .banner .estd-wrap .estd-year {
    position: relative;
    opacity: 0.85;
    padding-left: 40px; }
    @media (max-width: 768px) {
      .banner .estd-wrap .estd-year {
        padding-left: 0px; } }
    .banner .estd-wrap .estd-year::after {
      content: "";
      position: absolute;
      left: -15px;
      top: 50%;
      width: 40px;
      height: 2px;
      background-color: #fff; }
      @media (max-width: 768px) {
        .banner .estd-wrap .estd-year::after {
          display: none; } }
  .banner .estd-wrap .estd-line {
    width: 400px;
    height: 2px;
    background-color: #9f3e23;
    margin-top: 2px; }
    @media (max-width: 768px) {
      .banner .estd-wrap .estd-line {
        width: 100px; } }
.banner .banner-swiper {
  position: relative;
  height: 100vh;
  overflow: hidden; }
  @media (max-width: 768px) {
    .banner .banner-swiper {
      height: 50vh; } }
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .banner .banner-swiper {
      height: 60vh; } }
  .banner .banner-swiper .bg-slide {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    transition: 5s ease-out;
    transform: scale(1.1);
    width: 100%; }
    .banner .banner-swiper .bg-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1; }
  .banner .banner-swiper .swiper-slide.swiper-slide-active .bg-slide {
    transform: scale(1); }
.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 50px;
  height: 50px;
  color: #fff;
  opacity: 0;
  position: absolute;
  z-index: 6;
  pointer-events: auto; }
.banner .swiper-button-prev {
  left: 30px; }
  @media (max-width: 768px) {
    .banner .swiper-button-prev {
      display: none; } }
.banner .swiper-button-next {
  right: 30px; }
  @media (max-width: 768px) {
    .banner .swiper-button-next {
      display: none; } }
.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
  opacity: 1; }

.footer-main {
  position: relative;
  background-color: #1b1b1b;
  z-index: 0;
  overflow: hidden; }
  .footer-main .footer-bottom-shape {
    position: absolute;
    left: 0;
    bottom: 56px;
    z-index: -1; }
    .footer-main .footer-bottom-shape img {
      width: 220px;
      opacity: 0.4; }
      @media (min-width: 1601px) {
        .footer-main .footer-bottom-shape img {
          width: 300px; } }
    @media (max-width: 768px) {
      .footer-main .footer-bottom-shape {
        display: none; } }
  .footer-main .footer-top {
    position: relative;
    margin: 5rem 0; }
    @media (max-width: 768px) {
      .footer-main .footer-top {
        margin: 2rem 0; } }
    .footer-main .footer-top::after {
      position: absolute;
      left: 0;
      top: 50%;
      content: "";
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
      z-index: -1; }
    .footer-main .footer-top img {
      display: inline-block;
      background: #1b1b1b;
      padding: 0 30px;
      width: 200px; }
      @media (max-width: 768px) {
        .footer-main .footer-top img {
          width: 130px;
          padding: 0px 15px; } }
  .footer-main .footer-inner {
    padding: 0 0 3rem 0; }
    @media (max-width: 768px) {
      .footer-main .footer-inner {
        padding: 0 0 2.5rem 0; } }
    .footer-main .footer-inner .border-right {
      position: relative; }
      .footer-main .footer-inner .border-right::after {
        content: "";
        position: absolute;
        top: 0;
        right: 10px;
        width: 1px;
        height: 100%;
        background: rgba(255, 255, 255, 0.3); }
    .footer-main .footer-inner .explore li {
      line-height: 2.5;
      list-style-type: disc;
      list-style-position: inside;
      color: #9f3e23; }
    .footer-main .footer-inner .footer-link {
      list-style: none;
      padding: 0;
      margin: 0; }
      .footer-main .footer-inner .footer-link li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin: 0.75rem 0;
        color: #fff; }
        .footer-main .footer-inner .footer-link li a {
          display: flex;
          align-items: center;
          gap: 10px;
          color: #cccccc;
          text-decoration: none;
          width: 100%; }
        .footer-main .footer-inner .footer-link li address,
        .footer-main .footer-inner .footer-link li span {
          margin: 0;
          line-height: 1.6;
          color: #fff; }
        .footer-main .footer-inner .footer-link li .icons {
          flex-shrink: 0;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 35px;
          height: 35px;
          border-radius: 5px;
          background: #9f3e23;
          color: #fff;
          font-size: 16px; }
    .footer-main .footer-inner p {
      color: #fff; }
    .footer-main .footer-inner h5 {
      margin-bottom: 1rem;
      font-weight: 700; }
  .footer-main .footer-bottom {
    background: #262525;
    padding: 15px 0; }

/* ----------------------------------------------------------
:: About
---------------------------------------------------------- */
.about {
  position: relative; }
  .about i {
    left: 548px;
    height: 85px;
    width: 85px;
    line-height: 80px;
    text-align: center;
    background: #9f3e23;
    color: #fff;
    font-weight: 600;
    z-index: 10;
    font-size: 2rem;
    border-radius: 50%;
    position: absolute;
    bottom: 65px;
    border: 5px solid #fff;
    animation: rotateBounce 4s ease-in-out infinite; }
    @media (min-width: 1601px) {
      .about i {
        left: 805px; } }
  .about .img-inner {
    position: relative;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .about .img-inner {
        max-width: 100%; } }
    .about .img-inner img {
      display: block;
      max-width: 100%;
      height: auto; }
      .about .img-inner img:first-child {
        position: relative;
        border-radius: 10px;
        width: 60%; }
        @media (max-width: 768px) {
          .about .img-inner img:first-child {
            width: 100%;
            margin-bottom: 1rem; } }
      .about .img-inner img:nth-child(2) {
        position: absolute;
        bottom: -17px;
        width: 200px;
        right: 80px;
        border: 5px solid #fff;
        border-radius: 20px;
        z-index: 9; }
        @media (max-width: 768px) {
          .about .img-inner img:nth-child(2) {
            bottom: 0;
            right: 0px; } }
    .about .img-inner::after {
      content: '';
      position: absolute;
      right: 120px;
      top: 0;
      height: 46%;
      width: 74px;
      background-image: radial-gradient(circle, rgba(159, 62, 35, 0.8) 2px, transparent 2px);
      background-size: 12px 12px;
      animation: dotDrift 10s linear infinite; }
      @media (min-width: 1601px) {
        .about .img-inner::after {
          height: 54%;
          width: 100px; } }
      @media (max-width: 767px) {
        .about .img-inner::after {
          display: none; } }
    .about .img-inner .about-inner p {
      text-align: justify; }
    .about .img-inner .about-inner .about-text {
      background-color: #04000b;
      padding: 30px;
      position: relative; }
      .about .img-inner .about-inner .about-text::after {
        content: '';
        position: absolute;
        width: 90%;
        height: 100%;
        top: 16px;
        left: 40px;
        border: 1px solid #cccccc;
        z-index: -1; }
        @media (min-width: 1601px) {
          .about .img-inner .about-inner .about-text::after {
            top: 22px;
            left: 54px; } }
      .about .img-inner .about-inner .about-text p {
        color: #cccccc; }
      .about .img-inner .about-inner .about-text h3 {
        color: #fff;
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: .5rem; }
@keyframes dotDrift {
  0% {
    background-position: 0 40px; }
  100% {
    background-position: 0 -40px; } }
@keyframes rotateBounce {
  0% {
    transform: rotate(0deg) scale(1); }
  50% {
    transform: rotate(180deg) scale(1.1); }
  100% {
    transform: rotate(360deg) scale(1); } }
/* ----------------------------------------------------------
:: service
---------------------------------------------------------- */
.service {
  position: relative;
  background: linear-gradient(to right, #ebe9e659, #ebe9e670), url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/service-bg.webp);
  background-size: cover;
  background-position: bottom center; }
  .service .service-card {
    max-width: 360px; }
    @media only screen and (min-width: 1601px) {
      .service .service-card {
        max-width: 380px; } }
    .service .service-card .service-img {
      position: relative; }
      .service .service-card .service-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
        background-color: #eee6df; }
      .service .service-card .service-img .service-tag {
        position: absolute;
        bottom: -16px;
        left: 0;
        padding: 5px 20px;
        background: #9f3e23;
        color: #fff;
        font-weight: 600;
        font-family: 'Dancing Script';
        font-size: 1.4rem; }
    .service .service-card .service-content {
      background: #fff;
      padding: 30px 20px 0px 20px;
      border-radius: 24px;
      min-height: 200px; }
      @media only screen and (max-width: 767px) {
        .service .service-card .service-content {
          min-height: 190px; } }
      @media only screen and (min-width: 1920px) {
        .service .service-card .service-content {
          min-height: 210px; } }
      .service .service-card .service-content p {
        margin-bottom: 0; }
      .service .service-card .service-content .time {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        font-weight: 600;
        position: relative; }
        .service .service-card .service-content .time::after {
          position: absolute;
          left: 0;
          top: 50%;
          content: "";
          height: 2px;
          width: 100%;
          border-top: 1px solid #cccccc;
          z-index: -1; }
        @media only screen and (min-width: 1920px) {
          .service .service-card .service-content .time {
            margin-bottom: 0.8rem; } }
        .service .service-card .service-content .time .price {
          font-weight: 700; }

.service-nav {
  position: absolute;
  bottom: 140px;
  left: 114px;
  display: flex;
  gap: 1rem;
  z-index: 0; }
  @media screen and (min-width: 1601px) {
    .service-nav {
      top: 64%;
      left: 300px; } }
  .service-nav .swiper-button-prev,
  .service-nav .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #9f3e23;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
    .service-nav .swiper-button-prev::after,
    .service-nav .swiper-button-next::after {
      font-size: 0.8rem;
      font-weight: 600; }
    .service-nav .swiper-button-prev:hover,
    .service-nav .swiper-button-next:hover {
      background: #9f3e23; }
  @media screen and (max-width: 768px) {
    .service-nav {
      display: none; } }

/* ----------------------------------------------------------
:: offer
---------------------------------------------------------- */
.offer {
  position: relative; }
  .offer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background-image: url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/signature-bg.webp);
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: left bottom; }
    @media screen and (max-width: 768px) {
      .offer::before {
        display: none; } }
  .offer .offer-main {
    position: relative; }
    .offer .offer-main h4 {
      color: #04000b;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem; }
    .offer .offer-main img {
      width: 70%; }
    .offer .offer-main .platter {
      background: #fff;
      padding: 2rem;
      position: absolute;
      right: -50px;
      top: 96px;
      box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
      border-radius: 30px; }
      .offer .offer-main .platter::after {
        content: "";
        position: absolute;
        left: -23px;
        top: 37px;
        height: 50px;
        width: 30px;
        background: #fff;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
        box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1); }
      .offer .offer-main .platter:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.18); }
      @media only screen and (min-width: 768px) and (max-width: 1024px) {
        .offer .offer-main .platter {
          display: none; } }
    @media only screen and (max-width: 767px) {
      .offer .offer-main {
        display: none; } }

/* ----------------------------------------------------------
:: food
---------------------------------------------------------- */
.food {
  position: relative;
  background: url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/bg-counter.webp);
  background-size: cover;
  background-position: bottom center;
  z-index: 0; }
  .food::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    bottom: 0;
    background-color: #0000002b;
    opacity: 0.9;
    z-index: -1; }
  .food .counter {
    display: flex;
    gap: 3rem; }
    .food .counter::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 2px;
      height: 70px;
      background: rgba(255, 255, 255, 0.3); }
    .food .counter h2 {
      color: #9f3e23;
      font-weight: 600;
      font-size: 64px;
      margin: 0;
      line-height: 1; }
      @media only screen and (max-width: 767px) {
        .food .counter h2 {
          font-size: 2rem; } }
    .food .counter h5 {
      color: #fff;
      margin-top: 8px;
      font-size: 1rem; }
  .food .services {
    padding: 50px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2); }
    @media only screen and (max-width: 767px) {
      .food .services {
        padding: 25px;
        margin-top: 1rem; } }
    .food .services img {
      margin-bottom: 1rem;
      width: 100px; }
      @media only screen and (max-width: 767px) {
        .food .services img {
          width: 50px; } }
    .food .services h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      line-height: 2.5; }
      @media only screen and (max-width: 767px) {
        .food .services h3 {
          line-height: 1.5; } }

.navbar-nav .nav-link {
  color: #fff;
  transition: color 0.3s ease; }

.navbar-nav .nav-link.active-section {
  color: #04000b !important; }

.feedback {
  position: relative;
  background-color: #ebe9e657; }
  .feedback .feedback-shape {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.1; }
    .feedback .feedback-shape img {
      position: absolute;
      width: 10%; }
    .feedback .feedback-shape img:first-child {
      left: 6%;
      top: -37px; }
    .feedback .feedback-shape img:nth-child(2) {
      right: 2%;
      top: 531px; }
  .feedback .feedback-img {
    position: relative;
    display: inline-block; }
    .feedback .feedback-img img {
      border-radius: 50%;
      height: 100px;
      box-shadow: 0px 2px 60px rgba(0, 0, 0, 0.6); }
    .feedback .feedback-img .main-img {
      height: auto;
      border-radius: 0;
      clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%); }
    .feedback .feedback-img img:nth-child(2) {
      position: absolute;
      right: 0%;
      top: 10%;
      border: 2px solid #fff; }
      @media (max-width: 767px) {
        .feedback .feedback-img img:nth-child(2) {
          display: none; } }
    .feedback .feedback-img img:nth-child(3) {
      position: absolute;
      right: -50px;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid #fff;
      height: 130px; }
      @media (max-width: 767px) {
        .feedback .feedback-img img:nth-child(3) {
          display: none; } }
    .feedback .feedback-img img:nth-child(4) {
      position: absolute;
      right: 2%;
      bottom: 10%;
      border: 2px solid #fff; }
      @media (max-width: 767px) {
        .feedback .feedback-img img:nth-child(4) {
          display: none; } }
  .feedback .feedback-swiper p {
    text-align: justify;
    padding: 0 0 4rem 0; }
  .feedback .feedback-swiper h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem; }
    @media (max-width: 767px) {
      .feedback .feedback-swiper h4 {
        font-size: 1.1rem; } }
  .feedback .feedback-swiper .content {
    border-top: 1px solid #9f3e23; }
    .feedback .feedback-swiper .content h5 {
      font-size: 1.5rem;
      line-height: 1.3;
      color: #9f3e23;
      margin: 1rem 0 0;
      font-weight: 600; }
      @media (max-width: 767px) {
        .feedback .feedback-swiper .content h5 {
          font-size: 1.2rem; } }
      .feedback .feedback-swiper .content h5 span {
        font-size: 1rem;
        color: #868686; }
  .feedback .feedback-swiper .swiper-pagination {
    position: absolute;
    right: 0;
    bottom: 0px;
    text-align: end; }
  .feedback .feedback-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d1;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease; }
  .feedback .feedback-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background-color: #9f3e23; }

.menu {
  background-color: #ebe9e657;
  /* Mobile perfect alignment */ }
  .menu .meal-items {
    list-style: none;
    padding: 0;
    margin: 0; }
    .menu .meal-items li {
      margin-bottom: 2rem; }
  .menu .meal-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.5s; }
    .menu .meal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12); }
  .menu .meal-img {
    position: relative;
    flex: 1 0 0px;
    background: #eee6df;
    border-radius: 10px; }
    .menu .meal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .menu .meal-info {
    flex: 1;
    padding: 1rem 0.5rem 1rem 0; }
    .menu .meal-info h4 {
      margin: 0 0 6px;
      font-size: 1.3rem;
      font-weight: 600; }
    .menu .meal-info p {
      margin-bottom: 0;
      line-height: 1.7;
      font-size: 0.95rem; }
      @media (min-width: 1601px) {
        .menu .meal-info p {
          font-size: 1.1rem; } }
  @media (max-width: 575px) {
    .menu .meal-card {
      flex-direction: column;
      flex-direction: column;
      align-items: flex-start;
      gap: 0; }
    .menu .meal-img {
      width: 100%;
      flex: 0 0 160px; }
    .menu .meal-img img {
      height: 200px; }
    .menu .meal-info {
      padding: 1.5rem; } }

/* Mobile */
@media (max-width: 991px) {
  .meal-items-wrapper {
    grid-template-columns: 1fr; }

  .meal-items-three:first-child {
    border-right: 0;
    border-bottom: 1px dashed #9f3e23; } }
.about-section {
  background: #fff;
  position: relative;
  z-index: 0; }
  .about-section .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 2rem; }
    .about-section .about-images .about-img {
      height: 520px; }
      @media (max-width: 767px) {
        .about-section .about-images .about-img {
          height: auto; } }
      .about-section .about-images .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
  .about-section .about-content {
    max-width: 100%;
    background: #fff;
    padding: 50px;
    margin-left: -20px;
    box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
    position: relative; }
    @media (max-width: 767px) {
      .about-section .about-content {
        padding: 20px;
        margin-left: 0px;
        margin-top: 2rem; } }
    @media (min-width: 1601px) {
      .about-section .about-content {
        margin-left: -50px; } }
    .about-section .about-content .card-bg {
      position: absolute;
      height: 98px;
      right: -17px;
      z-index: -1;
      top: -90px;
      opacity: 0.7; }
      @media (max-width: 767px) {
        .about-section .about-content .card-bg {
          height: 75px;
          right: 0px;
          z-index: 0;
          top: 440px;
          z-index: 0; } }
      @media (min-width: 1601px) {
        .about-section .about-content .card-bg {
          right: -43px; } }

.contact-sec {
  position: relative;
  z-index: 1;
  /* Mobile fix */ }
  .contact-sec::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/map.webp);
    z-index: -1;
    background-size: contain;
    opacity: 0.8; }
  .contact-sec .contact-details-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-align: left;
    gap: 1.2rem;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #e6e6e6;
    transition: 0.5s; }
    .contact-sec .contact-details-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: #9f3e23;
      border-radius: 0 0 10px 10px;
      transform: translateX(-50%);
      transition: width .45s ease; }
    .contact-sec .contact-details-box:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      border-color: transparent; }
      .contact-sec .contact-details-box:hover::before {
        width: 70%; }
  .contact-sec .contact-img {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .contact-sec .contact-img img {
      width: 48px;
      height: auto; }
  .contact-sec .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .contact-sec .contact-details h5 {
      margin-bottom: 0.5rem; }
    .contact-sec .contact-details ul {
      padding-left: 1rem;
      margin-bottom: 0; }
    .contact-sec .contact-details li {
      margin-bottom: 0.4rem; }
    .contact-sec .contact-details p {
      margin-bottom: 0; }
      .contact-sec .contact-details p a {
        color: #868686; }
  .contact-sec .contact-details-box {
    min-height: 190px; }
  @media (max-width: 767px) {
    .contact-sec .contact-details-box {
      justify-content: flex-start;
      min-height: auto; } }

.contact-form .form-group input[type=email],
.contact-form .form-group input[type=password],
.contact-form .form-group input[type=tel],
.contact-form .form-group input[type=text],
.contact-form .form-group select,
.contact-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 15px;
  border-radius: 0;
  font-size: 1rem;
  color: #868686;
  transition: .6s;
  background-color: #fff;
  box-shadow: 0 0 15px #00000012;
  border: 1px solid #fff; }

.error-text {
  color: #ff0000;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px; }

.error-text::before {
  content: "⚠";
  font-size: 12px; }

.is-invalid {
  border-color: #dc3545 !important; }

*:focus-visible {
  outline: none !important; }

.service-nav {
  display: flex;
  gap: 9px;
  top: 74px;
  left: 283px; }
  .service-nav .swiper-button-prev,
  .service-nav .swiper-button-next {
    position: static;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #9f3e23;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); }
    .service-nav .swiper-button-prev::after,
    .service-nav .swiper-button-next::after {
      font-size: 14px;
      font-weight: 700; }
  @media screen and (min-width: 768px) {
    .service-nav {
      display: none; } }

.menu-right {
  position: relative; }
  .menu-right .swiper-wrapper {
    align-items: stretch; }
  .menu-right .menu-card {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18); }
    .menu-right .menu-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease; }
    .menu-right .menu-card:hover img {
      transform: scale(1.8); }
    .menu-right .menu-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05)); }
    .menu-right .menu-card .location-text {
      position: absolute;
      bottom: 25px;
      left: 25px;
      z-index: 2;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
      transition: transform 0.4s ease; }
    .menu-right .menu-card:hover .location-text {
      transform: translateY(-6px); }

@media (max-width: 991px) {
  .menu-section {
    padding: 70px 0; }
    .menu-section .section-title h2 {
      font-size: 34px; }
    .menu-section .menu-right {
      margin-top: 40px; } }
.menu-section {
  position: relative;
  z-index: 1; }
  .menu-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://rgicdn.s3.ap-south-1.amazonaws.com/restaurant/outlets-bg.webp);
    background-size: cover;
    background-position: left 90%;
    background-repeat: no-repeat; }
  .menu-section .menu-left {
    padding-left: 20px; }
    .menu-section .menu-left .sub-title {
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 600;
      color: #c59d5f;
      margin-bottom: 12px;
      display: inline-block; }
    .menu-section .menu-left h2 {
      font-size: 46px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 15px; }
    .menu-section .menu-left p {
      font-size: 15px;
      line-height: 1.7;
      color: #666;
      max-width: 420px; }
  .menu-section .menu-right {
    position: relative; }
  .menu-section .menu-card {
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    /* dark gradient overlay */ }
    .menu-section .menu-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease; }
    .menu-section .menu-card:hover img {
      transform: scale(1.01); }
    .menu-section .menu-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05)); }

.location-text {
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 2;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease; }

.menu-card:hover .location-text {
  transform: translateY(-22px); }

/* Desktop */
@media (min-width: 768px) {
  .outlet-swiper {
    overflow: visible; }
    .outlet-swiper .swiper-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px; }
    .outlet-swiper .swiper-slide {
      width: 100% !important; } }
/* Mobile */
@media (max-width: 767px) {
  .outlet-swiper .swiper-slide {
    width: 85%; } }
.lg-sub-html h4 {
  color: #fff;
  font-size: 1.4rem; }

/*# sourceMappingURL=style.css.map */
