 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff8f3;
      color: #333;
    }

    header {
      background: hsl(0, 85%, 21%);
      color: white;
      padding: 20px;
      text-align: center;
      position: relative;
    }

    .slider {
      width: 100%;
      height: 450px;
      overflow: hidden;
      position: relative;
      margin-bottom: 10px;
    }

    .slides {
  display: flex;
  width: calc(10% * 10); /* 10 images */
  animation: slide 20s linear infinite;
}


    .slides img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    @keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(-20%); }
  40% { transform: translateX(-40%); }
  60% { transform: translateX(-60%); }
  80% { transform: translateX(-80%); }
  100% { transform: translateX(0); }
}
  
    

    .order-now-banner {
      background-color: #ffcc00;
      color: #b30000;
      padding: 10px 20px;
      text-align: center;
      font-size: 1.5em;
      font-weight: bold;
      animation: pulse 2s infinite;
      border-radius: 10px;
      margin: 10px auto;
      max-width: 300px;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    .catalogue-section { padding: 20px; }

    .catalogue-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #ff6f61;
    }
    

    .catalogue {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    .cake-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.2s ease-in-out;
      cursor: pointer;
    }

    .cake-card:hover { transform: scale(1.03); }

    .cake-card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .cake-card:hover img { transform: scale(1.2); }

    .cake-info {
      padding: 15px;
    }

    .cake-info h3 {
      margin: 0;
      font-size: 1.2em;
    }

    .cake-info p {
      margin: 5px 0;
      color: #888;
    }

    form {
      background: #fff0e6;
      padding: 20px;
      margin: 20px;
      border-radius: 10px;
    }

    input, textarea, button {
      display: block;
      width: 100%;
      margin-bottom: 15px;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1em;
    }

    button {
      background-color: #ff6f61;
      color: rgb(255, 255, 255);
      border: none;
      cursor: pointer;
    }

    button:hover {
      background-color: #e65c50;
    }

    .delivery-details {
      background: #fce3d1;
      padding: 20px;
      margin: 20px;
      border-radius: 10px;
    }

    .delivery-details h2 {
      margin-top: 0;
    }

    .delivery-details ul {
      list-style: none;
      padding-left: 0;
    }

    .delivery-details li::before {
      content: "\1F370 ";
      margin-right: 5px;
    }

    .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}


    .modal-content {
      margin: 5% auto;
      display: block;
      max-width: 90%;
      max-height: 90%;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
      .order-now-top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #fff3cd;
    }

    .order-now-top {
      background: #ffcc00;
      color: #b30000;
      font-size: 1.8em;
      padding: 10px 25px;
      font-weight: bold;
      border-radius: 12px;
      cursor: pointer;
      animation: pulse 2s infinite;
    }

.whatsapp-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4em;
      color: red;
      animation: pulse 2s infinite;
    }

    .whatsapp-contact img {
      height: 40px;
      animation: pulse 2s infinite;
    }

    .whatsapp-contact span {
      color: red;
    }
  @media (max-width: 778px) {
  .slider {
    height: 180px;
  }
  .slides img {
    height: 180px;
  }
  .order-now-top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .order-now-top {
    font-size: 1.4em;
    padding: 8px 20px;
  }
  .whatsapp-contact {
    flex-direction: column;
    font-size: 1.2em;
  }
  .whatsapp-contact img {
    height: 32px;
  }
  .cake-card img {
    height: 160px;
  }
  .catalogue {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
  .order-now-banner {
    font-size: 1.2em;
    max-width: 90%;
  }
} 


 @keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }

  25% { transform: rotate(3deg); }
  50% { transform: rotate(-3deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }

      50% {
        transform: translateY(-10px);
      }
    }

   .experience-banner {
  background-color: #ffebcc;
  color: #d35400;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
}

.experience-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.veg-logo-banner {
  height: 40px;
  
}


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff8f3;
      margin: 0;
      padding: 0;
      text-align: center;
    }
    header {
      background-color: #ff6f61;
      color: white;
      padding: 20px;
    }
    .section-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
    }
    .category-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-decoration: none;
      color: #333;
      transition: transform 0.2s ease-in-out;
    }
    .category-card:hover {
      transform: scale(1.03);
    }
    .category-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .category-card h3 {
      padding: 10px;
      margin: 0;
      font-size: 1.2em;
      background: #ff6f61;
      color: white;
    }
    .down-arrow {
  font-size: 2.5em;
  display: inline-block;
  animation: bounce 1.5s infinite;
  color: #ff6f61;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}
.custom-orders {
  padding: 40px 20px;
  background: linear-gradient(to right, #fff4e6, #ffe6e6);
  text-align: center;
}

.custom-order-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease forwards;
}

.custom-order-box img {
  width: 80px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.custom-order-box h2 {
  color: #d35400;
  font-size: 2em;
  margin-bottom: 15px;
}

.custom-order-box p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 12px 0px;
  font-size: 1em;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
  transition: background 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5c;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@media (max-width: 768px) {
  .section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px;
  }

  .section-grid .cake-card {
    width: 100%;
  }

  .section-grid .cake-card img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.cupcake-slider {
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cuslides {
  display: flex;
  width: 100%;
  animation: slide 5s infinite;
}

.cuslides img {
  width: 100%;
  flex-shrink: 0;
  transition: transform 0.5s ease;
  object-fit: cover;
}

/* Keyframes for slide animation */
@keyframes slide {
  0% { transform: translateX(0); }
  50% { transform: translateX(-100%); }
 
  100% { transform: translateX(0); }
}



