/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  /* font-family */
  --body-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display SC", serif;
  /* Colors */
  --white-color: #ffffff;
  --dark-color: #252525;
  --primary-color: #6c3530;
  --secondary-color: #ed3037;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #cccccc;
  /* Font size */
  --font-size-xs: 0.875rem; /*14px*/
  --font-size-sm: 1rem; /*16px*/
  --font-size-md: 1.125rem; /*18px*/
  --font-size-lg: 1.5rem; /*24px*/
  --font-size-xl: 2rem; /*32px*/
  --font-size-xxl: 2.5rem; /*40px*/
  --font-size-xxxl: 3.75rem; /*60px*/
  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* Border radius */
  --border-radius-s: 10px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;
  /* Site max width */
  --site-max-width: 1360px;
  /* img shadow */
  --img-shadow: 0 5px 10px var(--secondary-color);
  /* btn shadow */
  --btn-shadow: 0 2px 5px var(--primary-color);
  /* dark shadow*/
  --dark-shadow: rgba(0, 0, 0, 0.6);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: var(--body-font);
  color: var(--dark-color);
  font-size: var(--font-size-sm);
}
.lightBg{
  background: var(--light-pink-color);
}

/* Style the entire loading screen wrapper */
#loading-screen {
  position: fixed; /* Stays in the same place even if the page is scrolled */
  z-index: 9999;   /* Ensures it is on top of all other elements */
  width: 100%;
  height: 100vh;   /* 100% of the viewport height */
  background-color: var(--light-pink-color); /* White background (customize as needed) */
  display: flex;
  justify-content: center; /* Center the loader horizontally */
  align-items: center;     /* Center the loader vertically */
  overflow: hidden;
}
/* Optional: add a class to the body to prevent scrolling during load */
.preload {
  overflow: hidden;
}
/* animation element  */
.loader_coffee{
  background:var(--light-pink-color);
  height:70px;
  width:75px;
  border:10px solid var(--light-pink-color);
  box-shadow: 0 0 0 10px var(--primary-color);
  margin:auto;
  position: relative;
  border-radius: 0 0 110px 110px;
  background-image: linear-gradient( 0deg, var(--primary-color) 0, var(--primary-color) 110px, transparent 110px, transparent 230px);
  background-size: 230px 230px;
  background-position: 0 0;
  animation: fill 2s infinite;
}
.loader_coffee:before{
  position: absolute;
  content: "";
  height: 40px;
  width: 25px;     
  border:10px solid var(--primary-color);     
  border-radius: 0 40px  40px 0;
  right: -50px;
  top: -10px;
}
@keyframes fill {
  100%{ background-position: 0 -110px;}
}

/* Stylings for whole site */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p{
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
img {
  width: 100%;
}
.container{
  max-width: var(--site-max-width);
}
:where(section, footer) .section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}
.section-title {
  text-align: center;
  padding: 0 0 50px 0;
  margin: 0;
  text-transform: none;
  font-size: var(--font-size-xxl);
  color: var(--dark-color);    
  letter-spacing: 2px;
  font-family: var(--heading-font);
  font-weight: bold;
}
.section-title::after {
  content: "";
  width: 100px;
  height: 5px;
  display: block;
  margin: 5px auto 0;
  background: var(--secondary-color);
  border-radius: var(--border-radius-s);
}
.page-template-page-termscondition .section-title::after, .page-id-21 .section-title::after{
    margin: 5px 0px !important;
}
.section-subtitle {
  text-align: left;
  padding: 0 0 30px 0;
  margin: 0;
  text-transform: none;
  font-size: var(--font-size-xl);
  color: var(--primary-color);    
  letter-spacing: 2px;
  font-weight: bold;
}
/* Navbar styling */
header {
  z-index: 5;
  width: 100%;
  position: fixed;
  background: var(--primary-color);
}
header .navbar {
  position: relative;
  display: flex;
  padding: 15px 20px;
  align-items: center;
  margin: 0 auto;
  justify-content: flex-end;
  max-width: var(--site-max-width);
}
.navbar .nav-logo{
  position: absolute;
  left: 20px;
  top: 0;
}
.navbar .nav-logo .logo{
  max-width: 150px;
}
.navbar .nav-menu {
  gap: 10px;
  display: flex;
}
.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-sm);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover, .navbar .nav-menu .nav-link.active {
  color: var(--white-color);
  background: var(--secondary-color);
}
.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}
.parallaxs{
  position: relative; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-paralax{
  background-image: url('../images/homeparalax.jpg');
}
.about-paralax{
  background-image: url('../images/aboutparalax.jpg');
}
.about-paralax::before, .home-paralax::before {
  position: absolute;
  content: "";
  background: rgb(255 255 255 / 75%);
  height: 100%;
  width: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
}
/* Hero section styling */
.hero-section {
  min-height: 100vh;
  position: relative;
}
.hero-section .swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--dark-color);
}
.hero-section .swiper-slide {
  text-align: center;
  font-size: var(--font-size-sm);
  background: var(--dark-color);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.hero-section .section-content {
  display: flex;
  padding: 0;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.home.hero-section .section-content::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(37, 37, 37, 0.5), rgba(108, 53, 48, 0.5));
}
.hero-section .hero-image {
  max-width: 100%;
  width: 100vw;
  object-fit: fill;
  height: 100vh;
}
.hero-section .hero-details {
  position: absolute;
  text-align: left;
  padding: 120px 80px 20px;
  margin: 0;
}
.hero-section .hero-details .button{
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}
.hero-section .hero-details .button:hover{
  background: var(--white-color);
  color: var(--dark-color);
  border: 2px solid var(--white-color);
  box-shadow: none;
}
.hero-section .swiper-button-next, .hero-section .swiper-button-prev{
  color: var(--white-color);
  height: 30px;
  width: 30px;
  border: 1px solid var(--white-color);
  background: transparent;
  padding: 20px;
  border-radius: 100%;
  display: none;
}
.hero-section .swiper-button-next:hover, .hero-section .swiper-button-prev:hover{
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
}
.hero-section .swiper-button-next:after, .hero-section .swiper-button-prev:after {
  font-size: 20px;
}
.hero-section .hero-details .title {
  font-size: var(--font-size-xxxl);
  color: var(--white-color);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 5px 0;
}
.highlightText{color: var(--secondary-color);}
.hero-section .hero-details .subtitle {
  max-width: 60%;
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
}
.hero-section .hero-details .description {
  max-width: 750px;
  margin: 20px 0 30px;
  font-size: var(--font-size-md);
  Color: rgba(255, 255, 255, 0.85);
}
.button {
  padding: 10px 20px;
  display: inline-block;
  border: 2px solid transparent;
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  transition: 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.button:hover {
  color: var(--white-color);
  border-color: var(--primary-color);
  background: var(--primary-color);
  box-shadow: var(--btn-shadow);
  text-decoration: none;
}

/* About section styling */
.about.hero-section {
  background: var(--primary-color) url("../images/aboutbg.jpg")no-repeat center;
  background-size: cover;
}
.about-section {
  padding: 50px 0;
  text-align: center;
}
.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
.about-section .about-image-wrapper .about-image {
  height: 500px;
  width: 500px;
  object-fit: fill;
  border-radius: var(--border-radius-m);
  box-shadow: var(--img-shadow);
}
.about-section .about-details {
  max-width: 50%;
}
.about-section .about-details .text {
  line-height: 30px;
  margin: 0 0 20px 0;
  text-align: center;
  font-size: var(--font-size-md);
}
.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}
.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-xl);
  transition: 0.3s ease;
}
.about-section .social-link-list .social-link:hover {
  color: var(--secondary-color);
}
.about-Journey, .ourFounders{
  position: relative;
  padding: 50px 0;
}
.about-Journey p {
  line-height: 30px;
  margin: 0 0 20px 0;
  font-size: var(--font-size-md);
}
.ourFounders .foundersInner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--btn-shadow);
  padding: 15px 8px;
  border-radius: 10px;
  text-align: center;
}
.ourFounders .foundersInner h4 {
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  text-shadow: 1px 1px var(--secondary-color);
  transition: 0.3s ease;
  line-height: 1;
}
.ourFounders .foundersInner h5 {
  margin: 0;
  padding: 0;
  color: var(--primary-color);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-normal);
  transition: 0.3s ease;
  line-height: 1;
}

/* Why section styling */
.why-section {
  padding: 50px 0 20px;
  text-align: center;
}
.why-wrapper-inner{
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.why-wrapper-inner .why-image {
  width: 120px;
  height: auto;
  padding: 0;
  margin: 0;
}
.why-wrapper-inner h3 {
  margin: 10px 0;
  padding: 0;
  font-size: var(--font-size-xl);
  color: var(--dark-color);
}
.why-wrapper-inner p {    
  border-top: 2px solid var(--secondary-color);
  margin: 0;
  padding: 15px 0 0 0;
}


/* Menu section styling */
.mainMenu.hero-section {
  background: var(--primary-color) url("../images/menubg.jpg")no-repeat center;
  background-size: cover;
}
.mainMenu.hero-section .hero-details .subtitle{
  max-width: 70%;
}
.menu-section {
  color: var(--dark-color);
  padding: 50px 0;
  text-align: center;
}
.menu-section .section-title {padding: 0;}
.menu-section .swiper.marquee-swiper {
  margin: 3rem 0;
  mask-image: linear-gradient(to right, transparent 0%, var(--white-color) 10%,var(--white-color) 90%, transparent 100%);
}
.menu-section .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.menu-section .swiper-slide {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu-section .swiper-slide .slider-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.menu-section .swiper-slide .name {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  transition: 0.3s ease;
}

/* ******* Mega Menu Details page css ******* */
#megamenu .nav-pills {
	background-color: transparent;
	border-color: transparent;
	font-weight: var(--font-weight-medium);
	color: var(--white-color);
	margin: 30px auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 90%;
}
#megamenu .nav-pills > li > a,
#megamenu .nav-pills > li > a:focus {
	font-weight: var(--font-weight-medium);
	font-size: var(--font-size-sm);
	color: var(--white-color);
	border-radius: 0;
	border: 0;
	text-transform: uppercase;
	font-family: var(--body-font);
  background-color: var(--dark-color);
}
#megamenu .nav-pills > li > a:hover,
#megamenu .nav-pills > li > a:focus:hover {
	color: var(--white-color);
	background-color: var(--secondary-color);
}
#megamenu .nav-pills > li > a.active,
#megamenu .nav-pills > li  > a.active:focus {
	background-color: var(--secondary-color);
	color: var(--white-color);
}
#megamenu .tab-content {width: 100%;}
#megamenu .hr-menu {
	border: 2px solid var(--dark-color);
	width: 100%;
}
#megamenu .list-group-item {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--dark-color);
  border-radius: 0;
	padding: 10px 0;
}
#megamenu .tab-content .tab-pane h2 {
	text-align: center;
	font-family: var(--heading-font);
  font-size: var(--font-size-xxl);
}
#megamenu .list-group-item h4 {
	text-align: left;
	color: var(--dark-color);
	text-transform: none;
	font-size: var(--font-size-lg);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#megamenu .badge {
	border-radius: 0;
	background-color: var(--primary-color);
	font-size: var(--font-size-md);
  vertical-align: middle;
	color: var(--white-color);
}
#megamenu .right-cover {
	background-color: var(--white-color);
	color: var(--secondary-color);
	text-shadow: var(--secondary-color) .4em .4em .4em;
	padding: 10px;
	text-transform: none;
}
#megamenu .right-cover h3{
  font-size: var(--font-size-xl);
}
#megamenu .right-cover img{
  border-radius: var(--border-radius-m);
  box-shadow: var(--img-shadow);
}
#megamenu .menuList {align-content: center;}
#megamenu .menuList .list-group{padding: 0 10px;}
#megamenu .btnMenu{margin: 50px auto 10px;text-decoration: none;}
#megamenu .btnMenu:hover{text-decoration: none;}
/* Menu Details page css end */

/*Menu starts*/
.menu-section .menu_tab {
  margin: 0 auto;
  justify-content: center;
}
.menu-section .nav-item {
  display: inline-block;
  text-align: center;
}
.menu-section .nav-tabs .nav-link{
  transition: .3s;
}
.menu-section .nav-tabs .nav-link.active {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  border: 1px solid var(--primary-color);
  text-transform: capitalize;
}
.menu-section .nav-link {
  color: var(--dark-color);
}
.menu-section .nav-tabs .nav-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}
.menu-section .single_menu {
  position: relative;
  margin-bottom: 75px;
  transition: .3s;
}
.menu-section .single_menu:hover img{
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
}
.menu-section .single_menu img {
  width: 33%;
  position: absolute;
  height: 140px;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  transition: .3s;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
}
.menu-section .menu_content {
  padding-left: 200px;
}
.menu-section .menu_content h4 {
  font-size: 25px;
  font-weight: 300;
  border-bottom: 1px dashed var(--primary-color);
  line-height: 2;
  text-transform: capitalize;
}
.menu-section .menu_content h4 span {
  font-size: 25px;
  font-weight: 800;
  float: right;
  font-style: italic;
  color: var(--primary-color);
}
.menu-section .menu_content p {
  font-weight: 200;
  font-size: var(--font-size-md);
  letter-spacing: 2px;
}
/*Menu css ends*/

/* Testimonials section styling */
.testimonials-section {
  padding: 50px 0;
}
.testimonials-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}
.testimonials-section .testimonial {
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.testimonials-section .testimonial .user-image {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}
.testimonials-section .testimonial .name {
  margin-bottom: 10px;
  font-size: var(--font-size-md);
}
.testimonials-section .testimonial .feedback {
  line-height: 25px;
}
.testimonials-section .swiper-pagination-bullet {
  display: none;
}
.testimonials-section .swiper-slide-button {
  color: var(--secondary-color);
  margin-top: -50px;
  transition: 0.3s ease;
}
.testimonials-section .swiper-slide-button:hover {
  color: var(--primary-color);
}
/*Common css for all banner hero section */
.bannerBox{
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(37, 37, 37, 0.5), rgba(108, 53, 48, 0.5));
}
.bannerBox .section-content {
  justify-content: center;
  min-height: auto;
  width: 100%;
  color: var(--white-color);
}
.bannerBox .hero-details {
  text-align: center;
  position: relative;
  width: 100%;
}
.bannerBox .hero-details .title{
  font-size: var(--font-size-xxxl);
  font-weight: bold;
}
.bannerBox .hero-details .subtitle{
  max-width: 100%;
  margin: auto;
  font-size: var(--font-size-lg);
}

/* Gallery section styling */
.gallery.hero-section {
  background: var(--primary-color) url("../images/gallerybg.jpg")no-repeat center;
  background-size: cover;
}
.gallery-section {
  padding: 50px 0;
  text-align: center;
}
.gallery-section .gallery-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery-section .gallery-list .gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-m);
  width: calc(100% / 3 - 30px);
  height: 300px;
}
.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: 0.5s ease;
  object-fit: cover;
}
.gallery-section .gallery-item:hover {
  box-shadow: var(--img-shadow);
}
.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.2);
}
/*gallery popup css*/
.magnific-img img {
  width: 100%;
  height: auto;
}
.magnific-img {
  display: inline-block;
  width: 32.3%;
}
a.image-popup-vertical-fit {
  cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
  border-right: none !important;
}
.mfp-arrow-right:before {
  border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
  opacity: 0 !important;
  transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: var(--dark-color);
  opacity: 0.8; 
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; 
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; 
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; 
}
.mfp-align-top .mfp-container:before {
  display: none; 
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; 
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; 
}
.mfp-ajax-cur {
  cursor: progress; 
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; 
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; 
}
.mfp-auto-cursor .mfp-content {
  cursor: auto; 
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; 
}
.mfp-loading.mfp-figure {
  display: none; 
}
.mfp-hide {
  display: none !important; 
}
.mfp-preloader {
  color: var(--medium-gray-color);
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; 
}
.mfp-preloader a {
  color: var(--medium-gray-color); 
}
.mfp-preloader a:hover {
  color: var(--white-color); 
}
.mfp-s-ready .mfp-preloader {
  display: none; 
}
.mfp-s-error .mfp-content {
  display: none; 
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; 
}
button.mfp-close::-moz-focus-inner,
button.mfp-arrow::-moz-focus-inner {
  padding: 0;
  border: 0; 
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: var(--white-color);
  font-style: normal;
  font-size: 28px;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; 
}
.mfp-close:active {
  top: 1px; 
}
.mfp-close-btn-in .mfp-close {
  color: var(--dark-color); 
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: var(--white-color);
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; 
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--medium-gray-color);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; 
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; 
}
.mfp-arrow:active {
  margin-top: -54px; 
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; 
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; 
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; 
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; 
}
.mfp-arrow-left {
  left: 0; 
}
.mfp-arrow-left:after {
  border-right: 17px solid var(--white-color);
  margin-left: 31px; 
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid var(--dark-color); 
}
.mfp-arrow-right {
  right: 0; 
}
.mfp-arrow-right:after {
  border-left: 17px solid var(--white-color);
  margin-left: 39px; 
}
.mfp-arrow-right:before {
  border-left: 27px solid var(--dark-color); 
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; 
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; 
}
.mfp-iframe-holder .mfp-close {
  top: -40px; 
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; 
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px var(--dark-shadow);
  background: var(--dark-color);
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; 
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0; 
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px var(--dark-shadow);
  background: var(--dark-color); 
}
.mfp-figure small {
  color: var(--dark-color);
  display: block;
  font-size: 12px;
  line-height: 14px; 
}
.mfp-figure figure {
  margin: 0; 
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; 
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: var(--medium-gray-color);
  word-wrap: break-word;
  padding-right: 36px; 
}
.mfp-image-holder .mfp-content {
  max-width: 100%; 
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; 
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
  * Remove all paddings around the image on small screen
  */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; 
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0; 
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; 
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; 
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: var(--dark-shadow);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; 
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; 
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; 
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--dark-shadow);
    position: fixed;
    text-align: center;
    padding: 0; 
  } 
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); 
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; 
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; 
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; 
  } 
}

/* Franchise section styling */
.franchise.hero-section {
  background: var(--primary-color) url("../images/franchisebg.jpg")no-repeat center;
  background-size: cover;
}
.franchise-section {
  padding: 50px 0;
}
.franchise-section .franchise-form {
  max-width: 100%;
  padding: 10px;
  overflow: hidden;
}
.franchise-section .franchise-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  outline: none;
  margin-bottom: 16px;
  font-size: var(--font-size-md);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--dark-color);
}
.franchise-section .franchise-form textarea.form-input {
  height: 100px;
  padding: 15px;
  resize: vertical;
}
.franchise-section .franchise-form .form-input:focus {
  border-color: var(--secondary-color);
}

/* Contact section styling */
.contact.hero-section {
  background: var(--primary-color) url("../images/contactbg.jpg")no-repeat center;
  background-size: cover;
}
.contactBox {
  padding: 50px;
}
.contactBox .section-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.contactBox .subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
}
.contactBox .section-content .button{
  min-width: 150px;
}
.contact-map {
  position: relative;
  width: 100%;
  height: 350px;
  border: 3px solid var(--primary-color);
  margin: 0;
}
.contact-section {
  padding: 50px 0;
}
.contact-section .contact-info-list {
  max-width: 100%;
}
.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 0 0 20px 0;
  align-items: center;
}
.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-lg);
}
.contact-section .contact-info-list .contact-info a {
  color: var(--dark-color);
}
.contact-section .contact-info-list .contact-info a:hover {
  color: var(--secondary-color);
}

/* policy section styling */
.termscondition.hero-section {
  background: var(--primary-color) url("../images/termsbg.jpg")no-repeat center;
  background-size: cover;
}
.refundpolicy.hero-section {
  background: var(--primary-color) url("../images/refundbg.jpg")no-repeat center;
  background-size: cover;
}
.notfound-page.hero-section {
  background: var(--primary-color) url("../images/aboutbg.jpg") no-repeat center;
  background-size: cover;
}
.notfound-page .hero-details .error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  margin: 0 0 10px 0;
  font-family: var(--heading-font);
}
.notfound-page .hero-details .subtitle {
  max-width: 700px;
}
.notfound-page .notfound-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.notfound-page .notfound-actions .button.outline {
  background: transparent;
  border: 2px solid var(--white-color);
}
.notfound-page .notfound-actions .button.outline:hover {
  background: var(--white-color);
  color: var(--dark-color);
}
.policy-section {
  padding: 50px 0;
  background: var(--white-color);
}
.policy-details{
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.policy-section .section-title{
  padding: 0 0 20px 0;
  text-align: left;
  display: inline-block;
}
.policy-section .section-title::after{
  width: 40%;
}
.policy-section .subtitle{
  padding-bottom: 10px;
  margin: 0;
  text-align: left;
  text-transform: none;
  font-size: var(--font-size-lg);
}
.policy-section ul{
  list-style: disc;
  padding-bottom: 20px;
  padding-left: 20px;
}
.policy-section .text{
  padding: 0 0 40px 0;
}
.policy-section a{
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.policy-section a:hover{
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}
/* Footer section styling */
.footer-section {
  padding: 20px 0;
  background: var(--primary-color);
}
.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--white-color);
  transition: 0.2s ease;
  font-size: var(--font-size-xs);
}
.footer-section p > * {
  color: var(--white-color); 
  font-size: var(--font-size-xs);
}
.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}
.footer-section .social-link-list .social-link {
  font-size: var(--font-size-lg);
  color: var(--white-color);
}
.footer-section .social-link-list .social-link i {
  color: var(--white-color);
}
.footer-section .social-link-list .social-link:hover i,
.footer-section .policy-text .policy-link:hover {
  color: var(--secondary-color);
}
.footer-section .policy-text .separator {
  color: var(--white-color);
  margin: 0 5px;
}

/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-xs: 0.875rem; /*14px*/
    --font-size-sm: 1rem; /*16px*/
    --font-size-md: 1.125rem; /*18px*/
    --font-size-lg: 1.375rem; /*22px*/
    --font-size-xl: 1.625rem; /*26px*/
    --font-size-xxl: 2rem;  /*32px*/
    --font-size-xxxl: 3rem; /*48px*/
  }
  .show-mobile-menu {
    overflow: hidden;
  }
  .show-mobile-menu header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: var(--dark-shadow);
  }
  .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: var(--font-size-lg);
    display: block;
  }
  .navbar :is(#menu-open-button, #menu-close-button):hover {
    color: var(--secondary-color) !important;
  }
  .navbar #menu-open-button {
    color: var(--white-color);
  }
  .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .navbar .nav-menu {
    display: block;
    background: var(--white-color);
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 20px;
    padding-top: 60px;
    transition: left 0.2s ease;
  }
  .show-mobile-menu .nav-menu {
    left: 0;
  }  
  .show-mobile-menu #menu-open-button {
    display: none;
  }
  .navbar .nav-menu .nav-link {
    display: block;
    margin-top: 0;
    padding: 10px 20px;
    color: var(--dark-color);
    font-size: 24px;
  }
  .home.hero-section .section-content {
    text-align: center;
    gap: 50px;
    padding: 30px 20px 20px;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .hero-section .hero-details .buttons {
    justify-content: center;
  }
  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
  }
  .hero-section .swiper-slide .section-content{
    padding: 30px 0 20px;
  }
  .hero-section .hero-details{
    padding: 120px 60px 20px;
  }
  .about-section .about-details {
    max-width: 80%;
  }
  .about-section .section-content {
    gap: 30px;
    flex-direction: column-reverse;
  }
  .ourFounders .foundersInner{
    margin-bottom: 30px;
  }
  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    max-width: 500px;
  }
  .bannerBox .hero-details .subtitle{
    max-width: 80%;
  }
  .mainMenu.hero-section .hero-details .subtitle {
    max-width: 100%;
  }
  .gallery-section .gallery-list {
    gap: 30px;
  }
  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }
  .contactBox{
    padding: 30px;
  }
  .contact-section .section-content {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .footer-section .section-content{
    flex-direction: column;
  }
  #megamenu .menuList{
    order: 2;
    margin-top: 20px;
  }
  .menu-section .swiper-slide {
    width: 200px;
  }  
  .navbar .nav-logo .logo {
    max-width: 130px;
  }
}
/* Responsive media query code for max width 767px */
@media screen and (max-width: 767px) {
  :root {
    --font-size-xs: 0.75rem; /*12px*/
    --font-size-sm: 0.875rem; /*14px*/
    --font-size-md: 1rem; /*16px*/
    --font-size-lg: 1.125rem; /*18px*/
    --font-size-xl: 1.5rem; /*24px*/
    --font-size-xxl: 1.75rem;  /*28px*/
    --font-size-xxxl: 2rem; /*32px*/
  }
  .hero-section .hero-details {
    padding: 100px 30px 30px;
  } 
  .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details, .franchise-section .franchise-form {
    max-width: 100%;
  }
  .hero-section .hero-details .description {
    max-width: 100%;
    margin: 15px 0;
  } 
  .navbar .nav-logo .logo {
    max-width: 100px;
  }
  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }
  .testimonials-section .slider-wrapper {
    margin: 0 0 30px;
  }
  .testimonials-section .swiper-slide-button {
    display: none;
  }
  .contactBox .section-content{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .OutletAddress{
    order: 2;
  }
  .OutletMap{
    order: 1;
    margin-bottom: 30px;
  }
  .footer-section .section-content {
    flex-direction: column;
    gap: 5px;
  }
  .footer-section :where(.copyright-text, .social-link, .policy-link) {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --font-size-xs: 0.75rem; /*12px*/
    --font-size-sm: 0.875rem; /*14px*/
    --font-size-md: 1rem; /*16px*/
    --font-size-lg: 1.125rem; /*18px*/
    --font-size-xl: 1.5rem; /*24px*/
    --font-size-xxl: 1.625rem;  /*26px*/
    --font-size-xxxl: 1.75rem; /*28px*/
  }
  .hero-section .hero-details .title{
    line-height: 1.1;
    margin: 0;
  }
  .hero-section .hero-details .description {
    margin: 10px 0;
    line-height: 1.25;
  }
}
@media screen and (max-width: 480px) {
  .bannerBox{
    min-height: auto;
  } 
  .hero-section .hero-details {
    padding: 100px 20px 40px;
  }
  .hero-section, .hero-section .section-content{
    min-height: auto;
  }
  .hero-section .swiper-container{
    height: auto;
  }
  .hero-section .swiper-slide .section-content {
    padding: 0;
  }
  .hero-section .hero-image{
    height: 67vh;
	object-fit: cover;

  }
  .hero-section .hero-details .title, .section-title{
    font-size: var(--font-size-xl);
  }
  .bannerBox .hero-details .subtitle{
    font-size: var(--font-size-md);
  }
  .navbar .nav-logo .logo {
    max-width: 90px;
  }
  .navbar .nav-logo{
    left: 15px;
  }
  .gallery-section .gallery-list .gallery-item {
    width: 100%;
  }
}
