body, html {
    height: 100%;
    margin: 0;
    font-family: "Noto Sans", sans-serif;;
  }
  ::selection{
    background-color: #fcc100;
    color: black;
  }
  .navbar .nav-link{
    color: white;
  }
  #logo{
    position: relative;
    top:25px;
    width:90px;
  }
  .header {
    position: fixed;
    width: 100%;
    height:100px;
    top: 0;
    z-index: 2000;
    transition: all 0.3s ease-in-out;
}
.header.shrink {
    background-color: beige;
    padding: 2px 0;
    height: 80px;
}
.navbar {
    transition: box-shadow 0.3s ease-in-out;
    height:70px;
}
.navbar > .container-fluid{
  margin-top:-38px;
}
.indexpg > .navbar-toggler{
  position: relative;
  top:25px;
  color: #ffffff;
  border-color: #ffffff; 
  background-color: #ffffff;
}
.indexpg > .navbar-toggler{
  margin-top:-38px;
}
.indexpg > .navbar-toggler-icon {
  filter: invert(1); /* or use a white icon */
}
.indexpg > .navbar-toggler:hover,
.indexpg > .navbar-toggler:focus {
  color: #ffffff; 
  border-color: #ffffff;
  background-color: #ffffff; 
}
.header .navbar-brand img {
  transition: transform 0.3s;
}
.header.shrink .navbar-brand img {
  transform: scale(0.7);
  margin-bottom:33px;
}
.header.shrink .navbar .nav-link{
  color: black;
}
.marquee-container {
  display: none;
  background-color: white;
  padding: 10px 10px;
  margin:-25px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: 0 4px 6px 3px rgba(0, 0, 0, 0.027), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width:100%;
}
.balance-bite{
    /* color: #9b7806; */
    color: #000000;
    font-family:'Lora';
    font-weight: bold;
    font-size:1.20rem;
    display: inline-block;
    animation: marquee 14s linear infinite;
    font-style:italic;
}
@keyframes marquee {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(1200px);
  }
}
.header.shrink .marquee-container {
  display: block;
}
.marquee-text span img{
  width:35px;
}
/*******************************
-- Hero section
********************************/
  .hero-content-div h1{
    font-size: 3.8rem;
    font-family: "Lora", serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); 
  }
  .hero-content-div p{
    font-size: 1.2rem;
    /* font-family: "Lora", serif; */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-image: url('../images/bg1.jpg');
    transition: background-image 5s;
    position: relative;
  }
  
  .hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.178);
    z-index: 1;
  }
  .hero h1 span {
    color: #fcc100;
  }
  .hero .container {
    position: relative;
    z-index: 2;
  }
  .btn-success {
    background-color:#fcc100;
    border-color:#fcc100;
  }
  
  
/* How It Works Section */
.how-works {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  .how-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .how-works-item {
    margin-bottom: 30px;
  }
  
  .how-works-icon {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    filter: hue-rotate(285deg);
  }
  
  .how-works h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .how-works-first-para{
    position: relative;
    top:10px;
  }
  .how-works p {
    width:300px;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
  }
  .how-works-item {
    position: relative;
    padding: 25px 30px;
    height:300px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .how-works-item:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.how-works-item:hover .border-animation::before,
.how-works-item:hover .border-animation::after {
  content: '';
  position: absolute;
  height: 2px;
  background: #fcc100;
  animation: animate-border 1s linear forwards;
}

.how-works-item:hover .border-animation::before {
  top: 0;
  left: 0;
  width: 100%;
  animation-delay: 0.5s;
}

.how-works-item:hover .border-animation::after {
  bottom: 0;
  right: 0;
  width: 100%;
  animation: animate-border-reverse 1s linear forwards;
}

@keyframes animate-border {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes animate-border-reverse {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* Menu Categories Section */
.menu-categories {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.menu-categories h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.btn-group {
  margin-bottom: 40px;
}

.btn-custom {
  border: 1px solid #fcc1009a;
  background-color: white;
  filter:drop-shadow(2px 5px 6px rgba(0, 0, 0, 0.158));
  color: black;
  border-radius: 50px;
  margin: 10px;
  font-size:14px;
  padding:10px;
  width:160px;
}
.active-menu{
  background-color: #fcce00fd;
  border: 1px solid #fcc100;
  color: black;
}
.btn-custom:hover{
  background-color: #fcce00fd;
  border: 1px solid #fcc100;
  color: black;
}

.menu-category-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.recipe-details h5{
  font-size:18px;
}
.menu-category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-category-item:hover {
  transform: scale(1.05);
}

.recipe-details {
  text-align: center;
  margin-top: 10px;
}
#menu-images{
  display: flex;
  justify-content: center;
}
.read-more-btn {
  display: inline-block;
  padding: 7px;
  background-color: #f6cf34d2;
  color: black;
  text-decoration: none;
  font-size:15px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #dfa404;
  text-decoration: none;
  color: black;
}
/*********newsletter*******/

.contact-us {
  padding: 50px 0;
}

.contact-us .container {
  display: flex;
  align-items: center;
}

.contact-us img {
  border-radius: 8px;
  max-width: 100%;
  height:367px;
}
.imagediv-queries{
  padding: 23px;
}
.contact-us .text-content {
  background-color: #fcc100;
  padding:90px;
  height:auto;
  border-radius: 8px;
  color: white;
}

.contact-us .text-content h2 {
  font-size: 1.95rem;
  margin-bottom: 20px;
  font-family:'lora';
}

.contact-us .btn-instagram {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  color: #fcc100;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}

.contact-us .btn-instagram i {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .contact-us .row {
    flex-direction: column;
  }

  .contact-us .text-content {
    margin-top: 20px;
  }
}
/********new*************/
.order-buttons {
  padding: 50px 0;
 background-image: url("../images/bg6.jpg");
 background-size: contain;
 background-attachment: fixed;
}

.order-buttons .container {
  display: flex;
  justify-content: center;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background-color: white;
  border:1px solid #fcc100;
  color: black;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  margin: 5px;
  transition: background-color 0.3s;
}
.btn-order:hover {
  background-color: #ffffff;
  color:black;
}
.orderbtn-online{
  width: 100%;
  display: flex;
}
.swiggydiv{
  width:270px;
}
.logo {
  margin-right: 5px;
 width:40px;
  height:24px;
}
.swiggy{
  width:150px;
  height:30px;
}
.zomato{
  width:80px;
  height:35px;
  margin-left:20px;
  margin-top:-5px;
}
.fatafat{
  width:100px;
  height:35px;
  margin-left:20px;
  margin-top:-5px;
}
@media (max-width: 767px) {
  .order-buttons .container {
    flex-direction: column;
  }
}
/*********contact*********/

.contact-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #777;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #FFD700;
  padding: 25px;
}

.contact-form .btn {
  background-color: #FFD700;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #FFC700;
}

.contact-info {
  background-color: #fff;
  padding: 85px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 6px rgba(0, 0, 0, 0.041);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family:'inter';
}

.contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.contact-info p i {
  
  color: black;
  margin-right: 10px;
}

.contact-info .social-icons {
  margin-top: 20px;
}

.contact-info .social-icons a {
  font-size: 1.25rem;
  color: black;
  margin-right: 15px;
  transition: color 0.3s ease;
  padding:10px 15px;
  background-color:#ffd90069;
  border:1px solid #FFD700;
  border-radius:50px;
}
.contact-info .social-icons a:hover{
  background-color:  #FFD700;
  color: black;
}
.contact-info .social-icons a:hover .fab{
  transform:rotate(360deg);
  transition-duration: 1s;
}
.contact-info .social-icons .fab{
  transition-duration: 1s;
}
@media (min-width: 768px) {
  .contact-form,
  .contact-info {
    height: auto;
  }
}
 .subscribe-common-div{
  width:100%;
 display: flex;
 justify-content: center;
 grid-gap:10px;
 }
.subscribediv {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  color: black;
  flex-direction: column;
  margin-bottom:50px;
  width:350px;
  height:auto;
}

.subscription-background-image {
  background-image: url('../images/subscribe-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000000;
}
.subscription-profile-image {
  margin: 20px auto;
  background-size: cover;
  background-position: center;
}

.subscribe-heading {
  margin-bottom: 10px;
  font-size:35px;
  font-family:"dancing script",sans-serif;
}

.subscription-background-image-content p {
  font-size: 16px;
  color: #666;
  text-align: center;
  padding:20px 0;
}

.subscription-contact-button {
    background-color: #FFC700; 
    color:black;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-contact-button:hover {
  background-color: #f8b117;
}

/* Animations */
.subscribediv {
  animation: fade-in 1s ease;
}

@keyframes fade-in {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.subscription-background-image, 
.subscription-profile-image {
  animation: zoom-in 1s ease;
}

@keyframes zoom-in {
  0% {
      transform: scale(0.5);
  }
  100% {
      transform: scale(1);
  }
}
.pricing-div{
  background-color: #f9f9f9;
  padding:30px 0;
}
.pricing-div h1{
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #333;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding:30px 0;
  /* background-image: url("../images/subscribe-bg.webp"); */
 
}
.pricing-table h1 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #333;
}

.pricing-plan {
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  border-radius: 12px;
  text-align: center;
  padding: 25px;
  width: 300px;
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border:1px solid rgba(122, 122, 122, 0.295);
}

.pricing-plan:hover {
  transform: translateY(-10px);
}

.icon img {
  width: 150px;

}
.pricing-plan h2 {
  font-size: 20px;
  font-family: 'Inter',sans-serif;
  margin: 15px 0;
  color: #333;
}

.pricing-plan p {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}
.pricing-plan .contact-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: black;
  background-color: #fcc100;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #ffd000;
}
@media (max-width: 768px) {
  .pricing-plan {
      width: 100%;
      max-width: 400px;
  }
}
/*****footer*********/

.footer-section {
  background-color: #333;
  padding:25px 0 15px 0;
  color: #fff;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #FFD700;
  font-family:'inter';
}
.footer-title + p{
  font-family:'inter';
  font-size:0.9rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family:'inter';
}

.footer-links a:hover {
  color: #FFC700;
}

.social-icons a {
  font-size: 1rem;
  color: white;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFC700;
}

.footer-copy {
  margin-top: 40px;
  font-size: 0.875rem;
  color: #777;
}
hr{
  border:0.5px solid rgba(255, 255, 255, 0.068);
}
/*******************
----About us
********************/
.hero-about{
  height: 80vh;
  background-size: cover;
  background-position: left 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #242323;
  text-align: center;
  background-image: url('../images/about-cover2.jpg');
  transition: background-image 5s;
  position: relative;
}
.About-hero-content-div h1{
  font-size: 3.8rem;
  /* font-family: "Lora", serif; */
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.About-hero-content-div p{
  font-size: 1.2rem;
  /* font-family: "Lora", serif; */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.aboutus-section {
  width: 100%;
  margin: 20px auto;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}

.aboutus-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-contact-addr2{
  padding:0 20px;
}
.reverse .aboutus-content {
  flex-direction: row-reverse;
}

.aboutus-text-section {
  flex: 1;
  padding: 40px;
}
.aboutus-title{
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333333c2;
  font-family: "poppins",sans-serif;
  padding:40px;
}
.aboutus-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-family: "inter",sans-serif;
}

.aboutus-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "inter",sans-serif;
}

.aboutus-image-section {
  flex: 1;
  text-align: center;
}

.aboutus-image-section img {
  max-width: 80%;
  border-radius: 10px;
}
.aboutus-team-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.aboutus-team-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.aboutus-team-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutus-team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.aboutus-team-img {
  width: 50%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.aboutus-team-card:hover .aboutus-team-img {
  transform: scale(1.1);
}

.aboutus-team-info h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'inter',sans-serif;
}

.aboutus-team-info p {
  font-size: 1rem;
  color: #666;
}

.aboutus-diet-list {
  list-style: none;
  padding-left: 0;
}
.aboutus-diet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #666;
}

.aboutus-diet-list li::before {
  content: '\f2e7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
}

.reverse .aboutus-text-section, .reverse .aboutus-image-section {
  text-align: right;
}

/**************************************
---- menu details.html
**************************************/
.menu-details-header #logo{
    margin-right: 5px;
   width:80px;
    height:80px;

  }
.menu-details-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height:auto;
  padding-top: 130px;
}

.menu-title-div {
  display: flex;
  flex-direction: column;
  width: 48%;
}
.menu-title-div h1{
  font-size:30px;
  font-family: 'Inter',sans-serif;
  color: rgb(90, 90, 90);
}
.menu-title-div p{
  font-size:25px;
  font-family: 'Noto-sans',sans-serif;
  color: rgb(90, 90, 90);
}
.menu-title-div h1, 
.menu-title-div img, 
.menu-title-div p {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .menu-details-div {
      flex-direction: column;
      align-items: center;
  }

  .menu-title-div, .orderbtn-online {
      width: 100%;
  }
}

.orderbtn-online-div-menu {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.orderbtn-online-div-menu .sz-order {
  margin-bottom: 20px;
}

.orderbtn-online-div-menu .btn-order {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #080808;
  background-color: #FFC700;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  border: 1px solid orange;
  transition: box-shadow 0.3s ease;
}

.orderbtn-online-div-menu .btn-order img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.orderbtn-online-div-menu .btn-order:hover {
  background-color: #eb9604;
  box-shadow:2px 2px 10px rgba(0, 0, 0, 0.36);
  transition: box-shadow 0.3s ease;
}

.orderbtn-online-div-menu .back-to-menu {
  margin-top: 20px;
  text-align: center; 
}
.back-to-menu a{
  color: rgb(0, 145, 255);
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .menu-details-div {
      flex-direction: column;
      align-items: center;
  }

  .menu-title-div, .orderbtn-online-div-menu .orderbtn-online {
      width: 100%;
  }
}

 /* Modal Styles */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgb(0,0,0); 
            background-color: rgba(0,0,0,0.4); 
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; 
            padding: 20px;
            border: 1px solid #888;
            width: 100%; 
            max-width: 500px;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* Form Styles */
        .contact-form {
            max-width: 600px;
            margin: auto;
            padding: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }

        .btn-primary {
            background-color: #007bff;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
        }