@font-face {
  font-family: "bodoni svtytwo sc itc tt book";
  src: url(../fonts/bodoni-svtytwo-sc-itc-tt-book.ttf);
}

body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  background-image: url(../images/body-bg.webp);
  background-size: cover;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  font-size: 2.5rem;
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  font-family: "bodoni svtytwo sc itc tt book", sans-serif;
  font-weight: 400;
  padding-bottom: 7px;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 75px;
  height: 5px;
  background-color: #ff5a00;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.box-img {
  width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url(../images/hero-bg.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.sub_page .hero_area {
  background-size: cover;
  background-position: top;
}

.header_section {
  padding: 15px 0;
}

.custom_nav-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
}

/*end header section*/ /* ===== Navbar Section Styling ===== */
.nav-logo {
  height: 80px;
  transition: all 0.3s ease;
}

.navbar-section {
  background: linear-gradient(135deg, #ff8c00, #ffbe33);
  padding: 10px 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-section .navbar-brand {
  font-size: 1.3rem;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-section .nav-logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.navbar-section .nav-logo:hover {
  transform: scale(1.05);
}

.navbar-section .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-section .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.navbar-section .nav-link:hover::after {
  width: 100%;
}

.navbar-section .nav-link:hover {
  color: #222 !important;
}

/* ===== Sticky scroll effect ===== */
.navbar-section.sticky {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.navbar-section.sticky .nav-link {
  color: #333 !important;
}

.navbar-section.sticky .nav-link::after {
  background-color: #ff8c00;
}

.navbar-section.sticky .navbar-brand span {
  color: #ff8c00 !important;
}
/* ===== Remove Dropdown Arrow ===== */
.navbar .dropdown-toggle::after {
  content: none !important;
  border: none !important;
}
@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    font-weight: 400;
    border: 0;
    transition: 0.5s;
    opacity: 0;
    background: #ffffff !important;
    border-radius: 10px;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
    background: #ffffff !important;
    border-radius: 10px;
  }
  .dropdown .dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
  }
  .dropdown .dropdown-menu .dropdown-item:hover {
    background: #f2f2f2 !important;
    color: #ff8c00 !important;
  }
}
@media (max-width: 1199px) {
  /* default hidden */
  .navbar .dropdown-menu {
    display: none !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border-radius: 10px !important;
  }
  .navbar .dropdown.show > .dropdown-menu,
  .navbar .dropdown-menu.show {
    display: block !important;
  }
  .navbar .dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
  }
  .navbar .dropdown-menu .dropdown-item:hover,
  .navbar .dropdown-menu .dropdown-item:active {
    background: #f7f7f7 !important;
    color: #ff8c00 !important;
  }
}
/* ===== Responsive Navbar Styles ===== */
@media (max-width: 991px) {
  .navbar-section {
    padding: 10px 15px;
  }

  .navbar-section .nav-logo {
    height: 38px;
  }

  .navbar-section .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-section.sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff8c00' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-collapse {
    background: linear-gradient(135deg, #ff8c00, #ffbe33);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
    z-index: 1040;
  }

  .navbar-section .nav-link {
    display: block;
    text-align: center;
    margin: 10px 0;
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
  }

  .navbar-section .nav-link:hover,
  .navbar-section .nav-link:active {
    color: #ff8c00 !important;
  }

  .navbar-section .nav-link::after {
    display: none;
  }
}

/* ===== Extra Small Screens ===== */
@media (max-width: 576px) {
  .navbar-section .nav-logo {
    height: 32px;
  }

  .navbar-section .navbar-brand span {
    font-size: 1rem;
  }

  .navbar-section .nav-link {
    font-size: 0.95rem;
  }
}
/* product-section */
.gp5-section {
  color: #fff;
  text-align: center;
  margin-top: 100px;
}

.gp5-detail {
  font-family: "Poppins", sans-serif;
}

.gp5-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff, #fff3c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gp5-typewriter {
  font-size: 2rem;
  color: #ffeb3b; /* bright yellow */
  display: inline-block;
  border-right: 3px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: gp5typing 3s steps(30, end), gp5blink 0.6s step-end infinite;
  margin-bottom: 10px;
}

@keyframes gp5typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes gp5blink {
  50% {
    border-color: transparent;
  }
}

.gp5-description {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.gp5-food-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gp5-food-list span {
  display: inline-block;
  margin: 10px 12px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.gp5-food-list span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gp5-title {
    font-size: 4rem;
  }
  .gp5-typewriter {
    font-size: 1.6rem;
  }
  .gp5-row {
    padding-top: 90px;
  }
}

@media (max-width: 768px) {
  .gp5-title {
    font-size: 3rem;
  }
  .gp5-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  .gp5-row {
    padding-top: 50px;
  }
}

@media (max-width: 576px) {
  .gp5-title {
    font-size: 2.4rem;
  }
  .gp5-typewriter {
    font-size: 1.3rem;
  }
  .gp5-food-list span {
    font-size: 1rem;
    padding: 10px 20px;
    margin: 6px;
  }
  .gp5-row {
    padding-top: 50px;
  }
}
/* slider section-index*/
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 425px;
  position: relative;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: #ffffff;
  text-align: center;
}
.slider_section .detail-box h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "bodoni svtytwo sc itc tt book", sans-serif;
  font-weight: 400;
}
.slider_section .detail-box h1 span {
  color: #4855fe;
}
.slider_section .find_container .form-row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.slider_section .find_container form .form-group {
  margin: 15px 0;
}
.slider_section .find_container form .form-control {
  width: 100%;
  background-color: transparent;
  border: none;
  height: 45px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  padding: 0 15px;
  background-color: #ffffff;
  border-radius: 45px;
  position: relative;
}
.slider_section .find_container form .location_icon {
  position: absolute;
  right: 25px;
  top: 10px;
  color: #eaeae8;
}
.slider_section .find_container form .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider_section .find_container form .btn-box button.btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffe537;
  color: #000000;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffe537;
  outline: none;
  text-transform: uppercase;
}
.slider_section .find_container form .btn-box button.btn:hover {
  background-color: transparent;
  color: #ffe537;
}
.slider_section .slider_container {
  margin-top: 150px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}
.slider_section .slider_container .slick-list {
  width: 90%;
  margin: auto;
}
.slider_section .slider_container .img-box {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}
.slider_section .slider_container .img-box img {
  width: 150%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.slider_section .slider_container .img-box img:hover {
  transform: translateX(-50%) scale(1.05);
}
.slider_section .slider_container .slick-active .img-box {
  margin-top: 30px;
}
.slider_section .slider_container .slick-active + .slick-active .img-box {
  margin-top: 0;
}

.slider_section
  .slider_container
  .slick-active
  + .slick-active
  + .slick-active
  .img-box {
  margin-top: 0;
}

.slider_section
  .slider_container
  .slick-active
  + .slick-active
  + .slick-active
  + .slick-active
  .img-box {
  margin-top: 45px;
}

.slider_section .slider_container .slick-prev,
.slider_section .slider_container .slick-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #ffe537;
  border-radius: 100%;
  font-size: 12px;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  outline: none;
  position: absolute;
  top: 70%;
  margin: 0;
}

.slider_section .slider_container .slick-prev:hover,
.slider_section .slider_container .slick-next:hover {
  background-color: #4855fe;
  color: #ffffff;
}

.slider_section .slider_container .slick-prev {
  left: 45px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.slider_section .slider_container .slick-prev:after {
  content: "\f060";
  font-family: "FontAwesome";
}

.slider_section .slider_container .slick-next {
  right: 45px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.slider_section .slider_container .slick-next:after {
  content: "\f061";
  font-family: "FontAwesome";
}

@media (max-width: 991px) {
  .slider_section .slider_container .img-box img {
    width: 120%;
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
  }

  .slider_section .slider_container .slick-prev,
  .slider_section .slider_container .slick-next {
    top: 72%;
  }
}

@media (max-width: 576px) {
  .slider_section .slider_container .img-box img {
    width: 110% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .slider_section .slider_container .slick-prev,
  .slider_section .slider_container .slick-next {
    top: 70% !important;
    z-index: 10 !important;
    position: absolute !important;
  }

  .slider_section .slider_container .slick-prev {
    left: 8px !important;
  }

  .slider_section .slider_container .slick-next {
    right: 8px !important;
  }

  .slider_section .slider_container .slick-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
/* about-us-section-index */
.about_section {
  background: #222831;
  color: #ffffff;
}
.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about_section .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #e69c00;
}

@media (max-width: 768px) {
  .about_section .detail-box {
    text-align: center !important;
  }

  .about_section .heading_container {
    text-align: center !important;
    width: 100%;
    display: block;
  }
  .about_section .heading_container h2 {
    font-size: 2rem;
    display: inline-block;
  }

  .about_section .detail-box p {
    font-size: 1rem;
    padding: 0 15px;
    text-align: center;
  }

  .about_section .detail-box a {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
  }

  .about_section .img-box {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
  }
}

/* product-section-index */
.food_section {
  padding: 80px 0;
  background-color: #fff;
}

.food_section .heading_container h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #222831;
  font-size: 2.2rem;
  text-align: center;
}

.food_section .filters_menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
  font-weight: 500;
  color: #222831;
  transition: all 0.3s ease;
}

.food_section .filters_menu li:hover,
.food_section .filters_menu li.active {
  background-color: #4a000e;
  color: #ffffff;
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #4a000e 25px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.food_section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.food_section .box .img-box {
  background: #f1f2f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}
.food_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  transition: all 0.3s ease;
}
.food_section .box:hover .img-box img {
  transform: scale(1.1);
}

.food_section .box .detail-box {
  padding: 25px;
  color: #fff;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.food_section .box .detail-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
  font-size: 1rem;
  color: #ffbe33;
}

.food_section .box .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ffbe33;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.food_section .box .options a:hover {
  background: #e69c00;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.food_section .btn-box a:hover {
  background-color: #e69c00;
}

@media (max-width: 992px) {
  .food_section .box .img-box {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .food_section .filters_menu li {
    margin: 5px;
  }

  .food_section .box {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .food_section .box .img-box {
    height: 160px;
  }

  .food_section .box .detail-box {
    padding: 20px;
  }

  .food_section .btn-box a {
    padding: 10px 35px;
    font-size: 14px;
  }
}
/* Testimonial Area Styling-index */
.testimonial-area {
  background: #222831;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.testimonial-subtitle {
  opacity: 0.9;
  margin-bottom: 40px;
}
.testimonial-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 360px;
}
.testimonial-card {
  min-width: 100%;
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0.1;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92); /* transparent white */
  color: #3d0202;
  border-radius: 20px;
  backdrop-filter: blur(10px); /* glass blur effect */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  padding: 50px 35px 120px; /* more bottom padding for image */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 60px; /* more gap before image */
  position: relative;
}

.testimonial-card p::before {
  content: "“";
  font-size: 70px;
  color: #fdfcfa;
  position: absolute;
  top: -50px;
  left: 10px;
  opacity: 0.2;
}

.testimonial-client {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-client img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.testimonial-client img:hover {
  transform: scale(1.05);
}

.testimonial-client h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3f3a04;
}

.testimonial-client span {
  display: block;
  font-size: 0.9rem;
  color: #161111;
}
.testimonial-dots {
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 25px 100px;
    height: auto;
  }

  .testimonial-slider {
    height: 420px;
  }

  .testimonial-client img {
    width: 70px;
    height: 70px;
  }
}

/* ===== Contact Section-index ===== */
.contact-section {
  background: linear-gradient(135deg, #ffbe33, #ff8c00);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-card i {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 8px;
}

.social-links a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #222;
  transform: scale(1.2);
}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.contact-form .form-control {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 12px 15px;
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 5px #fff;
}

.contact-btn {
  background: #fff;
  color: #ff8c00;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #222;
  color: #fff;
  transform: scale(1.03);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .contact-info-card,
  .contact-form {
    padding: 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
/* footer-section */
.footer_container {
  background-image: url(../images/footer-bg.png);
  background-size: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 245px;
  margin-top: -175px;
}
.info_section {
  color: #ffffff;
  padding: 45px 0;
  background-color: #070e6a;
}
.info_section .contact_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 350px;
  margin: auto;
}
.info_section .contact_box a {
  margin: 0 10px;
  font-size: 24px;
  color: #ffffff;
}
.info_section .contact_box a:hover {
  color: #ffe537;
}
.info_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.info_section .social_box a {
  margin: 0 20px;
  font-size: 18px;
  color: #ffffff;
}
.info_section .social_box a:hover {
  color: #ffe537;
}
.info_section .info_links {
  margin: 25px 0;
}
.info_section .info_links ul {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.info_section .info_links ul li {
  list-style-type: none;
  position: relative;
  margin: 0 15px;
}
.info_section .info_links ul li a {
  color: #ffffff;
}
.info_section .info_links ul li a:hover {
  color: #ffe537;
}
/* contact-us-section-in-index */
.get-in-touch {
  background: linear-gradient(135deg, #ff8c00, #ffbe33);
  color: #fff;
  border-radius: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 40px 60px;
  text-align: center;
}

.btn-contactus {
  background-color: #fff;
  color: #ff8c00;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Hover effect for desktop */
.btn-contactus:hover {
  background-color: #222;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Touch effect for mobile */
.btn-contactus:active {
  transform: scale(0.96);
  background-color: #333;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .get-in-touch {
    margin: 30px 15px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .get-in-touch h2 {
    font-size: 1.5rem;
  }

  .get-in-touch p {
    font-size: 0.95rem;
  }

  .btn-contactus {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
/* ===== Fix Hover Effect on Mobile (CSS-only) ===== */
@media (hover: none) and (pointer: coarse) {
  .btn-contactus:focus,
  .btn-contactus:active {
    background-color: #222;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
}
/* contact-us-section-in-index */
/*about-us-page css*/
/* ===== GP5 About Section ===== */
.gp5-about-section {
  text-align: center;
  padding: 100px 20px;
  color: #3d2f1f;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #fff8ef, #ffe4b5);
}

/* ===== Floating Decorative Shapes ===== */
.gp5-about-section::before,
.gp5-about-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite alternate;
  z-index: 1;
}

.gp5-about-section::before {
  top: 10%;
  left: 5%;
}

.gp5-about-section::after {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

/* Floating animation keyframes */
@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-30px);
  }
}

/* ===== Container ===== */
.gp5-about-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== Animated Heading ===== */
.gp5-heading {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #3d2f1f, #b45309, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  animation: fadeUp 1.5s ease-out, shimmer 4s linear infinite;
  background-size: 300%;
  text-transform: uppercase;
  margin-bottom: 25px;
  z-index: 10;
}

/* Heading animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}

/* Animated underline */
.gp5-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffb84d, #b45309);
  border-radius: 2px;
  animation: growLine 1.2s ease-out 0.8s both;
}

@keyframes growLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

/* ===== Description Text ===== */
.gp5-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #f5f1ea;
  margin-bottom: 60px;
}

/* ===== Director Cards ===== */
.gp5-directors {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.director-card {
  width: 260px;
  height: 320px;
  perspective: 1000px;
}

.director-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.director-card:hover .director-inner,
.director-card:active .director-inner {
  transform: rotateY(180deg);
}

.director-front,
.director-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fffaf5cc;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.director-front img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.director-front h3 {
  font-size: 1.2rem;
  margin: 10px 0 4px;
  color: #b45309;
}

.director-front p {
  font-size: 0.95rem;
  color: #5b4636;
}

.director-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #ffe3b3, #ffcc80);
  padding: 25px;
  font-size: 0.95rem;
  color: #3d2f1f;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Responsive (Mobile Animation + Layout) ===== */
@media (max-width: 768px) {
  .gp5-about-section {
    padding: 70px 15px;
  }

  .gp5-heading {
    font-size: 2.2rem;
    letter-spacing: 1px;
    animation: fadeUp 1.5s ease-out, shimmer 4s linear infinite;
  }

  .gp5-description {
    font-size: 1rem;
  }

  .gp5-directors {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .director-card {
    width: 80%;
    max-width: 280px;
    height: 340px;
  }

  /* Keep floating animation active on mobile */
  .gp5-about-section::before {
    width: 90px;
    height: 90px;
    top: 8%;
    left: 10%;
    animation: float 6s ease-in-out infinite alternate;
  }

  .gp5-about-section::after {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 12%;
    animation: float 6s ease-in-out infinite alternate;
  }
}
/* vegetable-pulav */
/* ===== VEGETABLE PULAV PAGE ===== */
.vegetable-pulav-section {
  padding: 100px 20px;
  background: linear-gradient(145deg, #fff8ef, #ffe4b5);
  color: #3d2f1f;
}

.vegetable-pulav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Image */
.vegetable-pulav-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
  animation: float 5s ease-in-out infinite alternate;
}

/* Text Info */
.vegetable-pulav-info {
  flex: 1;
  min-width: 320px;
}

.vegetable-pulav-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #3d2f1f;
  margin-bottom: 10px;
}

.vegetable-pulav-subtitle {
  font-size: 1.3rem;
  color: #b45309;
  margin-bottom: 20px;
}

.vegetable-pulav-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.vegetable-pulav-ingredients h3,
.vegetable-pulav-nutrition h3,
.vegetable-pulav-howto h3 {
  color: #b45309;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Nutrition List */
.vegetable-pulav-nutrition ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

/* How to Use */
.vegetable-pulav-howto ol {
  padding-left: 20px;
  line-height: 1.8;
}

.vegetable-pulav-extra {
  margin-top: 20px;
  font-weight: 600;
  color: #4b3e2b;
}

.vegetable-pulav-backbtn {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #fff;
  background: #b45309;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.vegetable-pulav-backbtn:hover {
  background: #ff9800;
  transform: translateY(-2px);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {
  .vegetable-pulav-container {
    flex-direction: column;
    text-align: center;
  }

  .vegetable-pulav-title {
    font-size: 2.2rem;
  }

  .vegetable-pulav-image img {
    max-width: 320px;
  }

  .vegetable-pulav-backbtn:hover {
    background: #ff9800;
    transform: translateY(-2px);
  }
}
/* =================== Modern Footer Skin (Compatible) =================== */
.footer_section {
  background: linear-gradient(135deg, #0e3c60, #1564a6);
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Light floating shapes */
.footer_section::before,
.footer_section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(2px);
  animation: moveBubble 12s linear infinite;
}

.footer_section::before {
  top: -60px;
  left: -40px;
}

.footer_section::after {
  bottom: -70px;
  right: -40px;
}

@keyframes moveBubble {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-40px) rotate(360deg);
  }
}

/* Titles */
.footer_section h4,
.footer_section h5 {
  font-weight: 700;
}

/* Links */
.footer-item-2 a,
.footer-item-3 a {
  font-size: 15px;
  opacity: 0.9;
  text-decoration: none;
}

.footer-item-2 a:hover,
.footer-item-3 a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
  .footer_section {
    text-align: center;
  }
  .footer-item-1 .d-flex {
    justify-content: center;
  }
}

/* ** Footer Start **
.footer button:hover {
  background: var(--bs-white) !important;
  color: #f6a915 !important;
}

.footer .footer-item-1 .line-h {
  line-height: 38px;
}

.footer .footer-item-1 a i {
  transition: 0.5s;
}

.footer .footer-item-1 a:hover i {
  color: #f6a915 !important;
}

.footer .footer-item-3 a {
  line-height: 38px;
}

.footer .footer-item-2 a {
  transition: 0.5s;
}

.footer .footer-item-2 a:hover {
  color: #f6a915 !important;
}

.footer .footer-item-3 a {
  transition: 0.5s;
}

.footer .footer-item-3 a:hover {
  color: #f6a915 !important;
} */

/*# sourceMappingURL=style.css.map */
