/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 10px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  .navbar .nav-links li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  .hero .hero-content .btn {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .hero .hero-content .btn:hover {
    background: #e68900;
    transform: translateY(-2px);
  }
  
  /* Signature Dishes Section */
  .signature-dishes {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .signature-dishes h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .signature-dishes .dishes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .signature-dishes .dish {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .signature-dishes .dish:hover {
    transform: translateY(-10px);
  }
  
  .signature-dishes .dish img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .signature-dishes .dish h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .signature-dishes .dish p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  footer .social-links li {
    margin: 0 10px;
  }
  
  footer .social-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  footer .social-links li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .hero .hero-content h2 {
      font-size: 2.5rem;
    }
  
    .hero .hero-content p {
      font-size: 1.2rem;
    }
  
    .hero .hero-content .btn {
      font-size: 1rem;
    }
  
    .signature-dishes .dishes {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero .hero-content h2 {
      font-size: 2rem;
    }
  
    .hero .hero-content p {
      font-size: 1rem;
    }
  
    .hero .hero-content .btn {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* About Section */
  .about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
  }
  
  .about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    margin: 20px;
    transition: transform 0.3s;
  }
  
  .about-content:hover {
    transform: translateY(-10px);
  }
  
  .about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .about-content p {
    font-size: 1rem;
    color: #666;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
    }
  
    .about-content, .about-image {
      margin: 10px 0;
    }
  }
  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .contact-section form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
  }
  
  .contact-section form:hover {
    transform: translateY(-10px);
  }
  
  .contact-section label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-section input,
  .contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-section button {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .contact-section button:hover {
    background: #e68900;
    transform: translateY(-2px);
  }
  
  /* Contact Info Section */
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .contact-info > div {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .contact-info > div:hover {
    transform: translateY(-10px);
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .contact-info ul {
    list-style: none;
  }
  
  .contact-info ul li {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
  }
  
  .contact-info iframe {
    width: 100%;
    border-radius: 10px;
    border: 0;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-info {
      flex-direction: column;
    }
  
    .contact-info > div {
      margin-bottom: 20px;
    }
  }
  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .gallery-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .gallery-item {
    flex: 1;
    min-width: 300px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: translateY(-10px);
  }
  
  .gallery-item img {
    width: 100%;
    display: block;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .gallery-item {
      min-width: 100%;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Menu Section */
  .menu-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .menu-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .filter-container {
    margin-bottom: 30px;
  }
  
  .filter-container label {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .filter-container select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  
  .filter-container select:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .menu-category {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .menu-category:hover {
    transform: translateY(-10px);
  }
  
  .menu-category h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .menu-category ul {
    list-style: none;
  }
  
  .menu-category ul li {
    font-size: 1.2rem;
    color: #666;
    margin: 10px 0;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-category {
      min-width: 100%;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Menu Section */
  .menu-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .menu-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .filter-container {
    margin-bottom: 30px;
  }
  
  .filter-container label {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .filter-container select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  
  .filter-container select:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .menu-category {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .menu-category:hover {
    transform: translateY(-10px);
  }
  
  .menu-category h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .menu-category ul {
    list-style: none;
  }
  
  .menu-category ul li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #666;
    margin: 10px 0;
  }
  
  .menu-category ul li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-category {
      min-width: 100%;
    }
  
    .menu-category ul li {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .menu-category ul li img {
      margin-bottom: 10px;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Reservation Section */
  .reservation-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .reservation-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .reservation-section form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    max-width: 600px;
    transition: transform 0.3s;
  }
  
  .reservation-section form:hover {
    transform: translateY(-10px);
  }
  
  .reservation-section label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .reservation-section input,
  .reservation-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .reservation-section button {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .reservation-section button:hover {
    background: #e68900;
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .reservation-section form {
      padding: 20px;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  header {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
  }
  
  nav ul li a:hover {
    color: #ff9800;
    transform: translateY(-2px);
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 50px 20px;
    text-align: center;
  }
  
  .reviews-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  /* Testimonials Slider */
  .slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
  }
  
  .slider-item {
    flex: 1 0 80%;
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    transition: transform 0.3s;
  }
  
  .slider-item:hover {
    transform: translateY(-10px);
  }
  
  .slider-item p {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #666;
  }
  
  .slider-item strong {
    display: block;
    font-size: 1rem;
    color: #333;
  }
  
  /* Review Submission Form */
  .reviews-section h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  #reviewForm {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    max-width: 600px;
    transition: transform 0.3s;
  }
  
  #reviewForm:hover {
    transform: translateY(-10px);
  }
  
  #reviewForm label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  #reviewForm input,
  #reviewForm select,
  #reviewForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  #reviewForm button {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  #reviewForm button:hover {
    background: #e68900;
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .slider-item {
      flex: 1 0 100%;
    }
  
    #reviewForm {
      padding: 20px;
    }
  }