  /* Global Styles */
  :root {
      --primary: #E3720D;
      /* Orange */
      --secondary: #FFF5EB;
      /* Light cream */
      --dark: #1E1E1E;
      /* Dark text */
      --light: #FFFFFF;
      /* White */
      --border: 1px solid #000000;
      /* Black border */
      --trust-blue: #242a41;
      /* Blue for trust elements */
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
  }

  body {
    background-color: var(--secondary);
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }

  
header {
    background-color: var(--primary);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 80;
}

header.scrolled {
    background: rgba(227, 114, 13, 0.9);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.order-btn {
    background-color: var(--trust-blue);
    color: var(--light);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.order-btn:hover {
    color: var(--trust-blue);
    background-color: var(--light);
    transform: translateX(-5px);
}

.menu-toggle {
    display: none;
    visibility: hidden;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--light);
}
       
 /*Screen Section*/
 .screen-section {
     height: 100vh;
     /* Full viewport height */
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     scroll-snap-align: start;
     scroll-snap-stop: always;
     scroll-behavior: smooth;
     transition: all 0.6s ease;
 }



  /* Hero Section */
  .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 3rem 5%;
      background-color: var(--primary);
      color: var(--light);
      min-height: 80vh;
  }

  .hero-content {
      padding: 2rem;
  }

  .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: var(--light);
      
  }

  .hero h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: 400;
      color: var(--light);
  }

  .hero p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: var(--dark);
      max-width: 90%;
      padding: 1rem;
      border-radius: 8px;
  }

  .hero-image {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
  }

  

  

  /* About Section */
  .about-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      padding: 4rem 5%;
      background-color: var(--light);
  }

  .about-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      border: var(--border);
      transition: transform 0.5s ease;
        }

  .about-image:hover {
      transform: scale(1.05);
  }

  .about-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    transition: all 0.6s ease-out;
  }

  .about-title {
      color: var(--trust-blue);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
  }

  .about-text {
      color: var(--dark);
      margin-bottom: 2rem;
      line-height: 1.7;
  }

  .mission-vision {
      background-color: rgba(36, 42, 65, 0.05);
      padding: 1.5rem;
      border-radius: 8px;
      border-left: 4px solid var(--trust-blue);
  }

  .mission-vision h4 {
      color: var(--trust-blue);
      margin-bottom: 1rem;
      font-size: 1.3rem;
  }

  .mission-vision p {
      color: var(--dark);
      margin-bottom: 1rem;
  }

  /* Why Choose Us Section */
  .why-choose-us {
      padding: 5rem 5%;
      background-color: var(--trust-blue);
      color: var(--light);
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--light);
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .benefit-card {
      background-color: var(--light);
      color: var(--dark);
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      border: var(--border);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s ease-out;
  }

  .benefit-card:hover {
      transform: translateY(-10px);
  }

  .benefit-icon {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
  }

  .benefit-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--trust-blue);
  }

  .benefit-description {
      line-height: 1.6;
  }

  /* Delivery Locations Section */
  .delivery-section {
      padding: 5rem 5%;
      background-color: var(--primary);
      color: var(--light);
      text-align: center;
  }

  .delivery-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
  }

  .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
  }

  .location-btn {
      background-color: var(--light);
      color: var(--primary);
      border: none;
      padding: 1.5rem 1rem;
      border-radius: 8px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      border: var(--border);
  }

  .location-btn:hover {
      background-color: var(--secondary);
      transform: translateY(-5px);
  }

  /* Contact Us Section */
  .contact-section {
      padding: 5rem 5%;
      background-color: var(--light);
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .contact-header {
      grid-column: 1 / -1;
      text-align: center;
      margin-bottom: 2rem;
  }

  .contact-title {
      color: var(--trust-blue);
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }

  .contact-intro {
      color: var(--dark);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
  }

  .contact-card {
      background-color: var(--secondary);
      padding: 2.5rem;
      border-radius: 8px;
      border: var(--border);
  }

  .contact-info {
      background-color: var(--trust-blue);
      color: var(--light);
      padding: 2.5rem;
      border-radius: 8px;
  }

  .info-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--light);
  }

  .contact-detail {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
  }

  .contact-icon {
      font-size: 1.2rem;
      margin-top: 0.2rem;
  }

  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .form-group label {
      font-weight: 500;
      color: var(--dark);
  }

  .form-group input,
  .form-group textarea {
      padding: 1rem;
      border: var(--border);
      border-radius: 8px;
      font-size: 1rem;
  }

  .form-group textarea {
      min-height: 150px;
      resize: vertical;
  }

  .required-field::after {
      content: " *";
      color: #e53e3e;
  }

  .submit-btn {
      background-color: var(--trust-blue);
      color: var(--light);
      border: none;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      align-self: flex-start;
  }

  .submit-btn:hover {
      background-color: #1a2035;
      transform: translateY(-2px);
  }

  /* Footer Section */
  .footer-section {
      background-color: var(--dark);
      color: var(--light);
      padding: 3rem 5% 2rem;
  }

  .footer-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-column {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .footer-column  a{
    color: white;
  }
  .qr-code {
      width: 150px;
      height: 150px;
      background-color: var(--light);
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 1rem;
  }

  .qr-code img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .footer-heading {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
  }

  .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .footer-locations {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .footer-location {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 0.8rem;
      border-radius: 6px;
      text-align: center;
      font-size: 0.9rem;
  }

  .copyright {
      text-align: center;
      padding-top: 2rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
  }


 .ord-background-section {
     flex: 1;
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
         url('images/Grub\ n\ Snack\ Poster.jpg');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     padding: 2rem;
 }

 .ord-background-content {
     max-width: 600px;
 }

 .ord-background-content h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
 }

 .ord-background-content p {
     font-size: 1.5rem;
     opacity: 0.9;
 }

 .ord-form-section {
     width: 40%;
     min-width: 400px;
     padding: 2rem;
     overflow-y: auto;
     background-color: #f9f9f9;
 }

 .ord-form-container {
     max-width: 500px;
     margin: 0 auto;
 }

 .ord-form-title {
     color: var(--text-color);
     margin-bottom: 1.5rem;
     text-align: center;
 }

 .ord-form-group {
     margin-bottom: 1.5rem;
 }

 .ord-form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: bold;
     color: var(--light-text);
 }

 .ord-required-field::after {
     content: " *";
     color: var(--error-color);
 }

 .ord-form-input,
 .ord-form-select,
 .ord-form-textarea {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid var(--border-color);
     border-radius: 4px;
     font-size: 1rem;
     transition: border-color 0.3s;
 }

 .ord-form-textarea {
     height: 100px;
     resize: vertical;
 }

 .ord-form-button {
     background-color: var(--primary);
     color: white;
     padding: 1rem 2rem;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 1rem;
     width: 100%;
     transition: background-color 0.3s;
     margin-top: 1rem;
 }

 .ord-form-button:hover {
     background-color: var(--trust-blue);
 }

 .ord-error-message {
     color: var(--error-color);
     font-size: 0.9rem;
     margin-top: 0.5rem;
     display: none;
     font-weight: bold;
     background-color: var(--error-bg);
     padding: 8px;
     border-radius: 4px;
     border-left: 4px solid var(--error-color);
 }

 .ord-input-error {
     border-color: var(--error-color) !important;
     background-color: var(--error-bg);
 }

 .ord-time-info {
     display: none;
     margin-top: 10px;
     animation: ord-fadeIn 0.3s ease-in-out;
     background: var(--info-bg);
     padding: 15px;
     border-radius: 4px;
     border-left: 4px solid var(--primary-color);
 }

 .ord-time-highlight {
     font-weight: bold;
     color: var(--info-color);
 }

 .ord-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     justify-content: center;
     align-items: center;
 }

 .ord-modal-content {
     background-color: white;
     padding: 2rem;
     border-radius: 8px;
     max-width: 500px;
     width: 90%;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .ord-modal-buttons {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
     flex-wrap: wrap;
     justify-content: center;
 }

 .ord-modal-button {
     padding: 0.8rem 1.5rem;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 1rem;
     flex: 1;
     min-width: 120px;
     transition: all 0.3s;
 }

 .ord-modal-primary {
     background-color: var(--primary);
     color: white;
 }

 .ord-modal-primary:hover {
     background-color: var(--primary);
 }

 .ord-modal-secondary {
     background-color: #f0f0f0;
     color: var(--text-color);
 }

 .ord-modal-secondary:hover {
     background-color: #e0e0e0;
 }

 .ord-countdown {
     font-size: 1.2rem;
     margin-top: 1rem;
     padding: 1rem;
     background-color: var(--info-bg);
     border-radius: 8px;
     display: inline-block;
 }

 .ord-countdown span {
     font-weight: bold;
     color: var(--info-color);
 }

 .ord-other-input {
     margin-top: 10px;
     display: none;
 }

 .ord-closed-message {
     text-align: center;
     padding: 2rem;
     background-color: var(--info-bg);
     border-radius: 8px;
     margin-bottom: 2rem;
 }

 .ord-closed-message h3 {
     color: var(--error-color);
     margin-bottom: 1rem;
 }

 .ord-closed-message p {
     margin-bottom: 0.5rem;
 }

 @keyframes ord-fadeIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .ord-body {
         flex-direction: column;
         height: auto;
         overflow: auto;
     }

     .ord-background-section,
     .ord-form-section {
         width: 100%;
         min-width: auto;
     }

     .ord-background-section {
         padding: 2rem 1rem;
         height: 300px;
     }

     .ord-background-content h1 {
         font-size: 2rem;
     }

     .ord-background-content p {
         font-size: 1.2rem;
     }

     .ord-modal-content {
         width: 95%;
         padding: 1.5rem;
     }

     .ord-modal-buttons {
         flex-direction: column;
     }
 }
  /*Mobile Responsive Css*/
  /* Responsive Design */
  @media (max-width: 1024px) {
      .hero {
          grid-template-columns: 1fr;
          text-align: center;
          height: fit-content;
          padding: 2rem;
      }

      .about-section {
          grid-template-columns: 1fr;
          padding: 2rem;
      }

      .contact-container {
          grid-template-columns: 1fr;
          padding: 2rem 1rem;
      }
.why-choose-us{
height: fit-content;

}
      .benefits-grid {
        
          grid-template-columns: 1fr;
          gap: 2rem;
          
      }

      .locations-grid {
          grid-template-columns: 1fr 1fr;
          padding: 2rem 1rem;
      }

     
  }

  @media (max-width: 768px) {
      header {
          flex-direction: column;
          align-items: flex-start;
      }

      .logo-container {
          justify-content: space-between;
          width: 100%;
      }

      nav ul {
          flex-direction: column;
          width: 100%;
          padding-top: 1rem;
      }
      .hero {
          grid-template-columns: 1fr;
          text-align: center;
          height: fit-content;
          padding: 2rem 1rem;
      }

      .hero h1 {
          font-size: 2.5rem;
      }

      .hero h2 {
          font-size: 1.5rem;
      }

      .hero p {
          font-size: 1rem;
          padding: 0.5rem;
      }

      .order-btn {
          width: 100%;
          text-align: center;
      }
      .mision-vision{
          padding: 1rem;
      }
      .mision-vision h4{
        font-size: 1.1rem;
      }
      .mision-vision ul{
        padding-left: 1.2rem;
    }

      .section-title,
      .about-title,
      .delivery-title,
      .contact-title {
          font-size: 2rem;
      }

      .locations-grid {
          grid-template-columns: 1fr;
      }

      .footer-container {
          grid-template-columns: 1fr;
          text-align: center;
      }
  }

  @media (max-width: 480px) {
    .hero{
        height: fit-content;
    }
      .hero h1 {
          font-size: 2rem;
      }
      .why-choose-us {
          padding: 2rem 1rem;
          height: fit-content;
      }

      .hero h2 {
          font-size: 1.2rem;
      }

      .hero p,
      .about-text,
      .contact-intro {
          font-size: 0.95rem;
      }

      .benefit-card, .mision-vision {
          padding: 1rem 0.8rem;
          border-left: 3px solid var(--primary);
      }

      .form-group input,
      .form-group textarea {
          font-size: 0.9rem;
      }

      .submit-btn {
          width: 100%;
      }
  }

  /*Order Page*/
  @media (max-width: 768px) {
      .ord-body {
          flex-direction: column;
          height: auto;
          overflow: auto;
      }

      .ord-background-section,
      .ord-form-section {
          width: 100%;
          min-width: auto;
      }

      .ord-background-section {
          padding: 2rem 1rem;
          height: 300px;
      }

      .ord-background-content h1 {
          font-size: 2rem;
      }

      .ord-background-content p {
          font-size: 1.2rem;
      }
  }
