.food-order a {
  color: #fff;
}

.food-order:hover::after {
  color: #fff;
}

/* Footer */
.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
label {
  font-size: 17px;
  font-weight: 600;
}
.social-handles {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}
.social-handles li {
  list-style: none;
}
.social-handles li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
  font-size: 20px;
}
.social-handles li a:hover {
  background-color: rgb(1, 48, 177);
  color: #fff;
}

.useful-links .box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.useful-links .box a {
  color: #666;
  transition: 0.3s linear;
}

.useful-links .box a:hover {
  color: rgb(1, 48, 177);
  letter-spacing: 1px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo p a {
  color: rgb(1, 48, 177);
}

.header-logo p a:hover {
  text-decoration: underline;
}

/* About Page */
.about-box-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  background: #fff;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.1);
}

.about-box-1 .content {
  aspect-ratio: 1 / 1;
}

.about-box-1 .content h2 {
  font-size: 20px;
}

.about-box-1 .img-box {
  height: 350px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

/* Contact Information */
.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  transition: 0.3s linear;
}

.contact-info-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid rgb(1, 48, 177);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}

.contact-info-item .icon i {
  font-size: 33px;
  color: rgb(1, 48, 177);
}

.contact-info-item:hover .icon {
  background-color: rgb(1, 48, 177);
}

.contact-info-item:hover .icon i {
  color: #fff;
}

.contact-info-item .details a {
  font-size: 18px;
  color: rgb(1, 48, 177);
}

.contact-info-item .details a:hover {
  text-decoration: underline;
}

.contact-social-handles h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.contact-medias {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.contact-medias a img {
  width: 40px;
  height: auto;
}

.contact-medias a img:hover {
  transform: scale(1.1);
}

.input-box {
  display: flex;
  flex-direction: column;
}

/* Media Querry */
@media (max-width: 1024px) {
  .header-logo a img {
    width: 150px;
  }

  .banner-content h1 {
    font-size: 40px;
  }
  .about-content .section-header span {
    font-size: 18px !important;
  }
  .about-content .section-header h3 {
    font-size: 28px;
  }
  .about-content .section-wrapper p {
    font-size: 13px;
  }
  .section-header .head-1 {
    font-size: 30px;
  }
  .bg-table {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .banner-content p {
    width: 90% !important;
  }
  .about-content .section-header span {
    font-size: 23px !important;
  }
  .clients-area
    .section-wrapper
    .clients-container
    .clients-item
    .clients-text {
    width: 100%;
  }
  .content-logo img {
    width: 220px;
  }
}

@media (max-width: 425px) {
  .banner-content .wel-msg {
    display: none !important;
  }
  .head-0 {
    font-size: 16px !important;
  }
  .head-1 {
    font-size: 20px !important;
  }
  .clients-area
    .section-wrapper
    .clients-container
    .clients-item
    .clients-text
    p {
    font-size: 12px;
  }
  .content-logo img {
    width: 250px;
  }
  .clients-area
    .section-wrapper
    .clients-container
    .clients-item
    .clients-thumb {
    width: 80px;
    height: 80px;
  }

  .foodlist-item .tab-bar img {
    aspect-ratio: initial !important;
  }

  #menu-card {
    column-gap: 15px;
  }

  .product-item.style-2 {
    flex-wrap: initial;
    align-items: center;
  }

  .product-item.style-2 .product-content {
    text-align: left;
  }
  .product-item.style-2 .product-content .product-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border: none;
  }
  .product-thumb .price {
    display: none !important;
  }
  .product-item.style-2 .product-content .product-title {
    margin-bottom: -30px;
  }
  .product-item.style-2 .product-content .product-title .price {
    display: block !important;
    font-size: 15px;
    font-weight: 600;
    color: rgb(1, 48, 177);
    margin-bottom: 10px;
    display: inline-block;
  }
  .rating {
    display: none;
  }
  .product-item.style-2 .product-content .product-desc {
    margin-top: -20px;
  }
  .product-item.style-2 .product-content .product-desc p {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .banner-content {
    margin-top: 30px;
  }
  .banner-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 320px) {
  .bg-table {
    height: 250px;
  }
  .clients-area
    .section-wrapper
    .clients-container
    .clients-item
    .clients-text
    p {
    font-size: 11px;
  }
  .contact-info-item .icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-item .icon i {
    font-size: 23px;
  }
  .contact-info-item h6 {
    font-size: 15px;
  }

  .contact-info-item .details a {
    font-size: 15px;
  }
  .contact-info-item .details p {
    font-size: 14px;
  }
  .contact-social-handles h3 {
    font-size: 15px;
  }
  .contact-social-handles p {
    font-size: 13px;
  }

  .contact-medias a img {
    width: 30px;
  }
}

/* Success & Error Popup Styling */
.form-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2ecc71;
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  display: none;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.form-popup.error {
  background: #e74c3c;
}

/* Loading Spinner Inside Button */
.loading-spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sending {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Container */
/* Popup Background */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: scaleUp 0.4s ease;
}

.popup-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.popup h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

.popup p {
  margin-top: 10px;
  color: #555;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Processing Animation Styles */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.processing-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.processing-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #c41e3a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.processing-text {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Disable button during submission */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
