.new-orange-bg {
  background: #EE6926;
}

.dark-orange-bg {
  background: #CC470D;
}

.home-about {
  position: relative;
  height: 100%;
  width: 100%;
}

.banner-bg {
  background: linear-gradient(14deg, #CC470D 67%, #EE6926 67%);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.light-bg {
  background: #F9F6F2;
}

.dark-bg {
  background: #141414;
}

.text-dark-orange {
  color: #CC470D;
}

.text-orange {
  color: #EE6926 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000000 !important;
}

.banner-img {
  width: 60%;
  height: auto;
  position: absolute;
  right: 0;
  top: 100px;
}

.welcome-text {
  font-size: 28px;
  position: absolute;
  top: 10%;
  left: 13%;
}

.welcome-image-logo {
  height: 30px;
  width: auto;
}

.description-text {
  font-size: 18px;
  width: 100%;
}

.kepo-card {
  width: 100%;
  aspect-ratio: 1246 / 607;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
  overflow: hidden;
  border-radius: 20px;
}

.kepo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 40px;
  border-radius: 30px;
  background-color: #000000;
  cursor: pointer;
}

.kepo-next-image {
  height: 14px;
  width: auto;
}

.owl-stage {
  height: 450px;
  width: 180px;
}

.brand-container {
  height: 280px;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  overflow: hidden;
}

.brand-container img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand > .owl-stage-outer > .owl-stage > .owl-item.active.center {
  -webkit-transform: scale(1.32);
  transform: scale(1.32);
}

.owl-item {
  transition: transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
}

.brand > .owl-stage-outer > .owl-stage {
  display: flex;
  align-items: center;
}

.brand > .owl-stage-outer > .owl-stage > .active {
  display: flex;
  justify-content: center;
}

.brand-image {
  height: 100% !important;
  width: auto;
}

.logo-container {
  height: 80px;
  width: 80px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: auto;
  width: 60px !important;
}

.brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.brand-container:hover .brand-overlay {
  opacity: 1;
  transform: scale(1);
}

.brand-container:hover img {
  transform: scale(1.05);
}

.brand-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.brand-overlay p {
  font-size: 14px;
  margin: 0;
}

.brand-overlay-separator {
  height: 1px;
  width: 50%;
  background: #ffffff;
  margin-bottom: 10px;
}

.owl-nav .transparent-nav {
  background: transparent !important; /* Makes the button background transparent */
}

.owl-nav .transparent-nav:hover {
  background: rgba(0,0,0,0.5) !important; /* Optional: adds a slight dark background on hover */
}

.owl-nav-arrow {
  width: 40px; /* Adjust as needed */
  height: 40px; /* Adjust as needed */
  background-color: transparent !important;
}

.owl-prev {
  position: absolute;
  left: 10px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
}

.owl-next {
  position: absolute;
  right: 10px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  outline: none;
  border: none;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: none !important;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 84px;
  height: 32px;
  margin-left: 16px;
  margin-top: 5px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border: 2px solid #fd7e14;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "ENG";
  height: 28px;
  width: 40px;
  left: 0px;
  bottom: 0px;
  background-color: #fd7e14;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
  border-radius: 28px;
}

.slider:after {
  position: absolute;
  content: "IND";
  height: 28px;
  width: 40px;
  right: 0px;
  bottom: 0px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

input:checked + .slider {
  background-color: #fff;
  border-color: #fd7e14;
}

input:checked + .slider:before {
  transform: translateX(42px);
  background-color: #fd7e14;
  content: "IND";
}

input:checked + .slider:after {
  content: "ENG";
  transform: translateX(-42px);
}

/* Ornament */
.ornament-1 {
  position: absolute;
  top: 13%;
  left: 10%;
  height: 24px;
  width: auto;
}

.ornament-2 {
  position: absolute;
  top: 35%;
  right: 10%;
  height: 40px;
  width: auto;
}

.ornament-3 {
  position: absolute;
  bottom: 25%;
  right: 55%;
  height: 28px;
  width: auto;
}

.why-section-image {
  height: 80px !important;
  width: auto;
}

.catering-card {
  margin-top: 150px !important;
  margin-bottom: 100px !important;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
}

.catering-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 40px;
  border-radius: 30px;
  border: 2px solid #EE6926;
  background-color: #F9F6F2;
}

.check-outlet-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 40px;
  background-color: #F9F6F2;
}

.catering-image-container {
  overflow: hidden;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.nomargin-bottom {
  margin-bottom: 0 !important;
}

.more-text {
  bottom: 0
}

.pointer {
  cursor: pointer;
}

.vertical {
  transform: rotate(90deg);
  width: 240px !important;
}

.item-vertical {
  transform: rotate(270deg);
}

.vertical .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: calc(90% - 143px);
  transform: rotate(180deg);
}
div.vertical .owl-nav .owl-prev, div.vertical .owl-nav .owl-next {
    font-size:36px;
    top:unset;
    bottom: 15px;
}

.vertical > .owl-stage-outer {
  width: 240px !important;
}

.vertical > .owl-stage-outer > .owl-stage {
  height: 180px !important;
  display: flex;
  align-items: center;
}

.vertical > .owl-nav {
  margin-top: 16px !important;
}

/* .vertical > .owl-stage-outer > .owl-stage > .owl-item.active {
  width: 100px !important;
} */

.testimony-container {
  padding-top: 200px;
  padding-bottom: 150px;
}

.testimony-content {
  overflow: hidden;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 400px;
  margin-top: -115px;
  position: relative;
  display: flex;
  align-items: center;
}

.testimony-text-container {
  position: absolute;
  left: 50%;
}

.testimony-text {
  width: 70%;
  font-size: 18px;
  color: #000000;
  text-align: center;
}

.user-text {
  width: 70%;
  font-size: 14px;
  color: grey;
  text-align: center;
}

.dish-image {
  height: 87%;
  margin-left: 10px;
}

/* .item-logo {
  width: 160px !important;
} */

.carousel-container {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    top: 0;
    background: linear-gradient(to bottom,
        rgba(248,244,238,1) 0%,
        rgba(248,244,238,0.8) 40%,
        rgba(248,244,238,0) 100%);
}

.carousel-container::after {
    bottom: 0;
    background: linear-gradient(to top,
        rgba(248,244,238,1) 0%,
        rgba(248,244,238,0.8) 40%,
        rgba(248,244,238,0) 100%);
}

.chevron-up {
  transform: rotate(0deg);
}

.chevron-down {
  transform: rotate(180deg);
}

.quote-1 {
  position: absolute;
  top: 55px;
  left: 49%;
  width: 32px;
  height: auto;
}

.quote-2 {
  position: absolute;
  bottom: 45px;
  right: 13%;
  width: 32px;
  height: auto;
}

.review > .owl-stage-outer {
  overflow-y: visible !important;
  overflow-x: clip !important;
}

.review > .owl-stage-outer > .owl-stage {
  height: 300px !important;
  display: flex;
}

.review > .owl-nav {
  margin-top: 0px !important;
}

.review-team-image {
  height: 400px;
  width: auto !important;
  position: absolute;
  bottom: 0px;
  left: 50px;
}

.review-text-container {
  padding-top: 50px;
  margin-left: 40%;
}

.team-info {
  color: #000000 !important;
}

.join-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  border-radius: 30px;
  background-color: #f3ebde;
  bottom: 40px;
  right: 0;
  cursor: pointer;
}

.review-title {
  position: absolute;
  top: 30px;
  left: calc(37% + 24px);
}

.review-ornament-1 {
  height: 20px;
  width: auto !important;
  position: absolute;
  top: 35px;
  left: 37%;
}

.review-ornament-2 {
  height: 30px;
  width: auto !important;
  position: absolute;
  top: 44px;
  right: 80px;
}

.review-ornament-3 {
  height: 20px;
  width: auto !important;
  position: absolute;
  bottom: 50px;
  left: 0px;
}

.aggregator-logo{
  height: 20px;
  width: auto !important;
}

.aggregator-logo-w{
  height: 30px;
  width: auto !important;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.single-footer-title {
  font-size: 18px;
}

.chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 40px;
  border-radius: 30px;
  border: 2px solid #EE6926;
  background-color: transparent;
}

.banner-img {
  width: 60%;
  height: auto;
  position: absolute;
  right: 0;
  top: 100px;
}

.welcome-banner {
  margin-top: 40%;
}

.outlet-image {
  width: 60%;
  height: auto;
}

.bottom-info-banner-container {
  position: absolute;
  bottom: 18%;
  right: 10%;
  width: 40%;
}


/* CUSTOM XS STYLE */
@media (max-width: 575.98px) {
  .header-logo-container {
    display: flex;
    justify-content: center;
  }

  .banner-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
  }

  .banner-img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }

  .welcome-banner {
    margin-top: 20px;
  }

  .welcome-text {
    font-size: 20px;
    position: absolute;
    top: 10%;
    left: 5%;
    margin-top: 0px;
  }

  .welcome-image-logo {
    height: 20px;
    width: auto;
  }

  .description-text {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .ornament-1 {
    position: absolute;
    top: 5%;
    left: 5%;
    height: 16px;
    width: auto;
  }

  .ornament-2 {
    position: absolute;
    top: 55%;
    right: 10%;
    height: 22px;
    width: auto;
  }

  .bottom-info-banner-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .kepo-title-container {
    margin-top: 0 !important;
  }

  .why-container {
    margin-top: 0 !important;
  }

  .catering-card {
    margin-top: 70px !important;
    margin-bottom: 50px !important;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  }

  .catering-image-container {
    overflow: hidden;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
  }

  .catering-image {
    width: 100%;
    height: auto;
  }

  .catering-title {
    font-size: 18px !important;
  }

  .catering-description {
    font-size: 14px !important;
  }

  .catering-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 40px;
    border-radius: 30px;
    border: 2px solid #EE6926;
    background-color: #F9F6F2;
  }

  .vertical {
    transform: rotate(0);
    width: 100% !important;
  }

  .item-vertical {
    transform: rotate(0);
  }

  .vertical .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: -15px;
    width: 100vw;
    top: calc(10% - 65px);
  }

  div.vertical .owl-nav .owl-prev, div.vertical .owl-nav .owl-next {
      font-size:36px;
      top:unset;
      bottom: 15px;
  }

  .vertical > .owl-stage-outer {
    width: 100% !important;
  }

  .vertical > .owl-stage-outer > .owl-stage {
    height: 180px !important;
    display: flex;
    align-items: center;
  }

  .vertical > .owl-nav {
    margin-top: 16px !important;
  }

  .vertical > .owl-nav > .owl-prev {
    height: 100px !important;
    width: 100px !important;
    border-radius: 0 !important;
    background: linear-gradient(
        to right,
        rgba(248,244,238, 1) 0%,
        rgba(248,244,238, 0.8) 70%,
        rgba(248,244,238, 0) 100%
      ) !important;
  }

  .vertical > .owl-nav > .owl-next {
    height: 100px !important;
    width: 100px !important;
    border-radius: 0 !important;
    background: linear-gradient(
        to left,
        rgba(248,244,238, 1) 0%,
        rgba(248,244,238, 0.8) 70%,
        rgba(248,244,238, 0) 100%
      ) !important;
  }

  .testimony-container {
    padding-top: 150px;
    padding-bottom: 70px;
  }

  .testimony-content {
    overflow: hidden;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 360px;
    margin-top: -115px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimony-text-container {
    position: relative;
    left: 0;
  }

  .testimony-text {
    width: 100%;
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin-bottom: 0;
  }

  .user-text {
    width: 100%;
    font-size: 12px;
    color: grey;
    text-align: center;
  }

  .dish-image {
    height: 160px;
    margin-left: 0px;
  }

  .carousel-container {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-container::before,
  .carousel-container::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 160px;
      z-index: 2;
      pointer-events: none;
  }

  .carousel-container::before {
      right: 0;
      background: linear-gradient(to left,
          rgba(248,244,238,1) 0%,
          rgba(248,244,238,0.8) 20%,
          rgba(248,244,238,0) 45%);
  }

  .carousel-container::after {
      left: 0;
      background: linear-gradient(to right,
          rgba(248,244,238,1) 0%,
          rgba(248,244,238,0.8) 20%,
          rgba(248,244,238,0) 45%);
  }

  .chevron-up {
    transform: rotate(0deg);
    z-index: 100;
  }

  .chevron-down {
    transform: rotate(180deg);
  }

  .outlet-image {
    width: 100%;
    height: auto;
  }

  .review > .owl-stage-outer {
    overflow-y: visible !important;
    overflow-x: clip !important;
  }

  .review > .owl-stage-outer > .owl-stage {
    height: 300px !important;
    display: flex;
  }

  .review > .owl-nav {
    margin-top: 0px !important;
  }

  .review-team-image {
    height: 200px;
    width: auto !important;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }

  .review-text-container {
    padding-top: 0px;
    margin-left: 10%;
  }

  .team-info {
    color: #000000 !important;
    margin-bottom: 2px;
  }

  .join-button-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 40px;
    border-radius: 30px;
    background-color: #f3ebde;
    cursor: pointer;
  }

  .review-ornament-1 {
    height: 20px;
    width: auto !important;
    position: absolute;
    top: 35px;
    left: 37%;
  }

  .review-ornament-2 {
    height: 30px;
    width: auto !important;
    position: absolute;
    top: 44px;
    right: 80px;
  }

  .review-ornament-3 {
    height: 20px;
    width: auto !important;
    position: absolute;
    bottom: 50px;
    left: 0px;
  }

  .owl-nav-arrow {
    width: 30px; /* Adjust as needed */
    height: 30px; /* Adjust as needed */
    background-color: transparent !important;
  }

  .footer-logo {
    height: 36px;
    width: auto;
  }

  .single-footer-title {
    font-size: 14px;
    text-align: left;
  }

  .separator {
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .text-align-left {
    text-align: left;
  }

  .brand > .owl-stage-outer > .owl-stage > .owl-item.active.center {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .testimony > .owl-stage-outer > .owl-stage > .owl-item.active.center {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* CUSTOM SM STYLE */
@media (min-width: 576px) and (max-width: 767.98px) {
  .review-team-image {
    height: 300px;
    width: auto !important;
    position: absolute;
    bottom: 0px;
    left: 50px;
  }

  .ornament-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    height: 20px;
    width: auto;
  }

  .ornament-2 {
    position: absolute;
    top: 35%;
    right: 5%;
    height: 32px;
    width: auto;
  }

  .ornament-3 {
    position: absolute;
    bottom: 25%;
    right: 55%;
    height: 24px;
    width: auto;
  }

  .welcome-text {
    font-size: 20px;
    position: absolute;
    top: 0%;
    left: 5%;
  }

  .welcome-image-logo {
    height: 20px;
    width: auto;
  }

  .bottom-info-banner-container {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 40%;
  }

  .description-text {
    font-size: 16px;
    width: 100%;
  }
}

/* CUSTOM MD STYLE */
@media (min-width: 768px) and (max-width: 991.98px) {
  .ornament-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    height: 20px;
    width: auto;
  }

  .ornament-2 {
    position: absolute;
    top: 35%;
    right: 5%;
    height: 32px;
    width: auto;
  }

  .ornament-3 {
    position: absolute;
    bottom: 25%;
    right: 55%;
    height: 24px;
    width: auto;
  }

  .welcome-text {
    font-size: 20px;
    position: absolute;
    top: 0%;
    left: 13%;
  }

  .welcome-image-logo {
    height: 20px;
    width: auto;
  }

  .bottom-info-banner-container {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 40%;
  }

  .description-text {
    font-size: 16px;
    width: 100%;
  }
}
