body{
    margin: 0px;
    padding: 0px;
    background-color: rgb(31, 31, 31);
}

.navbar {
    border: 1px white solid;
    position: fixed; /* Fix the navbar to the top */
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust the left position to center the navbar */
    width: 100%; /* Full width */
    z-index: 100; /* Ensure it's above other content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 20px;
    border-bottom-left-radius: 80px; 
    border-bottom-right-radius: 80px;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
  }
  
  .nav-list {
    display: flex;
    list-style: none;
  }
  
  .nav-list li {
    margin: 0 15px;
  }
  
  .nav-list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .nav-right a {
    color: white;
    margin-left: 20px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
  }
  
  .navbar a:hover {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 20px 0 white;
    color: black;
  }
  
  .search-icon::before {
    content: "";
    display: inline-block;
    background-image: url("../image/search.png");
    background-size: cover;
    height: 22px;
    width: 22px;
  }
  
  .login, .signup {
    text-transform: uppercase;
    border: 2px solid white;
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
  }
  
  .login:hover, .signup:hover {
    background: white;
    color: black;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  .signup {
    border-left: 2px solid white;
    padding-left: 20px;
  }
  
  
  
  
  
  
  







  footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* Left Side: Company Info */
  .footer-left {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-left h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f39c12;
    position: relative;
  }
  
  .footer-left p {
    margin-bottom: 20px;
    color: #bdc3c7;
  }
  
  blockquote {
    background-color: #34495e;
    padding: 15px;
    border-left: 5px solid #f39c12;
    font-style: italic;
    color: #ecf0f1;
  }
  
  footer blockquote p {
    margin: 0;
  }
  
  /* Right Side: Links, Contact, and Map */
  .footer-right {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-links, .footer-contact, .footer-map {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-links h4, .footer-contact h4, .footer-map h4 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 15px;
    position: relative;
  }
  
  .footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li, .footer-contact ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
  }
  
  .footer-contact ul li {
    color: #bdc3c7;
  }
  
  .footer-map iframe {
    width: 100%;
    height: 150px;
    border: none;
    margin-top: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .footer-map iframe:hover {
    transform: scale(1.05);
  }
  
  /* Social Icons and Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #7f8c8d;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f39c12;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #d35400;
    transform: scale(1.1);
  }
  
  .footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
  }
  
  
  













/* Cards Section */
.cards-container {
    display: flex;
    justify-content: space-between;
    margin: 120px auto;
    max-width: 90%;
    padding: 20px;
    position: relative;
  top: 0; /* Start directly below the navbar */
  width: 100%;
  overflow: hidden;
  z-index: 1; /* Keep it below the navbar */
}

.card {
    width: 30%;
    background-color: #ff6600;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease;
}

.card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.2em;
    color: #fff7e6;
}

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

/* Policy Section */
.policy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
}

.policy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #353535;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease;
}

.policy h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #ff6600;
}

.policy p {
    font-size: 1.1em;
    color: #666;
}

.policy img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Food Quality Section */
.food-quality-section {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    max-width: 90%;
    padding: 20px;
}

.quality-card {
    width: 30%;
    padding: 20px;
    background-color: #414141;
    
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease;
}

.quality-card h2 {
    font-size: 1.5em;
    color: #ff6600;
    margin-bottom: 10px;
}

.quality-card p {
    font-size: 1.2em;
    color: white;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Featured Dishes Section */
.featured-dishes-section {
    background-color: #ffe6cc;
    padding: 50px 20px;
    text-align: center;
}

.featured-dishes-section h2 {
    font-size: 2em;
    color: #ff6600;
    margin-bottom: 30px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dish-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: scale(1.05);
}

.dish-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.dish-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Contact Section */
.contact-section {
    background-color: #ff6600;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-button {
    background-color: #fff;
    color: #ff6600;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #ffe6cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container, .food-quality-section {
        flex-direction: column;
        align-items: center;
    }

    .policy-section {
        grid-template-columns: 1fr;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#order-count{
  color: white;
}


