@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
:root {
  --color1: #ffd700;
  --color2: #4b0082;
  --title-color: #ff4500;
  --color4: #ffecd1;
  --color5: #003382;
  --theme-gradient: linear-gradient(
    135deg,
    var(--color1) 25%,
    var(--title-color) 50%,
    rgb(219, 243, 1) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

li {
  list-style-type: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Verdana, sans-serif;
  font-weight: bold;
}

p,
li,
a {
  font-family: Tahoma, sans-serif;
}

.heading1 {
  font-size: 2.5rem;
}

.heading2 {
  font-size: 2rem;
}

.heading3 {
  font-size: 1.75rem;
}

.heading4 {
  font-size: 1.5rem;
}

.heading5 {
  font-size: 1.25rem;
}

.heading6 {
  font-size: 1rem !important;
}

.pad {
  padding: 90px 0;
}

.wrdbrk {
  white-space: pre;
}

.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}

/* custom css  */
.marquee {
  font-family: Tahoma, sans-serif !important;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

.navbar-dark .bi.bi-list.nav-icon {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  border-color: var(--color2) !important;
  margin: 0 auto;
}

.navbar-dark .navbar-nav .active > .nav-link {
  color: var(--color2);
  border-bottom: 3px solid var(--title-color);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--color2);
  font-size: 0.8rem;
}

#my-nav .navbar-nav .nav-item .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color2);
  text-decoration: none;
  overflow: hidden;
}
#my-nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
  opacity: 0;
}
#my-nav .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
#my-nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--title-color);
  scale: 1.1;
}
#my-nav .navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}
#my-nav .navbar-nav .nav-item .nav-link:hover::before {
  transform: scaleX(1);
}
#my-nav .navbar-nav .nav-item .nav-link.active {
  color: #fff;
}
#my-nav .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
  opacity: 1;
}
#my-nav .navbar-nav .nav-item .nav-link.active::before {
  transform: scaleX(1);
}
#my-nav .navbar-nav .nav-item .nav-link.active:hover {
  color: #fff;
}
#my-nav .navbar-nav .nav-item .nav-link.active:hover::after {
  width: 100%;
  opacity: 1;
}
#my-nav .navbar-nav .nav-item .nav-link.active:hover::before {
  transform: scaleX(1);
}

.header-info-box {
  display: flex !important;
  align-items: center !important;
}
.header-info-box img.info-icon {
  width: 40px; /* Default size */
  height: auto;
}

.navbar {
  transition: background-color 3s ease, box-shadow 3s ease;
  background-color: var(--color2);
  font-weight: bold;
  text-transform: uppercase;
}

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  transition: color 1s ease;
  font-weight: bold;
}
.navbar-brand img.logo {
  width: 3em;
}

/* ********Index Page********/
.banner-container {
  background-image: url("../images/index-banner1.webp");
  background-color: rgba(0, 0, 0, 0.553);
  background-blend-mode: overlay;
  width: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#welcome {
  background-color: #ffecd1;
  padding: 60px 0;
}
#welcome .content h3 {
  color: #ff4500;
  font-size: 2rem;
  font-weight: bold;
}
#welcome .content p {
  color: #4b0082;
  font-size: 1.1rem;
  font-weight: 500;
}
#welcome .content ul {
  padding-left: 0;
  list-style: none;
}
#welcome .content ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #4b0082;
  margin-bottom: 10px;
}
#welcome .content ul li i {
  font-size: 1.2rem;
  color: #ff4500;
  margin-right: 10px;
}
#welcome .content .read-more {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: #ff4500;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#welcome .content .read-more i {
  font-size: 1.2rem;
  margin-left: 8px;
}
#welcome .content .read-more:hover {
  background-color: #4b0082;
  color: #ffd700;
}
#welcome img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}
#welcome img:hover {
  transform: scale(1.05);
}

.counter-section {
  background: url("../images/counter-bg.webp") center/cover no-repeat;
  padding-bottom: 6em;
}
.counter-section .counter-box {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}
.counter-section .counter-box.large {
  height: 16em;
  padding: 2em;
  margin-bottom: 2em;
}
.counter-section .counter-box.small {
  height: 13em;
  margin-bottom: 2em;
}
.counter-section .counter-box.lastbox {
  margin-bottom: 0;
}
.counter-section .counter-box i {
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.counter-section .counter-box .counter-number {
  font-size: 2.5rem;
  font-weight: bold;
}
.counter-section .counter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 0, 0, 0.1),
    rgba(255, 255, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.counter-section .counter-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 10px 20px rgba(255, 69, 0, 0.3);
  border-color: rgba(255, 69, 0, 0.8);
}
.counter-section .counter-box:hover::before {
  opacity: 1;
}
.counter-section .counter-box:hover i {
  color: #ff4500;
}
.counter-section .counter-box:hover h6 {
  color: #ff0000;
}

section.our-products {
  padding: 60px 0;
}
section.our-products h2 {
  max-width: 15em;
}
section.our-products .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  -webkit-clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
section.our-products .product-card:hover {
  transform: scale(1.05) rotate(2deg);
}
section.our-products .product-img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
section.our-products .product-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
section.our-products .product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4b0082, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
section.our-products .product-img:hover::before {
  opacity: 1;
}
section.our-products .product-img .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
}
section.our-products .product-img h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  margin-bottom: 10px;
  transform: translateY(-10px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
section.our-products .product-img a.btn {
  background-color: #ff4500;
  border: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
section.our-products .product-img a.btn:hover {
  background-color: #4b0082;
  color: #ffd700;
}
section.our-products .product-img:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
section.our-products .product-img:hover h3,
section.our-products .product-img:hover a.btn {
  opacity: 1;
  transform: translateY(0);
}

.fireworks-info {
  background: #f8f9fa;
  padding: 4em 0;
}
.fireworks-info h3 {
  color: var(--color2);
  font-size: 2rem;
}
.fireworks-info p {
  color: #6c757d;
  font-size: 1rem;
}
.fireworks-info .custom-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5em;
  padding: 1.5em;
  height: 11em;
}
.fireworks-info .custom-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
}
.fireworks-info .custom-card h5 {
  color: #343a40;
  font-size: 1.2rem;
}
.fireworks-info .custom-card .text-muted {
  font-size: 0.95rem;
}
.fireworks-info .custom-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.fireworks-info .custom-card:hover .icon-box {
  background: var(--color2) !important;
}
.fireworks-info .custom-card:hover h5 {
  color: var(--title-color);
}
.fireworks-info .info-quality .icon-box {
  background: #004085;
}
.fireworks-info .info-variety .icon-box {
  background: #28a745;
}
.fireworks-info .info-safety .icon-box {
  background: #17a2b8;
}
.fireworks-info .info-affordable .icon-box {
  background: #ffc107;
}

section.index-parallax {
  background-image: url("../images/index-parallax.webp");
  background-color: rgba(0, 0, 0, 0.5568627451);
  background-blend-mode: overlay;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  position: relative;
}
section.index-parallax .pricelist-wrapper {
  position: relative;
  display: inline-block;
}
section.index-parallax .pricelist-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
section.index-parallax .pricelist-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/mask-bg.webp") no-repeat center/cover;
  opacity: 1;
  pointer-events: none;
}

.brands-section .brandSwiper {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 0 auto;
  border-radius: 16px;
}
.brands-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #00c3ff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.brands-section .brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.brands-section .brand-card img {
  max-height: 90%;
  max-width: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

section.about .about-banner {
  background-image: url("../images/about-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 25em;
  width: 100%;
  text-align: center;
}

.our-story {
  background: white;
  padding: 80px 0;
  color: #fff;
  overflow-x: hidden !important;
}
.our-story .story-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.our-story .story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.our-story .story-card .section-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color2);
  letter-spacing: 2px;
}
.our-story .story-card .story-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--title-color);
  margin-bottom: 15px;
}
.our-story .story-card .theme-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 1em 1.5em;
  background: var(--title-color);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.our-story .story-card .theme-btn:hover {
  background: var(--color1);
  color: var(--color2);
}
.our-story .story-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-story .story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: transform 0.3s ease-in-out;
}
.our-story .story-image img:hover {
  transform: scale(1.05);
}

.why-choose-us {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  padding: 80px 0;
  color: #fff;
}
.why-choose-us .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.why-choose-us .section-header .section-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color1);
}
.why-choose-us .section-header .highlighted-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--title-color);
}
.why-choose-us .why-image {
  position: relative;
  text-align: center;
}
.why-choose-us .why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, transform 0.3s ease-in-out;
  transition: clip-path 0.5s ease-in-out, transform 0.3s ease-in-out,
    -webkit-clip-path 0.5s ease-in-out;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.why-choose-us .why-image img:hover {
  transform: scale(1.05);
  -webkit-clip-path: polygon(0 15%, 85% 0, 100% 85%, 15% 100%);
  clip-path: polygon(0 15%, 85% 0, 100% 85%, 15% 100%);
}
.why-choose-us .features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-choose-us .features .feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
}
.why-choose-us .features .feature-card .bi-fire {
  color: #ff4500;
}
.why-choose-us .features .feature-card .bi-tags-fill {
  color: #4b0082;
}
.why-choose-us .features .feature-card .bi-patch-check-fill {
  color: #ffd700;
}
.why-choose-us .features .feature-card .bi-lightning-charge-fill {
  color: #00c3ff;
}
.why-choose-us .features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.why-choose-us .features .feature-card .icon {
  font-size: 2.5rem;
}
.why-choose-us .features .feature-card .content h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color1);
}
.why-choose-us .features .feature-card .content p {
  font-size: 0.9rem;
  color: #fff;
}

.mission-section {
  background: #fff;
  padding: 80px 0;
}
.mission-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: block;
  text-align: center;
}
.mission-section .row {
  display: flex;
  justify-content: center;
}
.mission-section .mission-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 20em;
}
.mission-section .mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.mission-section .mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff4500, #ff8c00);
  transition: left 0.3s ease-in-out;
}
.mission-section .mission-card:hover::before {
  left: 0;
}
.mission-section .mission-card .mission-icon {
  font-size: 3rem;
  color: #ff4500;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}
.mission-section .mission-card:hover .mission-icon {
  transform: rotateY(360deg);
}
.mission-section .mission-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.mission-section .mission-card p {
  font-size: 1rem;
  color: #666;
}

section.about-parallax {
  position: relative;
  height: auto;
  background-image: url("../images/about-parallax.webp");
  background-color: rgba(0, 0, 0, 0.4901960784);
  background-blend-mode: overlay;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  text-align: center;
  padding: 6em 2em;
}
section.about-parallax h2 {
  color: #d8cb08;
}

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.contact-section .contact-images {
  position: relative;
  height: 350px;
}
.contact-section .contact-images .w-50,
.contact-section .contact-images .w-100 {
  position: relative;
}
.contact-section .contact-images img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact-section .contact-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.contact-section .contact-images .w-50:nth-child(1) img {
  width: 45%;
  top: 25%;
  left: 5%;
  z-index: 2;
}
.contact-section .contact-images .w-50:nth-child(2) img {
  width: 45%;
  top: 20%;
  right: 5%;
  z-index: 3;
}
.contact-section .contact-images .w-100:nth-child(3) img {
  width: 55%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.contact-section .contact-box {
  background: linear-gradient(135deg, #ff4500, #c40000);
  color: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}
.contact-section .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.contact-section .contact-box h2 {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.contact-section .contact-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.contact-section .contact-box .btn {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  background: #fff;
  color: #ff4500;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.contact-section .contact-box .btn:hover {
  background: #ffe000;
  color: #004085;
  transform: scale(1.05);
}
.contact-section .contact-box::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
  z-index: 1;
}
.contact-section .contact-box:hover::before {
  transform: scale(1.5);
}

section.products .products-banner {
  background-image: url("../images/products-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 24em;
  width: 100%;
  text-align: center;
}
section.products .products-banner h1 {
  margin-top: 3em;
}

section.safety .safety-banner {
  background-image: url("../images/safety-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 18em;
  width: 100%;
  text-align: center;
}

.padding-bottom {
  padding-bottom: 5em;
}

.safety-guidelines {
  padding: 40px 0;
}
.safety-guidelines h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.safety-guidelines .dos-heading {
  background: linear-gradient(45deg, #28a745, #a2e05d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.safety-guidelines .donts-heading {
  background: linear-gradient(45deg, #dc3545, #ff7f7f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.safety-guidelines .guideline {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 15px 20px 15px 60px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  width: 30em;
  height: 7em;
  position: relative;
}
.safety-guidelines .guideline .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.safety-guidelines .guideline .content {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.safety-guidelines .guideline .content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: bolder;
}
.safety-guidelines .guideline .content p {
  font-size: 1rem;
  margin: 0;
}

section.contact .contact-banner {
  background-image: url("../images/contact-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30em;
  width: 100%;
  text-align: center;
}

.four-card-container a {
  color: white !important;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.8),
    rgba(255, 165, 0, 0.8)
  );
  color: white;
  /* -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}
.contact-card .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}
.contact-card .card-title i {
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
}
.contact-card:hover .card-title i {
  transform: rotate(10deg) scale(1.2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.contact-image:hover {
  transform: scale(1.05);
}

.map-container iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

.footer-bg {
  background-image: url("../images/footerimg.webp");
  background-color: rgb(0, 50, 65);
  background-blend-mode: overlay;
  padding: 3rem 0 1rem;
  color: #fff;
}
.footer-bg .heading2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffc107;
}
.footer-bg .heading5 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffc107;
}
.footer-bg p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-bg .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bg .tagcloud a {
  color: #ddd;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer-bg .tagcloud a:hover {
  background: #ffc107;
  color: #111;
  transform: scale(1.05);
}
.footer-bg .text1 {
  font-size: 0.9rem;
}
.footer-bg li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0.5rem 0;
}
.footer-bg li i {
  font-size: 1.2rem;
  color: #ffc107;
  transition: transform 0.3s ease-in-out;
}
.footer-bg li i:hover {
  transform: scale(1.2) rotate(10deg);
}
.footer-bg .img-fluid {
  transition: transform 0.3s ease-in-out;
}
.footer-bg .img-fluid:hover {
  transform: scale(1.1);
}
.footer-bg .copyright {
  font-size: 0.85rem;
  margin-top: 1.5rem;
}
.footer-bg .copyright a {
  color: #ffc107;
  text-decoration: none;
}
.footer-bg .copyright a:hover {
  text-decoration: underline;
}

.text-yellow {
  color: var(--color1) !important;
}

.text-main {
  color: var(--color2) !important;
}

.text-color {
  color: var(--color4) !important;
}

.text-red {
  color: var(--title-color) !important;
}

.charcoal-bg {
  background-color: var(--color3) !important;
}

.bg-main {
  background-color: var(--color2) !important;
}

.bg-yellow {
  background-color: var(--color1) !important;
}

.bg-red {
  background-color: var(--title-color) !important;
}

.bg-dark-blue {
  background-color: #003382 !important;
}

.top-bg {
  background-color: var(--title-color) !important;
  color: white;
  padding: 8px 0;
  transition: transform 0.3s ease-in-out;
}

.marquee {
  width: 100%;
  overflow: hidden !important;
  font-size: 15px;
  line-height: 25px;
}

.spacer {
  height: 56px; /* Adjust based on navbar height */
  display: none;
}

.cursive-font {
  font-family: fantasy, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--title-color) !important;
}

.margin-bottom-4 {
  margin-bottom: 4em;
}

.theme-btn {
  position: relative;
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0c3962;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease;
  text-decoration: none;
  z-index: 1;
}

.theme-btn::before,
.theme-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, navy, #fff500, #ff0000);
  background-size: 300% 300%;
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
  border-radius: inherit;
}

.theme-btn::before {
  animation: themeHover 3s linear infinite;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  opacity: 1;
}

.theme-btn:hover {
  color: white;
  background: transparent;
  box-shadow: 0 0 15px rgba(255, 245, 0, 0.3);
  transition: 5s ease-in-out;
}

div#top-btn {
  position: fixed;
  bottom: 8em;
  right: 20px;
  z-index: 10000;
}
div#top-btn .go-top {
  width: 50px;
  height: 50px;
  background-color: var(--color2);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
div#top-btn .go-top:hover {
  background-color: var(--color1);
  color: #000;
}
div#top-btn .go-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: 3s;
}

.hr {
  width: 100%;
  height: 2px;
  background-color: #ccc;
  margin: 20px 0;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 180px;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--color1) 0%,
    var(--title-color) 50%,
    var(--color2) 100%
  );
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transform: translateX(-50%);
  border-radius: 50px;
}

/* Ensure Owl Carousel items are visible during animations */
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure it takes full height */
  overflow: hidden; /* Prevent any extra space */
}

.slide-img {
  width: 100%;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Animation Classes */
/* Firework-style entrance animation */
@keyframes themeHover {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes explode-in {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Left-right explosion effect */
@keyframes slide-blast {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(10px) scale(1.2);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
/* Apply animations dynamically */
.explode-in {
  animation: explode-in 0.8s ease-out forwards;
}

.slide-blast {
  animation: slide-blast 0.8s ease-out forwards;
}

#fireworks {
  position: fixed; /* Ensures it covers the whole screen */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* Prevents blocking clicks */
  z-index: 9999; /* Ensures it appears above other elements */
  background: transparent; /* Ensures no background */
}

@media (min-width: 1px) and (max-width: 767.98px) {
  .notfound .notfound-404 {
    height: 142px;
  }
  .pad {
    padding: 40px 0;
  }
  .header-info-box img.info-icon {
    width: 30px;
  }
  .banner-text {
    max-width: 50%;
    font-size: 0.8rem;
    right: 2%;
  }
  .swiper-container {
    height: auto !important;
  }
  section.intro-section .about-experience {
    left: -7px;
    top: 22px;
  }
  section.intro-section .about-experience span {
    font-size: 1rem;
  }
  section.intro-section .about-experience h5 {
    font-size: 1rem;
  }
  section.intro-section a.theme-btn {
    display: block;
  }
  section.our-products h2 {
    font-size: 1.5rem;
  }
  section.index-parallax h2 {
    font-size: 1.5rem;
  }
  section.index-parallax p.small-para {
    display: none;
  }
  section.counter-section div.row.counter-container {
    padding: 0;
  }
  .fireworks-info .custom-card {
    height: auto;
  }
  .fireworks-info .custom-card .card-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fireworks-info .custom-card .icon-box {
    margin-bottom: 0.75em;
  }
  section.about .about-banner {
    height: 8em;
    background-size: cover;
    background-position: center top;
  }
  section.mission .about-card-container {
    flex-wrap: wrap;
    gap: 0.5em;
  }
  section.mission .about-card-container .about-card {
    flex: 0 1 auto;
  }
  section.about-first h6.section-title {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  section.about-first h6.section-title::after {
    display: none;
  }
  section.about-first .container .row {
    padding: 1em;
  }
  section.about-first .container .row a.theme-btn {
    margin-bottom: 1.5em;
    padding: 1em 4em;
  }
  section.products .products-banner {
    height: 7em;
    background-size: cover;
    background-position: center top;
  }
  section.safety .safety-banner {
    height: 14.5em;
    background-size: cover;
    background-position: center top;
  }
  section.safety .safety-banner .text-container h1 {
    font-size: 1.5rem;
  }
  section.safety-guidelines .row {
    flex-direction: column;
  }
  section.safety-guidelines .guideline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: auto;
    position: relative;
    width: -moz-fit-content;
    width: 90%;
    margin: 1em auto;
  }
  section.safety-guidelines .guideline .icon {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 10px;
  }
  section.safety-guidelines .guideline .content {
    text-align: center;
  }
  section.safety-guidelines .dos-heading,
  section.safety-guidelines .donts-heading {
    text-align: center;
    margin-top: 30px;
  }
  section.contact-section .contact-images .w-50:nth-child(1) img {
    width: unset;
  }
  section.contact-section .contact-images .w-50:nth-child(2) img {
    width: unset;
  }
  section.contact-section .contact-images .w-100:nth-child(3) img {
    width: unset;
  }
  section.contact .contact-banner {
    height: 7em;
  }
  .contact-image {
    margin-top: 20px;
  }
  .full-width-map {
    height: 350px;
  }
  footer.footer svg.footer-svg {
    visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
  .navbar-dark .navbar-toggler {
    margin: 0;
    margin-left: auto;
  }
  .header-info-box img.info-icon {
    width: 50px;
  }
  section.brands-section h2.section-title.my-text {
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
  }
  .fireworks-info .custom-card {
    height: 13em;
  }
  section.about .about-banner {
    height: 25em;
    background-position: center top;
  }
  section.about-first {
    padding: 2em;
  }
  section.about-first h6.section-title {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  section.about-first h6.section-title::after {
    display: none;
  }
  .our-story .story-image {
    margin-top: 3em;
  }
  section.products .products-banner {
    height: 15em;
    background-position: center top;
  }
  section.contact-section .contact-box {
    margin-top: 3em;
  }
  section.safety .safety-banner {
    height: 15em;
    background-size: cover;
    background-position: center top;
  }
  .safety-guidelines .guideline {
    height: 13em;
    width: 100%;
  }
  section.contact .contact-banner {
    height: 18em;
    background-size: cover;
  }
}
.w0 {
  width: 0%;
}

.fixed {
  position: fixed;
  z-index: 2;
}

.priceicn {
  width: 50px;
}

.priceicn2 {
  width: 120px;
}

.point {
  bottom: 10px;
  left: 10px;
}

.point1 {
  bottom: 70px;
  left: 10px;
}

.point2 {
  bottom: 15px;
  right: 10px;
}

body {
  cursor: url("../images/cursor.cur") 16 16, auto;
}

a,
button,
input,
select,
textarea {
  cursor: url("../images/pointer.cur") 16 16, auto;
}
.navbar,
.navbar a,
.navbar * {
  cursor: url("../images/pointer.cur") 16 16, auto !important;
}
.blink {
  animation: blink 1s;
  animation-iteration-count: infinite;
}

#notfound {
  position: relative;
  height: 100vh;}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);}
.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;}
.oopslogo {width: 350px;}
.notfound h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;}
.notfound p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 5px;}
.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px 4px 15px -5px #0046d5;}

@media only screen and (max-width: 767px) {
.notfound .notfound-404 {height: 142px;}
}
.time-of-year {
  margin: 100px 75px 10px 75px;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);}
.time-of-year .tooltip {
  background: #db2a1b;
  border-radius: 3px;
  bottom: -49px;
  font-size: 20px;
  display: block;
  left: -67px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  width: 320px;
  height: 100px;
  transform: translateY(10px);
  transition: all 0.7s ease-out;}
.time-of-year .tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #db2a1b;
  bottom: 58px;
  content: " ";
  position: absolute;
  left: 0%;
  margin-left: -13px;
  transform: rotate(92deg);}
.time-of-year:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);}