.section-heading {
  position: relative;
}

.section-heading h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}

.order-btn {
  background: linear-gradient(145deg, #F7C039, #f5b200);
  color: #642266;
  border: 2px solid #642266;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(100, 34, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.order-btn span{
  color: #642266;
}

.order-btn.order-btn-2 span{
  color: #f5b200;
}

.order-btn.order-btn-2 {
  background: linear-gradient(145deg, #642266, #642266);
  color: #f5b200;
  border: 2px solid #f5b200 !important;
}

.order-btn-2 {
  background-color: #642266;
}

.navbar {
  /* position: fixed; */
  top: 0;
  width: 100%;
  /* background: url('../img/bg-primary.jpg'); */
  background-size: contain;
  background-color: #F7C039;
  /* background: linear-gradient(135deg, #F7C039, #F79027); */
  background: linear-gradient(35deg, rgba(247, 192, 57, 1) 0%, rgba(247, 144, 39, 1) 100%);
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
  padding: 10px 0;
  z-index: 99;
}

#myHeader {
  position: fixed;
  top: 0;
  width: 100%;
  transition: top 0.3s;
  z-index: 999;
}

.navbar .header-wave {
  /* background: linear-gradient(135deg, #F7C039, #F79027); */
  background: linear-gradient(35deg, rgba(247, 192, 57, 1) 0%, rgba(247, 144, 39, 1) 100%);
}

.nav-link {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
}

.nav-link:hover {
  color: #642266 !important;
}

.navbar-expand-lg .navbar-nav {
  gap: 20px;
}

.header-wave {
  z-index: 2;
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #F7C039;
  -webkit-mask: url('../img/header-wave.svg');
  mask: url('../img/header-wave.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.header-wave-2 {
  top: -18px;
  z-index: 2;
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #642266;
  -webkit-mask: url('../img/wave.svg');
  mask: url('../img/wave.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.contact-number {
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact-number .contact-icon{
  border: 2px solid #fff;
}
.contact-number .contact-icon,.contact-number .contact-icon a{
  color: #fff;
  /* padding: 20px; */
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.contact-number:hover .contact-icon{
  border: 2px solid #642266;
}

.contact-number:hover .contact-icon,
.contact-number:hover .contact-icon a{
  color: #642266;
  transition: 0.3s ease;
}

.contact-number .contact-detail p{
  margin-bottom: 2px;
  color: #fff;
  font-size: 15px;
}
.contact-number .contact-detail a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 18px;
}

.contact-number .contact-detail a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #642266;
  left: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-number:hover .contact-detail a {
  color: #642266;
}

.contact-number:hover .contact-detail a::after {
  transform: scaleX(1);
}


/* Banner Css */

.banner {
  /* padding: 200px 0 0; */
  position: relative;
}

.banner .header-wave-2 {
  background-color: #fff;
  top: unset;
  bottom: -2px;
}

.banner-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
}

.banner-wrap::after {
  content: "";
  background-color: rgba(155, 52, 134, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
}

.banner-heading {
  position: relative;
  z-index: 9;
}

.banner h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  gap: 10px;
  color: #F79027;
  text-transform: uppercase;
  /* background-color: rgba(155, 52, 134, 0.4); */
  text-shadow: -6px 0px #642266;
}

.banner h3 {
  font-size: 50px;
  color: #fff;
  text-align: center;
}

.slick-dots {
  position: absolute;
  top: 50%;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slick-dots li {
  height: auto;
}

.slick-dots li button {
  padding: 0;
  width: 15px;
  height: 15px;
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  border: none;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background-color: #F79027;
}

/* About us Css */

.about-us {
  position: relative;
  overflow: hidden;
}

.about-us-box {
  position: relative;
}

.about-us-box img {
  width: 100%;
}

.rotate-shape {
  animation: rotate 8s linear infinite;
  width: 100%;
  position: absolute;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}



.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.wave svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* Cus Menu Css */

.cus-menu {
  background-color: #FAF5F2;
  padding-bottom: 70px;
}

.wrap-box {
  border-radius: 50px 50px 20px 20px;
  background-color: #fff;
  text-align: center;
  box-shadow: 10px 10px 73px -23px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 10px 10px 73px -23px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 10px 10px 73px -23px rgba(0, 0, 0, 0.6);
  position: relative;
}

.cus-menu .box {
  /* max-height: 400px; */
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  -webkit-mask: url('../img/menu-wave.svg');
  mask: url('../img/menu-wave.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.cus-menu .box img {
  border-radius: 50px 50px 0 0;
}

.cus-menu .wrap-box p {
  margin-bottom: 0;
  font-size: 20px;
}

.cus-menu::before {
  content: "";
  position: absolute;
  background: url('../img/bg-secondary.jpg');
  width: 100%;
  height: 380px;
  top: 0;
}


.cus-menu .header-wave {
  background: #FAF5F2;
}














.gallery {
  padding: 100px 0;
  /* background-color: #F7C039; */
  background-image: url('../img/bg-primary.jpg');
  position: relative;
}

.gallery .header-wave-2 {
  background: #F7C039;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 15px;
  max-width: 900px;
  margin: auto;
}

.gallery-wrap img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 10px solid #fff;
}

.gallery-wrap img:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 991px) {
  .nav-link{
    text-align: center;
  }
  .map-location .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .banner h2 {
    font-size: 50px;
  }

  .banner h2 img {
    width: 50px !important;
  }

  .gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .slick-dots {
    flex-direction: row;
    left: 50%;
    bottom: 0;
    top: unset;
    transform: translate(-50%, -50%);
  }

  .map-overlay {
    font-size: 20px !important;
    bottom: 0;
    top: unset !important;
    right: 50% !important;
    transform: translate(50%, -50%);
  }
  .header-wave{
      bottom: -18px;
  }
}

@media (max-width: 500px) {
  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .banner h2 {
    font-size: 40px;
  }

  .banner h3 {
    font-size: 30px;
  }

  .banner h2 img {
    width: 30px !important;
  }
  
}

/* Slider Modal */
.slider-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.slider-content {
  position: relative;
  max-width: 70%;
  /* max-height: 70%; */
}

.slider-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn,
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #642266;
  border: none;
  padding: 5px;
  font-size: 18px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  z-index: 999999;
}

.close-btn {
  top: 20px;
  right: 20px;
  transform: none;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 600px) {

  .close-btn,
  .prev-btn,
  .next-btn {
    padding: 8px;
    font-size: 20px;
  }
}

.no-scroll {
  overflow: hidden;
}







.map-container {
  position: relative;
  /* width: 90%;
      max-width: 800px; */
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

.map-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #642266;
  color: #F79027;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 2;
  font-size: 30px;
  font-weight: 500;
  pointer-events: none;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .map-overlay {
    font-size: 14px;
    padding: 8px 16px;
  }
}








.footer {
  background-color: #642266;
}

.footer h4 {
  color: #F7C039;
}


.footer p,
.footer ul li {
  color: #fff;
}

a {
  text-decoration: none;
}