/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  /* Navigation Styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #007ACC;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  .nav-links a:hover {
    color: #007ACC;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('box2.png'); /* Add your background image path */
    background-size: cover;
    background-position: 50% 50%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .lgo{
    width:250px;
    position: absolute;
    top:80px;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #007ACC;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #005f99;
  }
  /* Service Areas Section */
.service-areas {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .service-areas h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .areas-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .area {
    width: 200px;
    text-align: center;
  }
  
  .area img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  .area h3 {
    font-size: 20px;
    color: #007ACC;
    margin-bottom: 10px;
  }
  
  .area p {
    font-size: 14px;
    color: #555;
  }
  /* Pickup and Delivery Times Section */
.pickup-delivery {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .pickup-delivery h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .delivery-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .location {
    width: 250px;
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .location h3 {
    font-size: 22px;
    color: #007ACC;
    margin-bottom: 10px;
  }
  
  .location p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  .location ul {
    list-style-type: none;
    padding: 0;
  }
  
  .location li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
  }
  /* Footer Section */
.footer {
    background: linear-gradient(to bottom, #ffffff, #004c7f);
    padding: 20px 0;
    color: #ffffff;
    text-align: center;
  }
  
  .footer-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .company-name {
    font-size: 18px;
    font-weight: bold;
    color: #004c7f;
    margin-bottom: 10px;
  }
  
  .footer a {
    color: #004c7f;
    text-decoration: none;
  }
  
  .footer a:hover {
    color: #002c4f;
  }


/* Order Pickup Section */
.order-pickup {
  padding: 60px 20px;
  text-align: center;
}

.order-pickup h2 {
  font-size: 28px;
  color: #004c7f;
  margin-bottom: 20px;
}

.order-pickup p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.pickup-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.pickup-form label {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  display: block;
}

.pickup-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pickup-form button {
  width: 100%;
  padding: 10px;
  background-color: #004c7f;
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pickup-form button:hover {
  background-color: #003b65;
}



/* Form Heading for Address Sections */
.pickup-form h3 {
  font-size: 18px;
  color: #004c7f;
  margin-top: 20px;
  margin-bottom: 10px;
}

.pickup-form label {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  display: block;
}

.pickup-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pickup-form button {
  width: 100%;
  padding: 10px;
  background-color: #004c7f;
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pickup-form button:hover {
  background-color: #003b65;
}



  