@import url(https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Overpass:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playball&display=swap);
*,
body {
  font-family: Poppins, sans-serif;
}
*,
ol,
p,
ul {
  padding: 0;
}
*,
ol,
ul {
  list-style-type: none;
}
.arc,
.loader {
  position: relative;
}
#header.show nav ul li a,
.textBlack {
  color: var(--black-color);
}
#header nav ul li,
.char,
.footer-bottom-links li,
.footer-links li a,
a,
span {
  display: inline-block;
}
.footer-title::after,
.hero-btn::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
#header,
#hero,
.common::after,
.hero-btn:hover::after,
iframe,
img,
video {
  width: 100%;
}
#hero .top-title,
.small-title {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-btn,
.image-anime,
.loader p,
.main-footer,
.service-card,
.stat-card,
section {
  overflow: hidden;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mouse,
::after,
::before {
  box-sizing: border-box;
}
:root {
  --white: #fff;
  --black-color: #000;
  --brown-color: #683c26;
  --lite-brown: #d99432;
  --lite-color: #f2f1e2;
  --transition: all 0.5s ease-in-out;
  --box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  --image-radius: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
@font-face {
  font-family: title-font;
  src: url("../fonts/title.ttf") format("truetype");
}
@font-face {
  font-family: title-font1;
  src: url("../fonts/title1.ttf") format("truetype");
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
p a {
  color: var(--green-color);
}
p a,
p span {
  font-family: inherit;
}
*,
ol,
ul {
  margin: 0;
}
.common::after {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
p {
  margin: 0;
  line-height: 1.5;
  color: #525252;
}
p:last-child {
  margin-bottom: 0;
}
p span {
  color: inherit;
}
p a {
  font-size: inherit;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  line-height: 1.2;
}
iframe {
  height: 350px;
}
.section-title {
  font-family: title-font !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#testimonial .item h3,
.card h4,
.card h5,
.coconut-story .choosing-box h5,
.cta-section .split-text .word,
.section-title > *,
.service-card .text-box .card-title,
.stat-card h3 {
  font-family: Domine, serif;
}
.section-heading {
  margin-bottom: 40px;
}
.section-heading h2 {
  color: #4b37a1;
}
.section-heading p {
  font-size: 22px;
  color: var(--gray-color);
  margin-bottom: 0;
}
section {
  padding: 70px 0;
}
img,
video {
  max-width: 100%;
}
.row {
  row-gap: calc(var(--bs-gutter-x) * 1);
}
.form-control {
  outline: 0 !important;
  box-shadow: none !important;
}
#header.show,
.service-card {
  box-shadow: var(--box-shadow);
}
#preloader {
  position: fixed;
  inset: 0;
  background-color: #fff7f0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
  padding: 20px;
  flex-direction: column;
}
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.arc {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}
.footer-logo,
.footer-text {
  margin-bottom: 25px;
}
.arc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-top: 5px solid transparent;
  border-right: 5px solid sienna;
  border-bottom: 5px solid transparent;
  border-left: 5px solid sienna;
  animation: 2s linear infinite spin;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#preloader .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: sienna;
  pointer-events: none;
  animation: 3s linear infinite zoom;
}
@keyframes zoom {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.9;
  }
}
.loader p {
  font-size: 1.5rem;
  font-style: italic;
  color: sienna;
  letter-spacing: 1.5px;
  max-width: 450px;
  white-space: nowrap;
  border-right: 3px solid sienna;
  animation: 4s steps(30, end) forwards typing, 0.75s step-end infinite blink;
  margin-top: 10px;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}
#header {
  transition: 0.5s;
  position: fixed;
  top: 10px;
  left: 0;
  height: auto;
  z-index: 11;
}
#header.show {
  top: 0;
  animation: 1s forwards smoothScroll;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#header .header-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
#header.show .header-box {
  box-shadow: none;
  background: 0 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0 15px;
}
#header .logo-box img {
  max-width: 100px;
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  margin-left: 15px;
}
#header .logo-box img.logo-image2,
#header.show .logo-box img.logo-image1 {
  display: none;
}
#header.show .logo-box img.logo-image2 {
  display: block;
}
#header .main-nav .cancel-menu,
#header .main-nav .click-menu {
  font-size: 25px;
  color: var(--white);
  cursor: pointer;
  display: none;
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header nav ul li {
  padding: 5px 15px;
  position: relative;
}
#header nav ul li a {
  color: var(--white);
  padding: 0 0x;
  border-radius: 5px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  opacity: 0.9;
}
#header.show nav ul li a {
  opacity: 0.9;
}
#header nav ul li a.active::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -5px;
  border-radius: 50px;
  background: var(--white);
  transition: 0.5s;
}
#header.show nav ul li a.active::before {
  background: var(--brown-color);
}
#header nav ul li a.active::before,
#header nav ul li a:hover::before {
  animation: 2s ease-in-out infinite line;
}
@keyframes line {
  0%,
  100% {
    width: 60%;
  }
  50% {
    width: 100%;
  }
}
#header nav ul li a.active,
#header nav ul li a:hover {
  color: var(--white);
  opacity: 1;
}
#header.show nav ul li a.active,
#header.show nav ul li a:hover {
  color: var(--brown-color);
  opacity: 1;
}
.book-btn {
  position: absolute !important;
  right: -175px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff !important;
}
#hero,
#stats-section,
#testimonial,
.footer-about,
.footer-bottom,
.footer-title,
.footer-top,
.hero-btn,
.main-footer,
.why-choose {
  position: relative;
}
.mouse,
.mouse-wheel {
  transform: translateX(-50%);
}
.footer-title::after,
.main-footer {
  background-color: var(--brown-color);
}
.main-footer {
  color: #fff;
}
.footer-top {
  padding: 80px 0 40px;
  z-index: 1;
}
.footer-logo img {
  max-width: 120px;
}
.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.hero-btn i,
.hero-btn::after {
  background: var(--brown-color);
}
.footer-social a:hover {
  background-color: var(--lite-brown);
  transform: translateY(-5px);
}
.footer-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.footer-title::after {
  width: 50px;
  height: 2px;
}
.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: 0.3s;
  position: relative;
  padding-left: 15px;
}
.footer-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4a90e2;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
}
.card,
.hero-btn,
.hero-btn i,
.hero-btn::after,
.service-card img {
  transition: var(--transition);
}
.footer-links li a.active,
.footer-links li a:hover {
  color: #fff;
  padding-left: 20px;
}
.footer-links li a.active::before,
.footer-links li a:hover::before {
  opacity: 1;
}
.footer-contact li {
  display: flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact li i {
  color: var(--white);
  margin-right: 15px;
  font-size: 18px;
  margin-top: 5px;
}
.footer-contact li span {
  font-size: 15px;
  line-height: 1.6;
  display: inline-block;
}
.copyright,
.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
.copyright {
  margin: 0;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer-bottom-links li a {
  transition: 0.3s;
}
.footer-bottom-links li a:hover {
  color: #4a90e2;
}
#hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3))
      fixed,
    url("../images/home-back.webp") center center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-size: 8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.hero-title > * {
  font-family: title-font;
  font-weight: 900;
}
#hero .hero-subtitle {
  font-size: 1.25rem;
  color: #f1f1f1;
  margin-bottom: 30px;
}
#hero .top-title {
  font-weight: 800;
}
.hero-btn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 100px;
  display: inline-block;
  background: 0 0;
  border: 2px solid var(--brown-color);
  z-index: 1;
}
.hero-btn::after {
  display: block;
  width: 0;
  top: 0;
  z-index: -1;
  border-radius: 30px;
}
.image-anime::after,
.mouse,
.mouse-wheel {
  left: 50%;
  position: absolute;
}
.hero-btn:hover {
  color: var(--white);
  box-shadow: 0 8px 30px rgba(101, 59, 38, 0.3);
}
.hero-btn i {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
.hero-btn:hover i {
  background: var(--white);
  color: var(--brown-color);
}
.mouse {
  bottom: 40px;
  width: 35px;
  height: 55px;
  border: 2px solid #ccc;
  border-radius: 25px;
}
.mouse-wheel {
  top: 10px;
  width: 4px;
  height: 10px;
  background-color: #ccc;
  border-radius: 2px;
  animation: 1.5s infinite mouse-scroll;
}
@keyframes mouse-scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}
.image-anime {
  position: relative;
  cursor: pointer;
}
.image-anime::after {
  content: "";
  width: 300%;
  height: 0%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover::after {
  height: 250%;
  transition: 0.6s linear;
  background-color: transparent;
}
.images-wrapper {
  position: relative;
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.images-wrapper img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.content {
  flex: 1;
  min-width: 320px;
}
.small-title {
  font-family: title-font;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown-color);
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.description {
  font-size: 1rem;
  margin-bottom: 35px;
  color: #555;
  text-align: justify;
}
.info-cards {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.card {
  padding: 20px 25px;
  border-radius: 12px;
  flex: 1 1 180px;
  text-align: center;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.card .icon i,
.coconut-story .icon i {
  font-size: 1.8rem;
  color: #fff;
  height: 60px;
  width: 60px;
  background: var(--lite-brown);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.card h5 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}
.service-card {
  border-radius: var(--image-radius);
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.inner-hero,
.stat-card {
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .menu-img {
  height: 210px;
}
.service-card img {
  border-top-left-radius: var(--image-radius);
  border-top-right-radius: var(--image-radius);
  object-fit: cover;
  height: 100%;
  max-height: 300px;
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-card .text-box {
  padding: 20px;
  text-align: justify;
}
.service-card .text-box .card-title {
  color: var(--lite-brown) !important;
  font-weight: 800;
}
.service-detail .image-anime {
  height: 100%;
  max-height: 250px;
}
#package-inquiry::after,
.why-choose::before {
  content: "";
  top: auto;
  bottom: 0;
  max-height: 400px;
}
.why-choose::before {
  position: absolute;
  left: 0;
  background: url("../images/why-choose-us-bg.png") 0 0 / contain no-repeat;
  background-position-y: bottom;
  width: 100%;
  max-width: 250px;
  height: 100%;
}
.why-choose .card {
  height: 100%;
}
#testimonial::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 0;
  background: url("../images/coma.png") bottom left/contain no-repeat;
  width: 230px;
  height: 250px;
}
#stats-section::after,
.inner-hero .overlay,
.stat-card .overlay {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
#testimonial .section-title > *,
#testimonial .small-title {
  color: #fff !important;
}
#testimonial .item h3 {
  color: var(--lite-brown) !important;
  font-weight: 600;
}
#testimonial .item p {
  color: #d3d3d3;
  text-align: justify;
}
.owl-theme .owl-nav {
  text-align: left;
}
.owl-carousel .owl-nav button {
  background: 0 0 !important;
}
.owl-carousel .owl-nav button i {
  min-width: 45px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  background: var(--lite-brown);
  border-radius: 50px;
  transition: var(--transition);
}
.owl-carousel .owl-nav button:hover i {
  background: var(--white);
  color: var(--lite-brown);
}
#stats-section::after {
  content: "";
  left: auto;
  right: 0;
  background: url("../images/right-food.png") bottom right/contain no-repeat;
}
.stat-card {
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card .overlay {
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 1rem;
}
.stat-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stat-card p {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
}
.scrolling-ticker {
  padding: 10px 0;
  background-color: #d99432;
}
.scrolling-ticker-box {
  --gap: 20px;
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  gap: var(--gap);
}
.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: 24s linear infinite scroll;
}
.scrolling-content span {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.scrolling-content span i {
  font-size: 8px;
  margin-right: 20px;
}
.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before,
.coconut-story .choosing-box p span {
  color: var(--lite-brown) !important;
  font-weight: 600;
}
.breadcrumb-item.active {
  color: var(--white) !important;
}
.cta-section,
.cta-section .btn,
.cta-section h2,
.cta-section p {
  color: var(--white);
}
.inner-hero {
  padding: 150px 0;
}
.inner-hero .overlay {
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.cta-section {
  background: center/cover no-repeat #111;
  position: relative;
  text-align: center;
}
.cta-section .btn {
  border-color: var(--white);
}
.contact-info .icon,
.contact-info .info-item,
.contact-info p {
  color: var(--brown-color);
}
.cta-section .hero-btn i,
.cta-section .hero-btn::after {
  background: var(--lite-brown);
}
.cta-section .hero-btn:hover i {
  background: var(--white);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid var(--lite-brown) !important;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: border-color 0.3s;
  width: 100%;
  max-height: 150px;
  font-family: inherit;
  background-color: var(--lite-color);
  color: var(--brown-color);
}
.contact-form select option {
  color: var(--brown-color);
}
.contact-form select option:hover {
  border-color: var(--brown-color);
  outline: 0;
  background-color: var(--lite-color) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--brown-color);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brown-color);
  outline: 0;
  background-color: var(--white);
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px !important;
  resize: none;
}
.contact-info .info-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(104 60 38 / 0.15);
  padding: 20px 25px;
  transition: box-shadow 0.3s;
}
.contact-info .info-item:hover {
  box-shadow: 0 8px 25px rgb(217 148 50 / 0.35);
}
.contact-info h5 {
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
#package-inquiry {
  background: #f8f9fa;
}
#package-inquiry::after {
  position: absolute;
  left: auto;
  right: 0;
  background: url("../images/most-popular-dises-bg.png") 0 0 / contain no-repeat;
  background-position-y: bottom;
  width: 100%;
  max-width: 400px;
  height: 100%;
}
.coconut-story .choosing-box {
  padding: 30px 25px 20px;
  border-radius: 12px;
  background: var(--white);
}
.coconut-story .value-item {
  column-gap: 15px;
}
