* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/* 🔹 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

#chatbot-header {
  position: relative;
}

#chatbot-close {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.8;
}

#chatbot-close:hover {
  opacity: 1;
}
.hero button.order-btn,
.hero button.track-btn {
  width: 200px; /* or whatever fixed width you want */
}
.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* keeps it responsive on smaller screens */
  margin-top: 20px;
}
.hero-btns .order-btn,
.hero-btns .track-btn {
  flex: 1 1 200px; /* same width; shrink/grow responsive */
  max-width: 240px;
  padding: 14px 30px;
  font-size: 1.1rem;
}
.order-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: auto;
  border: 1px solid #f1f1f1;
}
.order-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.order-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  outline: none;
}
.order-input:focus {
  border-color: #ff758c;
  box-shadow: 0 0 6px rgba(255, 117, 140, 0.4);
}
.track-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff758c, #ff7eb3);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.track-btn:hover {
  background: linear-gradient(90deg, #ff7eb3, #ff758c);
}
.order-details {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #444;
}
.order-details p {
  margin: 6px 0;
}
.order-status {
  font-weight: bold;
  color: #28a745;
}
.order-status.completed {
  color: #007bff; 
}
.order-status.cancelled {
  color: #dc3545;
}
.track-order {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem 1.25rem;
  border: 2px solid #ff77a9; 
  border-radius: 12px;
  background: #fff0f5; 
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.15); 
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.track-order input#trackId {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #ff77a9; 
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #6a1b9a; 
  background: white;
  outline-offset: 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.track-order input#trackId::placeholder {
  color: #d58bb7; 
}
.track-order input#trackId:focus {
  border-color: #ff4d6d; 
  box-shadow: 0 0 8px #ff4d6d88; 
  background: #fff0f5;
}
.track-order button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background-color: #ff4d6d; 
  border: none;
  color: white;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  height: 42px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 77, 109, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.track-order button[type="submit"]:hover {
  background-color: #ff1e50;
  box-shadow: 0 6px 15px rgba(255, 30, 80, 0.6);
}
.hero button.order-btn,
.hero button.track-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 12px; 
  border: none;
  cursor: pointer;
  font-weight: 700;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(255, 77, 109, 0.25);
}
.hero button.order-btn {
  background: linear-gradient(135deg, #ff5f7e, #ff927e);
  box-shadow: 0 4px 8px rgba(255, 95, 126, 0.4);
  border-radius: 10px;
  padding: 14px 30px;
}
.hero button.track-btn {
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  border-radius: 10px;
  padding: 14px 30px;
}
.hero button.order-btn:hover {
  background-color: #ff1e50;
  border-color: #ff1e50;
  box-shadow: 0 6px 20px rgba(255, 30, 80, 0.6);
}
.hero button.track-btn:hover {
  background-color: #ff77a9; 
  color: white;
  border-color: #ff4d6d;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.5);
}
body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
.header {
  background: linear-gradient(90deg, #ff7eb3, #ff758c, #ff9770);
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header h1 {
  font-size: 28px;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #fff0f5;
}
.hero h2 {
  font-size: 32px;
  color: #6a1b9a;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}
.order-btn {
  background: #ff4d6d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.order-btn:hover {
  background: #ff1e50;
}
.slider {
  width: 100%;
  overflow: hidden;
  height: 600px;
  position: relative;
}
.slides {
  display: flex;
  width: max-content;
  animation: slide 9s infinite;
}
.slides img {
  width: 100vw;
  height: 600px;
  object-fit: cover;
}
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100vw); }
  66% { transform: translateX(-200vw); }
  100% { transform: translateX(0); }
}
.featured {
  padding: 40px 20px;
  text-align: center;
  background: #fff0f5;
}
.featured h2 {
  margin-bottom: 25px;
  color: #9c27b0;
}
.gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow-x: hidden; 
  padding: 0 20px; 
  box-sizing: border-box;
}
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 100%;
  box-sizing: border-box;
}
.gallery {
  overflow-x: auto;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}
.gallery::-webkit-scrollbar {
  display: none;
}
.card {
  min-width: 230px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 2px 6px #ff7eb3aa;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover img {
  transform: scale(1.05);
}
.card:hover {
  box-shadow: 0 4px 15px #ff4d6dbb;
  border: 3px solid #ff4d6d;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff4d6d;
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.scroll-btn:hover {
  background: #ff1e50;
}
.left-btn { left: 10px; }
.right-btn { right: 10px; }
.testimonials {
  background: #fff;
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 18px #f06292bb;
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 30px;
  color: #9c27b0;
}
.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial {
  background: #ffe5f0;
  border-radius: 12px;
  padding: 18px 24px;
  max-width: 300px;
  font-style: italic;
  box-shadow: inset 0 0 8px #ddd;
  flex: 1 1 300px;
}
.testimonial p {
  font-size: 16px;
}
.order {
  background: #fff0f5;
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #f06292aa;
}
.order h2 {
  margin-bottom: 25px;
  color: #9c27b0;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  
}
.form-group {
  flex:  1 1 200px;
  display: flex;
  flex-direction: column;
  
}
label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #6a1b9a;
}
input[type="text"],
input[type="tel"],
select,
textarea,
input[type="file"] {
  padding: 10px;
  border: 2px solid #ff77a9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
  width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #ff4d6d;
  box-shadow: 0 0 8px #ff4d6daa;
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 60px;
}
button[type="submit"] {
  background: #ff4d6d;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  align-self: center;
  width: 200px;
  transition: background 0.3s;
}
button[type="submit"]:hover {
  background: #ff1e50;
}
.file-help {
  font-size: 12px;
  color: #666;
  margin-top: -12px;
  margin-bottom: 8px;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  z-index: 1000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
.footer {
  background: linear-gradient(90deg, #ff7eb3, #ff758c, #ff9770);
  color: white;
  padding: 25px 40px;
  text-align: center;
  font-size: 16px;
}
.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.social-links a i {
  margin-right: 6px;
}
.whatsapp-float,
.insta-float {
  position: fixed;
  right: 20px;
  font-size: 28px;
  color: white;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px #ff4d6d99;
  z-index: 1500;
  transition: background-color 0.3s ease;
}
.whatsapp-float {
  bottom: 90px;
  background: #25d366;
}
.whatsapp-float:hover {
  background: #1da851;
}
.insta-float {
  bottom: 20px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.insta-float:hover {
  filter: brightness(0.9);
}
@media (max-width: 640px) {
  .order-card,
  .featured,
  .testimonials,
  .order,
  .track-order {
    margin: 20px;
    padding: 20px;
  }
  .gallery {
    gap: 12px;
  }
  .gallery .card {
    min-width: 180px;
    height: 250px;
  }
  .header h1 {
    font-size: 22px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero button.order-btn,
  .hero button.track-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .order-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
#trackResult section {
  max-width: 100%;
  width: 100%;
  max-width: 380px; 
  margin: 1rem auto;
  padding: 1.25rem 1.5rem;
  border: 2px solid #ff77a9;
  border-radius: 16px;
  background: #fffdfd;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 6px 16px rgba(255, 77, 109, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#trackResult section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.25);
}
#trackResult p:first-child {
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: center;
  color: #28a745; 
}
#trackResult p[style*="red"] {
  color: #dc3545 !important;
  font-weight: bold;
  text-align: center;
}
#trackResult strong {
  color: #6a1b9a;
}
#trackResult p {
  margin: 6px 0;
  word-wrap: break-word;
}
#trackResult .status {
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 6px;
}
#trackResult .status.pending {
  background: #fff3cd;
  color: #856404;
}
#trackResult .status.completed {
  background: #d4edda;
  color: #155724;
}
#trackResult .status.cancelled {
  background: #f8d7da;
  color: #721c24;
}
@media (max-width: 480px) {
  #trackResult section {
    max-width: 90%;
    padding: 1rem;
    font-size: 0.9rem;
  }
}
.progress-container {
  width: 100%;
  background-color: #f8d7da; /* Light theme color */
  border-radius: 8px;
  overflow: hidden;
  height: 10px;
  margin-top: 10px;
  display: none; /* hidden until upload starts */
}

#progressBar {
  width: 0%;
  height: 100%;
  background-color: #721c24; /* Dark theme color */
  transition: width 0.3s ease-in-out;
}

#uploadStatus {
  font-size: 14px;
  color: #721c24;
  margin-top: 6px;
}
/* ✅ Fix for Hero Section Image Scaling */
.hero img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps the whole painting visible */
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

/* ✅ Use this if your hero uses a background image */
.hero {
  background-size: contain; /* or cover for full-width banners */
  background-position: center;
  background-repeat: no-repeat;
}
/* === Image Popup Overlay === */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
  user-select: none;
}

.popup-close:hover {
  color: #ff5555;
}
/* ===== FINAL CLEAN CHATBOT ===== */

#chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 420px;

  display: none; /* ✅ hide initially */

  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 9999;
}
#chatbot-bubble {
  position: fixed;
  bottom: 160px;   /* above WhatsApp */
  right: 20px;

  width: 60px;
  height: 60px;

  background: linear-gradient(135deg, #ff6b81, #ff8fa3);
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  cursor: pointer;

  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 9999;
}

#chatbot-bubble:hover {
  transform: scale(1.1);
}
/* Header */
#chatbot-header {
  padding: 14px;
  background: linear-gradient(135deg, #ff6b81, #ff8fa3);
  color: white;
  text-align: center;
  font-weight: bold;
}

/* Messages */
#chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  background: #f7f7f8;
}

/* Message bubbles */
.user {
  align-self: flex-end;
  background: #ff6b81;
  color: white;
  padding: 10px 14px;
  border-radius: 16px;
}

.bot {
  align-self: flex-start;
  background: white;
  border: 1px solid #eee;
  padding: 10px 14px;
  border-radius: 16px;
}

/* Input area */
#chatbot-input-area {
  display: flex;
  padding: 10px;
  background: white;
  border-top: 1px solid #eee;
}

#chatbot-input {
  flex: 1;
  border: none;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 10px 14px;
  outline: none;
}

#chatbot-input-area button {
  margin-left: 8px;
  border: none;
  background: #ff6b81;
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
}