.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: var(--theme-color);
    animation: l15 1s infinite linear;
  }

  .loader::before,
  .loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
  }

  .loader::after {
    margin: 8px;
    animation-duration: 3s;
  }

  @keyframes l15 {
    100% {
      transform: rotate(1turn);
    }
  }


  /* Carousel */
  .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  @media (min-width: 576px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 768px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 992px) {
    .carousel-item img {
      height: 400px;
    }
  }

  @media (min-width: 1200px) {
    .carousel-item img {
      height: 475px;
    }
  }

  /* Project Gallery */

  .projects-section {
    background-color: rgb(245, 247, 251);
    padding: 60px 0;
  }
  .projects-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  .projects-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #bfbfbf;
  }
  .projects-filter {
    text-align: center;
    margin-bottom: 20px;
  }
  .projects-filter button {
    background-color: var(--theme-color);
    border: none;
    padding: 10px 20px;
    color: #fff;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
  }
  .projects-filter .btn-secondary {
    background-color: #333;
  }
  .projects-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .project-item {
    display: none;
  }
  .project-item.show {
    display: block;
  }

  /* Heart Beat Icon */

  @keyframes heartbeat {
    0%, 100% {
      transform: scale(1);
      color:rgb(255, 255, 255); 
    }
    25% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(0.95);
    }
    75% {
      transform: scale(1.1);
    }
  }
  
  .heart-icon {
    display: inline-block;
    animation: heartbeat 1.2s infinite;
    transition: transform 5.9s ease;
  }

  .contact-icon h5{
    color: var(--theme-color);
    font-size: 20px;
  }
  .contact-icon{
    margin-bottom: 10px;
  }
  .fas-icon{
    background-color: var(--theme-color);
    font-size: 40px;
    color: #fff;
    padding: 10px;
    width: 60px !important;
    max-width: 70px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
  }

  /* ////////////////////////// Contact Page //////////////////// */

.contact-details{
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact{
  padding: 3rem;
}

@media (max-width:510px) {
  .contact{
    padding: 2rem;
  }
}

h1 {
  font-weight: 600;
}

h1, h3 {
  margin-bottom: 0.5rem;
}

label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: none;
  border-bottom: 2px solid rgb(128, 126, 126);
  background: transparent;
  outline: none;
  width: 100%;
  text-transform: capitalize;
  padding: 0.5rem 0.4rem;
  font-size: 1rem;
}


.form-check-input {
  transform: scale(1.2);
  cursor: pointer;
}

.aside {
  background-color: var(--theme-color);
  background-size: 400%;
  border-radius: 0px 10px 10px 0px;
}
.aside a{
  color: var(--color-white);
}

.aside h1 {
  font-size: 1.8rem;
}

.aside p {
  font-size: 1rem;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.8);
}


ul {
  list-style: none;
  padding: 0;
}

textarea {
  resize: none;
  height: 65px;
}

li {
  display: flex;
  align-items: center;
}


.contact-form i{
  font-size: 1rem;
  color: #fff;
  padding: 0.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

/* Meal Price */

.table-header {
  background-color: var(--theme-color);
  /* background-color: #003366; */
  color: white;
  text-align: center;
}

.custom-table td,
.custom-table th {
  vertical-align: middle;
  width: 50%;
}



/* Popup */

.popup {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
  position: relative;
  margin: 25% auto;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}

@media (min-width: 510px) {
  .popup-content{
    width:500px;
    margin: 5% auto;
  }
}

.popup-content img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


/* whatsapp  */
.whatsapp-btn {
  position: fixed;
  bottom: 22px;
  left: 30px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: wave 2s ease-in-out infinite;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 30px; 
  text-decoration: none;
}

@keyframes wave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.button-wrapper {
  display: flex;
  justify-content: center;
}

.hover-button {
  height: 50px;
  width: 130px;
  border: none;
  border-radius: 10px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hover-button:hover{
  color: #fff;
}

.hover-button .text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

/* .button-wrapper a:hover{
  color: #fff !important;
}

.hover-button .text.hover {
  transform: translateY(100%);
}

.hover-button:hover .text.default {
  transform: translateY(-100%);
}

.hover-button:hover .text.hover {
  transform: translateY(0);
}

.hover-button i {
  margin-left: 8px;
} */

