* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  position: relative;
  z-index: 20;
}
header .logo img {
  width: 200px;
}
header .navigations {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navigations ul {
  display: flex;
}
header .navigations ul li {
  list-style: none;
  margin: 20px;
}
header .navigations ul li a {
  position: relative;
  color: #000000;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
header .navigations ul li a:hover {
  color: #0000cc;
  font-weight: bold;
}
header .navigations ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0000cc;
  transition: width 0.4s ease;
}
header .navigations ul li a:hover::after {
  width: 100%;
}
header .navigations ul li a.active {
  color: #0000cc;
  font-weight: bold;
}
header .navigations ul li a.active::after {
  width: 100%;
  background-color: #0000cc;
  transition: width 0.3s ease;
}
header .navigations .book-now {
  border: 3px solid #0000cc;
  padding: 15px;
  width: 150px;
  text-align: center;
  margin-left: 50px;
  border-radius: 10px;
  background-color: #0000cc;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
header .navigations .book-now a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
header .navigations .book-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 500%;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
  transform-origin: bottom left;
  transition: transform 1s ease;
}
header .navigations .book-now:hover::before {
  transform: scale(2);
  transform-origin: right;
}
header .navigations .book-now:hover a {
  color: #0000cc;
}

header.sticky {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0px 0px 0px rgba(227, 228, 237, 0.37);
  border: 2px solid rgba(225, 225, 225, 0.18);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 100px;
  position: relative;
  z-index: 2;
}
.hero .left-hero h1 {
  color: #0000cc;
  font-size: 80px;
  font-family: "Nunito", sans-serif;
}
.hero .left-hero .online-order {
  display: flex;
  height: 100px;
}
.hero .left-hero .online-order img {
  padding: 20px 20px 0px 0px;
  width: 70px;
}
.hero .left-hero .online-order img:hover {
  padding: 20px 20px 0px 0px;
  width: 80px;
  filter: brightness(110%);
  transition: width 0.4s ease;
}
.hero .right-hero img {
  width: 600px;
}

.feature-section .title {
  text-align: center;
}
.feature-section .title h1 {
  font-family: "Pacifico", cursive;
  color: #0000cc;
  display: flex; /* Use flexbox for alignment */
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between the text and the lines */
  position: relative;
  font-size: 30px;
}
.feature-section .title h1::before,
.feature-section .title h1::after {
  content: ""; /* Adds the line */
  width: 100px; /* Fixed width for the lines */
  height: 3px; /* Thickness of the line */
  background-color: #0000cc; /* Same as text color */
}
.feature-section .title p {
  font-family: "Nunito", sans-serif;
  color: #393939;
  font-size: 35px;
  padding: 0 0 50px 0;
}
.feature-section .feature-products {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pagination Bullets */
}
.feature-section .feature-products .card-wrapper {
  max-width: 1200px;
  margin: 0 60px 35px;
  overflow: hidden;
}
.feature-section .feature-products .card-list .card-item {
  list-style: none;
}
.feature-section .feature-products .card-list .card-item .card-link {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s ease;
}
.feature-section .feature-products .card-list .card-item .card-link:active {
  cursor: grabbing;
}
.feature-section .feature-products .card-list .card-item .card-link:hover {
  border-color: #0000cc;
}
.feature-section .feature-products .swiper-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.feature-section .feature-products a {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.2s ease;
}
.feature-section .feature-products a .product-image {
  text-align: center;
}
.feature-section .feature-products a .product-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 10/9;
}
.feature-section .feature-products a .product-image .sale-active {
  position: absolute;
  background-color: #ff0000;
  width: 80px;
  padding: 5px;
  text-align: center;
  color: #ffffff;
  border-radius: 25px;
  font-weight: bolder;
}
.feature-section .feature-products a .price {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.feature-section .feature-products a .price .current-price {
  color: #000;
  text-align: center;
  font-size: 20px;
}
.feature-section .feature-products a .price .sale-price {
  color: #5f6368;
  text-decoration: line-through;
  padding: 0 0 0 20px;
}
.feature-section .feature-products a h1 {
  min-height: 40px;
  padding: 10px 0 0 0;
  font-size: medium;
  color: #000;
  text-align: center;
}
.feature-section .feature-products .swiper-pagination-bullet {
  background-color: #acacac; /* Light Pink */
  opacity: 0.5;
}
.feature-section .feature-products .swiper-pagination-bullet-active {
  background-color: #0000cc; /* Darker Pink for Active Bullet */
  opacity: 1;
}
.feature-section .feature-products .swiper-button-next,
.feature-section .feature-products .swiper-button-prev {
  color: #0000cc;
}
@media screen and (max-width: 768px) {
  .feature-section .feature-products .card-wrapper {
    margin: 0 10px 25px;
  }
  .feature-section .feature-products .card-wrapper .swiper-slide-button {
    display: none;
  }
}

.about-us {
  display: flex;
  justify-content: center;
  margin: 0px 100px 0px 100px;
  align-items: center;
}
.about-us .left {
  padding: 50px;
}
.about-us .left img {
  width: 400px;
}
.about-us .right {
  padding: 50px;
}
.about-us .right .title {
  display: flex;
  align-items: center;
}
.about-us .right .title h1 {
  font-family: "Food Buka Personal";
  display: flex;
  font-size: 40px;
  color: #0000cc;
  align-items: center;
  justify-content: center;
}
.about-us .right .title h1 span {
  padding: 15px;
}
.about-us .right .title h1 span img {
  width: 40px;
}
.about-us .right .details {
  padding: 10px 0 0 0;
}
.about-us .right .details p {
  font-size: larger;
}
.about-us .right .details2 {
  padding: 10px 0 0 0;
  display: flex;
  align-items: center;
}
.about-us .right .details2 hr {
  border: none;
  background-color: #0000cc;
  width: 5px;
  height: 60px;
  border-radius: 10px;
}
.about-us .right .details2 .number {
  padding: 0 0 0 20px;
}
.about-us .right .details2 .number h1 {
  font-family: "Calibri";
  color: #0000cc;
  font-size: 50px;
}
.about-us .right .details2 .num-title {
  padding: 0 0 0 20px;
}
.about-us .right .details2 .num-title .title2 {
  font-weight: bolder;
}

footer .ft-details {
  background-image: url("/assets/images/footer-bg.png");
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
footer .ft-details hr {
  width: 150px;
  height: 1px;
  background-color: #ffffff;
  margin-left: 30px;
}
footer .ft-details {
  display: flex;
  background-color: #000066;
  color: #ffffff;
  justify-content: space-evenly;
}
footer .ft-details .soc-med-section {
  flex: 1;
  padding-left: 50px;
}
footer .ft-details .contact-section {
  flex: 1;
}
footer .ft-details .operating-section {
  flex: 1;
  padding-right: 100px;
}
footer .ft-details div {
  padding: 10px 10px 10px 30px;
}
footer .ft-details div .title h1 {
  font-family: "Food Buka Personal";
}
footer .ft-details div .soc-med ul {
  display: flex;
  list-style: none;
}
footer .ft-details div .soc-med ul li {
  padding: 5px 20px 5px 0;
}
footer .ft-details div .soc-med ul li a img {
  width: 35px;
  filter: invert(100%);
}
footer .ft-details div .soc-med ul li a img:hover {
  width: 55px;
  transition: all 0.4s ease;
}
footer .ft-details div .cont-us ul {
  list-style: none;
}
footer .ft-details div .cont-us ul li {
  display: flex;
  align-items: center;
  padding: 5px 20px 5px 0;
}
footer .ft-details div .cont-us ul li img {
  width: 35px;
  padding-right: 10px;
}
footer .ft-details div .operating ul {
  list-style: none;
}
footer .ft-details div .operating ul li {
  display: flex;
}
footer .ft-details div .operating ul li p {
  width: 150px;
}
footer .cr-con {
  background-color: #0000cc;
  color: white;
  padding: 5px;
  text-align: center;
}

.underconscontent {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 80px 10px;
  flex-wrap: wrap;
}
.underconscontent .caption h1 {
  font-size: 40px;
  margin: 20px 20px 20px 0px;
}
.underconscontent .caption p {
  font-size: 20px;
  margin: 20px 20px 20px 0px;
}
.underconscontent .caption ul {
  margin: 20px 20px 20px 20px;
}
.underconscontent .caption ul li {
  list-style: none;
}
.underconscontent .caption ul li span {
  padding: 0 0 0 20px;
}
.underconscontent .right img {
  width: 650px;
}/*# sourceMappingURL=index.css.map */