/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fffaf3;
  color: #333;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0e726f; /* peacock green */
  padding: 10px 20px;
}

.logo {
  height: 120px
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}
header {
  background: linear-gradient(90deg, #004d40, #00695c);
}


header .phone {
  background: white;
  color: #0e726f;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

header .phone:hover {
  background: #e91e63;
  color: white;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

/* Order Now button animation */

 @keyframes colorPulse {
  0% {
    background: linear-gradient(90deg, #e91e63, #ff9800);
    transform: scale(1);
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.4);
  }
  25% {
    background: linear-gradient(90deg, #ff9800, #4caf50);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  }
  50% {
    background: linear-gradient(90deg, #4caf50, #2196f3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.6);
  }
  75% {
    background: linear-gradient(90deg, #2196f3, #e91e63);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
  }
  100% {
    background: linear-gradient(90deg, #e91e63, #ff9800);
    transform: scale(1);
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.4);
  }
 }

.order-now-button {
  color: white;
  font-size: 1.1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  animation: colorPulse 3s infinite;  /* add this line */
}

/* Pulse animation */
@keyframes pulse {
  0%   { transform: scale(1); box-shadow: 0 0 5px rgba(255, 152, 0, 0.4); }
  50%  { transform: scale(1.05); box-shadow: 0 0 15px rgba(255, 152, 0, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 152, 0, 0.4); }
}

  color: white;
  font-size: 1.1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite;
}

.order-now-button:hover {
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.6);
}

/* Pulse animation */
@keyframes pulse {
  0%   { transform: scale(1); box-shadow: 0 0 5px rgba(255, 152, 0, 0.4); }
  50%  { transform: scale(1.05); box-shadow: 0 0 15px rgba(255, 152, 0, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 152, 0, 0.4); }
}
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;  /* icons க்கு இடையில gap */
}

.header-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.header-social a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-social a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(255,255,255,0.7);
}



.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(135deg, #ffe3ec, #fffefc);
  min-height: 80vh;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #d81b60;
  margin-bottom: 20px;
  animation: fadeSlideIn 1.5s ease;
}

.hero p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
  animation: fadeSlideIn 1.8s ease;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #e91e63, #ff9800);
  color: white;
}

.btn.secondary {
  background: white;
  color: #e91e63;
  border: 2px solid #e91e63;
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.hero-side-image img {
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}

/* Simple fade + slide animation */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating animation for image */
@keyframes float {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-10px);}
}








/* 
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.btn {
  background: #e91e63;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
} */

.about {
  text-align: center;
  padding: 60px 20px;

}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease forwards;
}

.about-image video {
  width: 450px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  object-fit: cover;
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-text h2 {
  font-size: 1.8em;
  margin-bottom: 5px;
  color: #ffd700;
}

.about-text small {
  display: block;
  font-size: 20px;
  color: #333;
  font-size: bold;
  margin-bottom: 8px;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin-bottom: 15px;
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  font-size: bold;
  margin: 0;
}

.btn {
  background: #e91e63;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.btn:hover {
  background: #ffd700;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products {
  text-align: center;
  padding: 60px 20px;

}

.products h2 {
  font-size: 1.8em;
  color: #0e726f;
  margin-bottom: 5px;
}
.product-video {
  text-align: center;
  margin: 20px auto;
}

.product-video video {
  width: 300px;  /* adjust size as you like */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.products .divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.product-list {
  display: flex;
 
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.product {
  width: 150px;
  background: #e91e63; 
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
  width: 300px;
  height: 200px;
  display: block;
  object-fit: cover;
}

.product p {
  margin: 5px 0;
  font-size: 15px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

  color: white;
}

.products-description {
  max-width: 800px;
  margin: 15px auto;
  padding: 0 20px;
  text-align: center;
}

.products-description p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
}


/* Price list section with background image + overlay */
.price-list {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  color: white;
  background: url('images/pattasu-bg.jpg') no-repeat center/cover;
}

.price-list::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 0;
}

.price-list * {
  position: relative;
  z-index: 1;
}

.price-list h2 {
  font-size: 1.8em;
  margin-bottom: 5px;
}

.price-list .divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 0 auto 15px auto;
  border-radius: 2px;
}

.price-list p {
  font-size: 1em;
  margin-bottom: 20px;
}

.download-btn {
  background: #e91e63;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
}

.download-btn:hover {
  background: #c2185b;
  transform: scale(1.05);
}

/* Modal backdrop */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: left;
  position: relative;
}

.modal-content h3 {
  margin-top: 0;
  color: #0e726f;
  text-align: center;
}

.close-btn {
  position: absolute;
  right: 10px; top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Table styling */
.modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.modal-content table th,
.modal-content table td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: left;
  font-size: 0.85em;
}

.modal-content table th {
  background: #e91e63;
  color: white;
}

.modal-content table tr:last-child td {
  font-weight: bold;
  color: #0e726f;
}

/* Checkbox & qty input size */
.modal-content table input[type="checkbox"] {
  transform: scale(1.2);
}

.modal-content table input[type="number"] {
  width: 50px;
  padding: 2px;
}



.contact {
  text-align: center;
  padding: 60px 20px;
   background: #fffaf3; 
}

.contact h2 {
  font-size: 1.8em;
  color: #0e726f;
  margin-bottom: 5px;
}

.contact .divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95em;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  background: #e91e63;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c2185b;
}

.contact-info {
  max-width: 300px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 0.95em;
  color: #333;
}

.contact-info iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
}

.contact {
  text-align: center;
  padding: 60px 20px;
  /* background: #fffaf3; */
}

.contact h2 {
  font-size: 1.8em;
  color: #0e726f;
  margin-bottom: 5px;
}

.contact .divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95em;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  background: #e91e63;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c2185b;
}

.contact-info {
  max-width: 350px;
}

.contact-info .contact-details {
  margin-bottom: 12px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 0.95em;
  color: #333;
}

.contact-info iframe {
  width: 600px;
  height: 270px; /* bigger map */
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Read More / Download Button style */
.download-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #e91e63;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: bold;
}

.download-btn:hover {
  background: #d81b60;
}


.footer {
  background: #0e726f;
  color: white;
  text-align: center;
  padding: 20px 15px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer p {
  margin: 0;
  font-size: 0.9em;
}
footer {
  background: #0e726f;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-social a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-social a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}


.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

.about-hero {
  background: url('images/about-banner.jpg') no-repeat center/cover;
  color: #ffd700;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 2em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.about-description {
  max-width: 800px;
  margin: 10px auto 20px auto;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.8;
  color: white;           /* gold/yellow */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);  /* subtle shadow for readability */
  font-weight: 500;
  padding: 0 15px;
}

.about-page {
  background: url('/image/bg-background.jpg') no-repeat center top;
  background-size: cover;
  background-attachment: fixed; /* optional, scrolling effect */
}


.about-page-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center; /* center heading & cards */
}

.about-page-text h2 {
  color: #0e726f;
  margin-top: 20px;
}

.about-page-text p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.about-list li {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 5px;
}
.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.about-card .icon {
  font-size: 2em;
  justify-content: "";
  margin-bottom: 10px;
  color: #0e726f; /* brand color */
}


.about-card {
  background: white;
  border: 1px solid #eee;
  border-top: 4px solid #0e726f; /* brand color top bar */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  flex: 1 1 240px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card h2 {
  color: #0e726f;
  font-size: 1.2em;
  margin-top: 0;
}

.about-card p {
  font-size: 0.95em;
  color: #333;
  margin: 10px 0 0 0;
  line-height: 1.5;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.about-page-text h2, 
.about-page-content h2 {
  color: #0e726f;
  margin-top: 30px;
  text-align: center;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 0 auto 15px auto;
  border-radius: 2px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  text-align: center;
}

.about-list li {
  font-size: 1em;
  color: #333;
  margin-bottom: 5px;
}
.about-title {
  color: #ffd700;
  margin-top: 30px;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0e726f, #e91e63);
  margin: 10px auto 15px auto;
  border-radius: 2px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  text-align: center;
}

.about-list li {
  font-size: 1.1em;
  color: white;
  margin-bottom: 5px;
}
.products {
  padding: 40px;
  text-align: center;
}

.products h2 {
  color: #005f56;  /* peacock green */
  margin-bottom: 20px;
}
.products-description {
  text-align: center;
  font-size: 1.25rem;
  color: #444;
  max-width: 800px;
  margin: 15px auto 35px;
  line-height: 1.8;
  font-weight: 600;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.product-card h3 {
  margin: 5px 0;
  font-size: 1em;
}

.product-card .price {
  background: #e91e63;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.9em;
}
footer {
  background: #0e726f;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;   /* ✅left: 20px; remove pannunga, right add pannunga */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.95em;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 999;
}
.whatsapp-chat img {
  width: 50px;
  height: 50px;
}

.call-chat {
  position: fixed;
  bottom: 70px;           /* whatsapp-chat bottom + gap */
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
   background-color: white;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95em;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 999;
}

.call-chat img {
  width: 50px;
  height: 50px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fffaf5;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #0e726f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
header img {
  height: 50px;
}
header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}
header nav a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #0e726f;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
/* Body background with crackers image */
body {
  font-family: 'Segoe UI', sans-serif;
  background:
    /* linear-gradient(rgba(223, 180, 180, 0.8), rgba(185, 148, 148, 0.8)),  */
    /* url("/image/bg-background.jpg") center/cover no-repeat fixed;    
  margin: 0; */
  padding: 0;
  color: #333;
}

/* Card container */
.card {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;   /* white card */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: center;

  /* fade zoom in when load */
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 0.8s ease forwards;
}

/* Animation keyframes */
@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Heading */
.card h2 {
  font-size: 2rem;
  color: #0e726f;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Subtitle */
.subtitle {
  font-size: 1rem;
  color: #0e0d0d;
  margin-bottom: 20px;
  font-size: bold;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* Table header */
th {
  background: #0e726f;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  font-size: 0.95em;
  font-size: bold;
}

/* Alternate row colors */
tbody tr:nth-child(odd) {
  background: #e0ccd2; 
}
tbody tr:nth-child(even) {
  background: skyblue; 
}

/* Hover effect on product rows */
tbody tr {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
tbody tr:hover {
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* Table cells */
td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

/* Images inside table */
td img {
  width: 50px;
  border-radius: 4px;
}

/* Quantity input */
input[type="number"] {
  width: 60px;
  padding: 4px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer rows */
tfoot td {
  font-weight: bold;
  text-align: right;
  padding: 10px;
}

/* Grand total special style */
.grand td {
  background: #e0f5f3;
  color: #0e726f;
}

/* Order button */

button {
  background: #e91e63;
  color: white;
  border: none;
  padding: 10px 22px;
  font-size: 1.1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #d81b60;
  transform: scale(1.05);
}

/* Thank you message */
.thank-you {
  display: none;
  margin-top: 15px;
  color: #0e726f;
  font-size: 1.2em;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }
  th, td {
    font-size: 0.9em;
    padding: 8px;
  }
  td img {
    width: 40px;
  }
}
.bg-crackers {
  background:
    /* linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), */
    url("/image/bg-background.jpg") center/cover no-repeat fixed;
}
/* Body background with crackers image - only pages that have class="bg-crackers" */
.bg-crackers {
  background:
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    url("images/crackers-bg.png") center/cover no-repeat fixed;
}

/* General body font & color */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Safety Tips container (white card in center) */
.safety-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  text-align: center;

  /* fade zoom in on load */
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 0.8s ease forwards;
}

/* Title */
.safety-container h2 {
  font-size: 2rem;
  color: #0e726f;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Subtitle */
.safety-container .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Tips grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

/* Each tip card */
.tip-card {
  background: #e8f6f4;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 1.1em;  /* icon & text bigger */
  color: #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect: bounce + shadow */
.tip-card:hover {
  animation: bounce 0.6s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Bounce animation keyframes */
@keyframes bounce {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Fade zoom in when card loads */
@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .safety-container {
    padding: 20px;
  }
  .tip-card {
    font-size: 1em;
  }
}

/* Body background with crackers image - only pages that have class="bg-crackers" */
.bg-crackers {
  background:
    url("/image/diwali.jpg") center/cover no-repeat fixed;
}
.section-heading {
  font-size: 1.8rem;
  color: #0e726f;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
/* Heading container to center */
.heading-container {
  text-align: center;
  margin: 20px 0;
}

/* Do’s and Don’ts heading style */
.dos-donts-heading {
  font-size: 2em;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #e91e63, #ff9800);
  padding: 10px 25px;
  display: inline-block;
  border-radius: 30px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Animation for pulse effect */
@keyframes pulse {
  0%   { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
  50%  { transform: scale(1.05); box-shadow: 0 6px 15px rgba(0,0,0,0.4); }
  100% { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
}



/* Wrapper */
.dos-donts {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Individual cards */
.dos, .donts {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  flex: 1 1 250px;             /* responsive and smaller */
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card headings */
.dos h4, .donts h4 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Icon next to heading */
.dos h4::before {
  content: "✔️";
  margin-right: 8px;
  font-size: 1.2rem;
}
.donts h4::before {
  content: "❌";
  margin-right: 8px;
  font-size: 1.2rem;
}

/* List inside cards */
.dos li, .donts li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  list-style: none;            /* remove default bullets */
  display: flex;
  align-items: center;
}

/* Optional: bullet icon in list */
.dos li::before {
  content: "✔️";
  margin-right: 6px;
  font-size: 0.9rem;
}
.donts li::before {
  content: "❌";
  margin-right: 6px;
  font-size: 0.9rem;
}


/* General reset & font */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff8f8;
}

/* Contact heading */
.contact-heading {
  text-align: center;
  font-size: 2.2em;
  color: #e91e63;
  margin: 30px 0;
  animation: pulse 2s infinite;
}

/* Contact cards container */
.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

/* Each card */
.contact-card {
  background:  linear-gradient(90deg, #e91e63, #ff9800);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card img {
  width: 50px;
  margin-bottom: 10px;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Contact form */
.contact-form {
  max-width: 500px;
  background: white;
  margin: auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e91e63;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
}
.contact-form button {
  width: 100%;
  background: linear-gradient(90deg, #e91e63, #ff9800);
  color: white;
  font-size: 1.1em;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.contact-form button:hover {
  transform: scale(1.05);
}
/* Thank you message style */
.thank-you-message {
  display: none;
  margin-top: 15px;
  color: #0e726f;
  font-size: 1.1em;
  font-weight: bold;
  animation: fadeIn 1s ease forwards;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Running banner */
.sale-banner {
  background: #d50000;               /* Red background */
  color: yellow;                     /* Text color */
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  z-index: 1000;
  padding: 6px 0;
  font-weight: bold;
  text-shadow: 0 0 5px orange, 0 0 10px red;
}

.sale-text {
  display: inline-block;
  padding-left: 100%;                /* Start off screen */
  animation: scroll-left 20s linear infinite;
  font-size: 1rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Logo center or left */
.logo {
  text-align: center;                /* Or left if you prefer */
  margin: 10px 0;
}

.logo img {
  height: 80px;                      /* adjust size */
}

/* Navbar style */
.navbar {
  background: teal;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: rgba(255,255,255,0.2);
}

.download-pricelist {
  position: fixed;
  right: 0;  /* right side fix panna */
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #e91e63, #ff9800);
  color: white;
  padding: 10px 15px;
  border-radius: 0 8px 8px 0;
  font-weight: bold;
  text-decoration: none;
  animation: floatUpDown 3s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

@keyframes floatUpDown {
  0%   { transform: translateY(-50%) translateY(0); }
  50%  { transform: translateY(-50%) translateY(-10px); }
  100% { transform: translateY(-50%) translateY(0); }
}

.download-pricelist:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}



