body {
    margin: 0; /* Reset margin to avoid any default margin issues */
    font-size: 14px;
  }

  .running-text-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: 45px;
    line-height: 21px;
    width: 100%;
    box-shadow: 0 2px 15px rgba(102, 126, 234, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .running-text {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
    font-weight: 500;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .mycontainer {
    padding: 8px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
  }


.productcontainer {
  padding: 25px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
  margin-bottom: 20px;
}
.crackertable {
  width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  font-size: 12px;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid #9ca3af;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Alternating colors for rows excluding the specified classes */
.crackertable tr:not(.TRclass_0):not(.TRclass_21):not(.TRclass_25):not(.TRclass_26):not(.TRclass_28):not(.TRclass_29):not(.TRclass_38):not(.TRclass_41):not(.TRclass_43):not(.TRclass_46):not(.TRclass_49):not(.TRclass_53):not(.TRclass_60):not(.TRclass_65):not(.TRclass_66):not(.TRclass_73):not(.TRclass_76):not(.TRclass_83):not(.TRclass_84):not(.TRclass_87):not(.TRclass_90):not(.TRclass_92):not(.TRclass_97):not(.TRclass_101):not(.TRclass_121):not(.TRclass_135):not(.TRclass_174):nth-of-type(odd) {
  background-color: #ffffff;
}

.crackertable tr:not(.TRclass_0):not(.TRclass_21):not(.TRclass_25):not(.TRclass_26):not(.TRclass_28):not(.TRclass_29):not(.TRclass_38):not(.TRclass_41):not(.TRclass_43):not(.TRclass_46):not(.TRclass_49):not(.TRclass_53):not(.TRclass_60):not(.TRclass_65):not(.TRclass_66):not(.TRclass_73):not(.TRclass_76):not(.TRclass_83):not(.TRclass_84):not(.TRclass_87):not(.TRclass_90):not(.TRclass_92):not(.TRclass_97):not(.TRclass_101):not(.TRclass_121):not(.TRclass_135):not(.TRclass_174):nth-of-type(even) {
  background-color: #f8fafc;
}

/* Specific styling for excluded rows - normalized like regular rows */
.TRclass_0,
.TRclass_21,
.TRclass_25,
.TRclass_26,
.TRclass_28,
.TRclass_29,
.TRclass_38,
.TRclass_41,
.TRclass_43,
.TRclass_46,
.TRclass_49,
.TRclass_53,
.TRclass_60,
.TRclass_65,
.TRclass_66,
.TRclass_73,
.TRclass_76,
.TRclass_83,
.TRclass_84,
.TRclass_87,
.TRclass_90,
.TRclass_92,
.TRclass_97,
.TRclass_101,
.TRclass_121,
.TRclass_135,
.TRclass_174 {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #d1d5db !important;
  font-weight: normal;
}

/* Hide quantity inputs for yellow categories (category rows) */
.category-row input[type="number"] {
  display: none !important;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 2px solid #d1d5db !important;
}

/* Professional table header styling */
.crackertable th {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #374151;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 8px;
  border-bottom: 3px solid #9ca3af !important;
}

/* Professional table cell styling */
.crackertable td {
  padding: 10px 8px;
  vertical-align: middle;
  transition: background-color 0.2s ease;
}

/* Hover effect for better user experience */
.crackertable tbody tr:hover {
  background-color: #f9fafb !important;
}
input[type="number"] {
  border: 2px solid #3b82f6 !important;
  width: 50px;
  height: 35px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1f2937;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

input[type="number"]:focus {
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  transform: translateY(-1px);
  outline: none;
}

input[type="number"]:hover {
  border-color: #2563eb !important;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

/* Special styling for quantity input boxes */
.QutyWidth input[type="number"] {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid #3b82f6 !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.QutyWidth input[type="number"]::before {
  content: "📦";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.QutyWidth input[type="number"]:focus {
  border-color: #1d4ed8 !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3) !important;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  transform: translateY(-2px) scale(1.02);
}

.QutyWidth input[type="number"]:hover {
  border-color: #2563eb !important;
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.25);
  transform: translateY(-2px) scale(1.01);
}
.productdatas {
  padding: 5px;
  border: 1px solid black !important;
  width: 100%;
}
.productbtn {
  width: 100%;
  background-image: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  color:#FFFFFF;
  box-shadow: 0 6px 14px rgba(0, 114, 255, 0.35);
  transition: transform 0.08s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.productbtn:hover {
  box-shadow: 0 8px 22px rgba(0, 114, 255, 0.45);
}
.productbtn:active {
  transform: translateY(1px);
}

th {
  padding: 8px 6px;
  text-align: center;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-size: 11px;
}
td {
  padding: 6px 4px;
  text-align: center;
  font-size: 11px;
}

footer {
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: white;
}
.TRclass_0 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
  font-weight: bold;
}
.TRclass_0 input {
  display: none;
}
.TRclass_21 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_21 input {
  display: none;
}
.TRclass_26 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_26 input {
  display: none;
}
.TRclass_29 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_29 input {
  display: none;
}
.TRclass_41 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_41 input {
  display: none;
}
.TRclass_46 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_46 input {
  display: none;
}
.TRclass_53 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_53 input {
  display: none;
}
.TRclass_66 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_66 input {
  display: none;
}
.TRclass_73 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  margin-left: 2rem;
}
.TRclass_73 input {
  display: none;
}
.TRclass_84 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
  font-size: 14px;
}
.TRclass_84 input {
  display: none;
}
.TRclass_92 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
}
.TRclass_92 input {
  display: none;
}
.TRclass_97 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
}
.TRclass_97 input {
  display: none;
}
.TRclass_101 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
}
.TRclass_101 input {
  display: none;
}
.TRclass_135 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
}
.TRclass_135 input {
  display: none;
}
.TRclass_174 {
  background: #E42E56;
  color: white;
  border-right: none;
  border-color: #E42E56;
}
.TRclass_174 input {
  display: none;
}
#Showsuccessfully {
  display: none;
  padding: 14px;
  text-align: justify;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  margin: 6px;
  border: none;
}

.image-content {
  margin: auto;
  display: block;
  max-width: 90%; /* Adjust width as needed */
  max-height: 80%; /* Adjust height as needed */
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp_float img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.whatsapp_float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* Container for the button */
.center-button-container {
  position: relative; /* Ensure relative positioning of the parent container */
  height: 100px; /* Optional: height to position the button in the container */
}

.hidden {
  display: none;
}

#OrderNowbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 20px auto;
  padding: 12px;
  border: none !important;
  background-image: linear-gradient(135deg, #00c853 0%, #00b09b 100%);
  color: white;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 6px 14px rgba(0, 176, 155, 0.35);
  transition: transform 0.08s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  position: relative;
  z-index: 1000;
}
#OrderNowbtn:hover {
  box-shadow: 0 8px 22px rgba(0, 176, 155, 0.45);
}
#OrderNowbtn:active {
  transform: translateY(1px);
}

/* Fixed positioning when scrolled */
#OrderNowbtn.fixed {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* Modern Navbar Styling */
.mynav {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
  padding: 6px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-item {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 8px;
  position: relative;
}

.nav-link {
  color: #f9fafb !important;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: #93c5fd !important;
  background: rgba(147, 197, 253, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Enhanced Logo Styling */
.logo_main {
  width: 30%;
  transition: all 0.3s ease;
}

.logo_main:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Social Media Icons Enhancement */
.mysocial img {
  transition: all 0.3s ease;
  margin: 0 8px;
  filter: brightness(0.9);
}

.mysocial img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Fancy Cracker Burst Animation */
@keyframes crackerBurst {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(2) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(180deg);
    opacity: 1;
  }
}

@keyframes firework {
  0% {
    transform: translateY(0) scale(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}

/* Cracker Animation Elements */
.cracker-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.cracker-burst {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ff6b6b, #ff8e53, #ffd93d);
  border-radius: 50%;
  animation: crackerBurst 1.5s ease-out forwards;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffd93d;
  border-radius: 50%;
  animation: sparkle 1s ease-out infinite;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f);
  border-radius: 50%;
  animation: firework 2s ease-out forwards;
}

/* Enhanced Button Animations */
.productbtn, #OrderNowbtn {
  position: relative;
  overflow: hidden;
}

.productbtn::before, #OrderNowbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.productbtn:hover::before, #OrderNowbtn:hover::before {
  left: 100%;
}

/* Enhanced Table Styling */
.crackertable {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.crackertable th {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.crackertable td {
  transition: background-color 0.2s ease;
}

.crackertable tr:hover td {
  background-color: rgba(59, 130, 246, 0.05) !important;
}

/* Enhanced Form Styling */
.form-control {
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  padding: 12px 16px;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

/* Enhanced Modal Styling */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border-radius: 16px 16px 0 0;
  border-bottom: none;
}

.modal-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Enhanced Product Summary */
#productSummary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  padding: 15px;
  max-width: 70%;
  border-radius: 12px;
  font-size: 12px;
  align : center;
  justify-content: center;
  display: flex;
  margin: auto;
}

#productSummary strong {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Input Styling */
input[type="number"] {
  border: 2px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
}

input[type="number"]:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  transform: translateY(-1px) !important;
}

/* Enhanced WhatsApp Button */
.whatsapp_float {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp_float:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  .nav-item {
    margin: 5px 0;
  }
  
  .nav-link {
    padding: 15px 20px !important;
    text-align: center;
  }
  
  .logo_main {
    width: 60% !important;
  }
  
  .mynav {
    padding: 10px 0;
  }
}

.mynav {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
  padding: 6px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.nav-item {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link {
  color: #f9fafb !important;
}
.nav-link:hover {
  color: #93c5fd !important;
}
.iconc {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconc img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.iconc:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.textc {
  width: 90%;
  color: #e2e8f0;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.mylinks {
  color: #e2e8f0;
  text-decoration: none;
  margin-left: -15px;
  transition: all 0.3s ease;
  position: relative;
}

.mylinks:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.mylinks::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  transition: width 0.3s ease;
}

.mylinks:hover::after {
  width: 100%;
}
.mycontainer {
  padding-top: 5px;
  padding-bottom: 5px;
  background: linear-gradient(90deg, #7f1d1d 0%, #5b21b6 100%);
  padding-left: 35px;
}
.logo_main {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mymenu {
  text-align: center;
  width: 45%;
  margin: auto;
}
.mycarosulcon {
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0;
}

.carousel {
  border-radius: 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}

.carousel-item img {
  transition: transform 0.6s ease;
}

.carousel-item:hover img {
  transform: scale(1.02);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin: auto 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}
.mysocial {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.titlec {
  text-align: center;
  padding: 30px 0;
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.titlec::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}
#submittedData {
  display: none;
}

.QutyWidth {
  width: 15%;
}

#productSummary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin: 20px auto;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  border-radius: 10px;
  width: 80%;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  transition: transform 0s ease;
  position: relative;
}

#productSummary.fixed {
  position: fixed;
  top: 0; /* stays at the top of the viewport when scrolled past */
  left: 50%; /* ensures it's centered */
  transform: translateX(-50%);
  z-index: 1000; /* ensures it's on top of other content */
}

#productSummary div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#productSummary strong {
  font-weight: 700;
  color: #0f172a;
}

#productSummary span {
  font-weight: 600;
  color: #2563eb;
}

/* -------------------------------- Media Qurry -------------------- */

@media screen and (max-width: 768px) {
  .mycontainer {
    display: none;
  }
  
  /* Professional Mobile Navbar */
  .mynav {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    padding: 20px 25px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 2px solid #e2e8f0 !important;
    position: relative;
    overflow: hidden;
  }
  
  .mynav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    animation: shimmer 3s ease-in-out infinite;
  }
  
  .navbar-nav {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
  }
  
  .navbar-nav .nav-item {
    margin: 0;
    width: 100%;
    position: relative;
  }
  
  .navbar-nav .nav-item .nav-link {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border-radius: 12px;
    margin: 6px 0;
    padding: 16px 20px !important;
    text-align: center;
    display: block;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
  }
  
  .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }
  
  .navbar-nav .nav-item .nav-link:hover::before {
    left: 100%;
  }
  
  .navbar-nav .nav-item .nav-link:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
  
  .navbar-nav .nav-item .nav-link:active {
    transform: translateY(-1px) scale(0.98);
  }
  
  .navbar-nav .nav-item .nav-link.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
  }
  
  .navbar-nav .nav-item .nav-link.disabled {
    display: none !important;
  }
  
  /* Enhanced Hamburger Menu */
  .navbar-toggler {
    border: 3px solid #3b82f6;
    border-radius: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233b82f6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
  }
  
  /* Professional Logo Styling */
  .logo_main {
    width: 50% !important;
    margin-bottom: 10px;
  }
  
  .logo_main img {
    width: 100% !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
  }
  
  .logo_main img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  }
  
  /* Hide Footer */
  footer {
    display: none !important;
  }
  
  /* Enhanced Mobile Animations */
  @keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
  }
  
  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-nav .nav-item {
    animation: slideInDown 0.6s ease forwards;
  }
  
  .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
  
  /* Mobile Hero Section */
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
  }
  
  .hero-graphic {
    height: 80px;
    margin-top: 30px;
  }
  
  .firework-burst {
    width: 60px;
    height: 60px;
  }
  
  .discount-badge {
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Mobile Header */
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-item {
    font-size: 12px;
  }
  
  .modern-brand {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .brand-text h3 {
    font-size: 20px;
  }
  
  .brand-text p {
    font-size: 11px;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .logo_main {
    width: 40% !important;
  }
  .mysocial {
    display: none;
  }
  .logo_main img {
    width: 90% !important;
  }
  .crackertable{
      width: 80%;
      margin-left: 3%;
  }
  tbody{
      width: 80%;
  }
  .cracker_detail {
    width: 100%;
  }
  th,
  td {
    padding: 0px !important;
    font-size: 9px;
  }
  .productcontainer {
    padding: 0px !important;
  }
  .product_main {
    width: 100% !important;
    padding-top: 10px;
  }
  .cracker_detail {
    position: static !important;
  }
  .mymenu {
    text-align: center !important;
    width: 60% !important;
  }
  .modal {
        position: fixed !important;
        top: 10% !important;
        left: 0 !important;
        right: 0 !important;
        overflow-y: auto !important;
        width: 100% !important;
    }
  .modal-dialog {
    width: 100%; /* Make the modal take up the entire width on mobile */
    margin: 0; /* Remove any margin around the modal */
  }
  .modal-content {
    padding: 10px; /* Add padding for better layout */
    max-height: 80vh; /* Ensure the modal fits within the screen */
    overflow-y: auto; /* Allow scrolling for content that overflows */
  }
  .form-group {
    margin-bottom: 15px; /* Ensure proper spacing between form fields */
  }
    #OrderNowbtn {
    width: 150px;  /* Adjust button width for mobile */
    bottom: 10px;  /* Reduce space from bottom */
    padding: 8px;  /* Adjust padding for mobile */
  }
  #productSummary {
    flex-direction: column;
    width: 60%;
    /* Stack items vertically on smaller screens */
    font-size: 16px;
    /* Reduce font size on smaller screens */
    padding: 8px;
  }
  #productSummary div {
    justify-content: center;
    margin-bottom: 8px;
    width: 100%;
    /* Full width for items */
  }
  #productSummary.fixed {
    left: 0; /* No need for centering */
    width: 100%; /* Make it full-width */
    transform: none; /* Remove the translateX as it's not needed */
  }
  
  /* Mobile Navbar Close Button */
  .navbar-close {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  }

  .navbar-close:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  }

  .navbar-close:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
    outline: none;
  }
  
  /* Reduce units column font size */
  .units-cell {
    font-size: 10px !important;
  }
}
.images{
    width:30px;
    height:40px;
}
.images1{
    width:10px;
    height:30px;
}

/* Enhanced Product Image Styling */
.crackertable img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.crackertable img::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.crackertable img:hover {
  transform: scale(1.15) rotate(2deg);
  border-color: #ff6b6b;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
  z-index: 10;
}

.crackertable img:hover::before {
  left: 100%;
}

/* Special image effects for different product categories */
.crackertable tr:nth-child(4n+1) img {
  border-color: #ff6b6b;
  filter: hue-rotate(0deg);
}

.crackertable tr:nth-child(4n+2) img {
  border-color: #4ecdc4;
  filter: hue-rotate(90deg);
}

.crackertable tr:nth-child(4n+3) img {
  border-color: #45b7d1;
  filter: hue-rotate(180deg);
}

.crackertable tr:nth-child(4n+4) img {
  border-color: #96ceb4;
  filter: hue-rotate(270deg);
}

/* Image container styling */
.crackertable td:nth-child(2) {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  transition: all 0.3s ease;
}

.crackertable td:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  transform: translateY(-2px);
}

/* Gradient animation for images */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Special effects for category headers */
.crackertable tr:has(td:nth-child(3):contains("SPARKLERS")) img {
  animation: sparkleEffect 2s ease-in-out infinite;
}

.crackertable tr:has(td:nth-child(3):contains("BIJILI")) img {
  animation: electricEffect 1.5s ease-in-out infinite;
}

.crackertable tr:has(td:nth-child(3):contains("BOMB")) img {
  animation: explosionEffect 2.5s ease-in-out infinite;
}

/* Animation keyframes */
@keyframes sparkleEffect {
  0%, 100% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 10px #ffd700); }
}

@keyframes electricEffect {
  0%, 100% { filter: brightness(1) contrast(1); }
  50% { filter: brightness(1.4) contrast(1.3) drop-shadow(0 0 15px #00ffff); }
}

@keyframes explosionEffect {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Enhanced modal image styling */
.modal img.image-content {
  border-radius: 20px;
  border: 5px solid transparent;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) border-box;
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.modal img.image-content:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Product image loading states */
.crackertable img[src=""] {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  position: relative;
}

.crackertable img[src=""]::after {
  content: '🖼️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #999;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
  .crackertable img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 8px;
  }
  
  .crackertable td:nth-child(2) {
    padding: 6px;
  }
}

/* Image focus effects for accessibility */
.crackertable img:focus {
  outline: 3px solid #007bff;
  outline-offset: 2px;
  transform: scale(1.1);
}

/* Special category image treatments */
.crackertable tr[class*="TRclass_"]:nth-child(odd) img {
  border-style: dashed;
}

.crackertable tr[class*="TRclass_"]:nth-child(even) img {
  border-style: solid;
}

/* Premium product image effects */
.crackertable tr:has(td:nth-child(3):contains("Deluxe")) img {
  border-width: 4px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.crackertable tr:has(td:nth-child(3):contains("VIP")) img {
  border-width: 5px;
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
  animation: vipGlow 3s ease-in-out infinite;
}

@keyframes vipGlow {
  0%, 100% { box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4); }
  50% { box-shadow: 0 15px 40px rgba(138, 43, 226, 0.8), 0 0 30px rgba(138, 43, 226, 0.6); }
}

/* Additional Enhanced Image Effects */
.crackertable img {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.crackertable img:hover {
  transform: scale(1.15) rotateY(5deg) rotateX(2deg);
  filter: contrast(1.1) saturate(1.2);
}

/* Image particle effect on hover */
.crackertable td:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.crackertable td:nth-child(2):hover::after {
  width: 100px;
  height: 100px;
  opacity: 1;
}

/* Enhanced modal styling */
.modal {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.8);
}

.modal.show {
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Image category-specific animations */
.crackertable tr:has(td:nth-child(3):contains("ROCKET")) img {
  animation: rocketFloat 4s ease-in-out infinite;
}

.crackertable tr:has(td:nth-child(3):contains("FLOWER")) img {
  animation: flowerBloom 3s ease-in-out infinite;
}

.crackertable tr:has(td:nth-child(3):contains("GARLAND")) img {
  animation: garlandTwist 5s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes flowerBloom {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(5deg); }
}

@keyframes garlandTwist {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

/* Premium product special effects */
.crackertable tr:has(td:nth-child(3):contains("Mega")) img {
  border: 3px solid transparent;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700) border-box;
  background-size: 200% 200%;
  animation: premiumGlow 2s ease-in-out infinite;
}

@keyframes premiumGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Image loading skeleton */
.crackertable img:not([src]), .crackertable img[src=""] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loadingSkeleton 1.5s infinite;
}

@keyframes loadingSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Image focus ring for accessibility */
.crackertable img:focus-visible {
  outline: 3px solid #007bff;
  outline-offset: 3px;
  border-radius: 15px;
}

/* Special effects for seasonal products */
.crackertable tr:has(td:nth-child(3):contains("Diwali")) img,
.crackertable tr:has(td:nth-child(3):contains("New Year")) img {
  animation: festiveSparkle 2s ease-in-out infinite;
}

@keyframes festiveSparkle {
  0%, 100% { filter: brightness(1) saturate(1); }
  25% { filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 8px #ff6b6b); }
  75% { filter: brightness(1.1) saturate(1.2) drop-shadow(0 0 8px #4ecdc4); }
}

/* Image container hover effects */
.crackertable td:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Responsive image grid effects */
@media (max-width: 576px) {
  .crackertable img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 8px;
  }
  
  .crackertable td:nth-child(2) {
    padding: 4px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .crackertable img {
    border-width: 4px;
    filter: contrast(1.5);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .crackertable img,
  .modal img.image-content {
    animation: none;
    transition: none;
  }
}

/* Modern Header and Hero Section Styles */

/* Top Banner */
.running-text-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  line-height: 24px;
  width: 100%;
  box-shadow: 0 2px 15px rgba(102, 126, 234, 0.3);
}

.running-text {
  display: inline-block;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Modern Header */
.modern-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-info {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  color: #e2e8f0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-item i {
  color: #3b82f6;
  font-size: 12px;
}

.admin-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.admin-link:hover {
  color: #3b82f6;
}

/* Modern Navbar */
.modern-navbar {
  background: white !important;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-close {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.navbar-close:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.navbar-close:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
  outline: none;
}

.modern-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.brand-text h3 {
  margin: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 24px;
}

.brand-text p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}

.modern-navbar .navbar-nav .nav-link {
  color: #374151 !important;
  font-weight: 600;
  padding: 10px 20px !important;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modern-navbar .navbar-nav .nav-link:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.modern-navbar .navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #833ab4 100%);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Modern Hero Section */
.modern-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.hero-btn.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-btn.btn-outline-secondary {
  background: transparent;
  color: white;
  border: 2px solid #f59e0b;
}

.hero-btn.btn-outline-secondary:hover {
  background: #f59e0b;
  color: white;
  transform: translateY(-3px);
}

.hero-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.firework-burst {
  position: relative;
  width: 200px;
  height: 200px;
  animation: pulse 2s ease-in-out infinite;
}

.burst-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.burst-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform-origin: 0 0;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.burst-line.line-1 { transform: translate(-50%, -50%) rotate(0deg); }
.burst-line.line-2 { transform: translate(-50%, -50%) rotate(60deg); }
.burst-line.line-3 { transform: translate(-50%, -50%) rotate(120deg); }
.burst-line.line-4 { transform: translate(-50%, -50%) rotate(180deg); }
.burst-line.line-5 { transform: translate(-50%, -50%) rotate(240deg); }
.burst-line.line-6 { transform: translate(-50%, -50%) rotate(300deg); }

.discount-badge {
  position: absolute;
  top: 50px;
  right: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Enhanced Mobile Responsiveness and Professional Touches */

/* Clean up duplicate styles and enhance mobile experience */
@media screen and (max-width: 768px) {
  .mycontainer {
    display: none;
  }
  
  body {
    width: 100%;
  }
  
  .logo_main {
    width: 60% !important;
  }
  
  .mysocial {
    display: none;
  }
  
  .logo_main img {
    width: 90% !important;
  }
  
  .crackertable {
    width: 95%;
    margin: 0 auto;
    font-size: 10px;
  }
  
  tbody {
    width: 100%;
  }
  
  .cracker_detail {
    width: 100%;
  }
  
  th,
  td {
    padding: 4px 2px !important;
    font-size: 9px;
  }
  
  .productcontainer {
    padding: 15px 10px;
    margin: 10px;
    border-radius: 15px;
  }
  
  .titlec {
    font-size: 22px;
    padding: 20px 15px;
  }
  
  .titlec::after {
    width: 60px;
    height: 2px;
  }
  
  .nav-item {
    margin: 3px 0;
  }
  
  .nav-link {
    padding: 12px 15px !important;
    text-align: center;
    font-size: 14px;
  }
  
  .mynav {
    padding: 12px 0;
  }
  
  .mymenu {
    width: 100%;
    text-align: center;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
    margin: auto 10px;
  }
  
  #productSummary {
    flex-direction: column;
    gap: 8px;
    padding: 15px 10px;
    font-size: 14px;
    width: 70%;
  }
  
  #productSummary div {
    justify-content: space-between;
    width: 100%;
  }
}

/* Final Professional Enhancements for Front Page */

/* Enhanced mobile responsiveness for perfect fit */
@media screen and (max-width: 480px) {
  .crackertable {
    font-size: 8px !important;
    width: 98%;
  }
  
  .crackertable img {
    width: 25px !important;
    height: 25px !important;
    border-radius: 3px !important;
  }
  
  input[type="number"] {
    width: 30px !important;
    padding: 2px !important;
    font-size: 8px !important;
  }
  
  .titlec {
    font-size: 18px;
    padding: 15px 10px;
  }
  
  .productcontainer {
    padding: 10px 5px;
    margin: 5px;
    border-radius: 15px;
  }
  
  .nav-link {
    padding: 10px 12px !important;
    font-size: 12px;
  }
  
  .logo_main {
    width: 70% !important;
  }
  
  .running-text-container {
    height: 35px;
    font-size: 12px;
  }
  
  .running-text {
    line-height: 35px;
    font-size: 12px;
  }
}

/* Professional animations and effects */
.running-text-container {
  position: relative;
}

.running-text-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Enhanced navbar with professional shimmer effect */
.mynav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Professional button enhancements */
#OrderNowbtn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

#OrderNowbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

/* Enhanced table styling for professional look */
.crackertable th {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Professional form styling */
.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

/* Enhanced modal styling */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Professional loading animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Enhanced accessibility and focus states */
*:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Professional scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
}

/* Print-friendly styles */
@media print {
  .running-text-container,
  .mycontainer,
  .mynav,
  .mysocial,
  #OrderNowbtn {
    display: none !important;
  }
  
  .productcontainer {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .crackertable {
    border: 1px solid #000;
  }
  
  .crackertable th,
  .crackertable td {
    border: 1px solid #000;
  }
}

/* Enhanced banner overlay */
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Professional section dividers */
.titlec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  transform: translateY(-50%);
  z-index: -1;
}

/* Professional hover effects for top navbar */
.mycontainer .d-flex > div:hover {
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

/* Enhanced social media icons with professional hover */
.mysocial img {
  position: relative;
  overflow: hidden;
}

.mysocial img::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mysocial img:hover::before {
  left: 100%;
}

/* Professional loading states */
.carousel-item img {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


