@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css");
:root {
  --red: #ce2029;
  --yellow: #ffd700;
  --violet: #9c27b0;
}
html {
  overflow-anchor: auto;
}
a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.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;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
/* custom  css starts */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
}
p,
a,
button,
li {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-weight: normal;
}
/* Topbar */
section.header .header-topbar {
  background-color: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 40px; /* Adjust as per your design */
  overflow-anchor: auto;
}

/* Contact Bar */
section.header .header-contact-bar {
  background-color: #222;
  color: #fff;
  padding: 10px 15px;
  min-height: 50px;
  overflow-anchor: auto;
}

section.header .contact-item {
  margin-bottom: 10px;
}

section.header .icon-wrapper {
  width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  min-width: 40px;
  max-width: 40px;
  font-size: 16px;
  background-color: red;
  color: #fff;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  flex: 0 0 auto; /* Prevent grow/shrink */
}

section.header .icon-wrapper i::before {
  transform: rotate(-45deg) !important;
}
/* Per-item custom diamond colors */
section.header .contact-item:nth-child(1) .icon-wrapper {
  background-color: var(--red);
}

section.header .contact-item:nth-child(2) .icon-wrapper {
  background-color: var(--violet);
}

section.header .contact-item:nth-child(3) .icon-wrapper {
  background-color: var(--yellow);
}

/* Icon styling (now on top of diamond) */
section.header .icon-wrapper i {
  transform: rotate(0deg);
  font-size: 1rem;
  z-index: 2;
  color: #fff;
  position: relative;
}

/* Text beside icon */
section.header .text-wrapper span {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

section.header .header-contact-bar a {
  text-decoration: none;
}

/* contact bar (if used separately elsewhere) */
section.header .contact-bar {
  background-color: var(--red);
  color: #fff;
  padding: 15px 10px;
}

section.header .contact-bar .contact-item {
  display: flex;
  align-items: center; /* Vertical centering */
  justify-content: center; /* Horizontal centering */
}

/* Navbar */
.header-navbar {
  background-color: white;
}
.header-navbar.sticky-top {
  background-color: #fff;
  z-index: 1030;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional but clean */
}

.header-navbar .navbar-brand img {
  width: 130px;
}

.header-navbar .navbar-toggler {
  font-size: 24px;
  color: #fff;
  background-color: rebeccapurple;
}
.black{color: black !important;}
.header-navbar .nav-link {
  color: #000000 !important;
  transition: color 0.3s ease;
  padding: 0.5em;
  margin-bottom: 0px;
}

.header-navbar .nav-link:hover,
.header-navbar .nav-link.active {
  background-color: var(--yellow) !important;
  color: #000000 !important;
  border-radius: 20em;
}

/* Download Button */
.header-navbar .header-download-btn {
  background: var(--yellow);
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  padding: 6px 18px;
  transition: 0.3s;
}

.header-navbar .header-download-btn:hover {
  background: var(--red);
  color: #ffffff;
}
/* index carousel swiper */
section.fireworks-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 30em; /* optional: limit height */
  overflow: hidden;
}

section.fireworks-hero .fireworks-swiper {
  width: 100%;
  height: 100%;
}

section.fireworks-hero .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.fireworks-hero .slide-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 90%;
  padding: 20px;
}

section.fireworks-hero .animated-text {
  font-size: 2.8rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

section.fireworks-hero .animated-text.active {
  opacity: 1;
  transform: translateY(0);
}
/* index page */

section.index-hero {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(206,32,41,0.2)' stroke-width='1'%3E%3Cline x1='50' y1='10' x2='50' y2='0' /%3E%3Cline x1='50' y1='90' x2='50' y2='100' /%3E%3Cline x1='10' y1='50' x2='0' y2='50' /%3E%3Cline x1='90' y1='50' x2='100' y2='50' /%3E%3Cline x1='20' y1='20' x2='10' y2='10' /%3E%3Cline x1='80' y1='20' x2='90' y2='10' /%3E%3Cline x1='20' y1='80' x2='10' y2='90' /%3E%3Cline x1='80' y1='80' x2='90' y2='90' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;
  position: relative;
  overflow: hidden;
  color: #333;
}

section.index-hero .highlight {
  color: var(--red);
  font-weight: bold;
}

section.index-hero .index-hero-btn {
  background-color: var(--red);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
section.index-hero .index-hero-btn:hover {
  background-color: var(--violet);
}

section.index-hero .index-hero-img {
  max-width: 90%;
  animation: subtleRotate 4s ease-in-out infinite;
  transform-origin: center center;
  transition: transform 0.4s ease;
}
section.index-hero .index-hero-img:hover {
  transform: rotate(0) scale(1.03);
}

/* Optional Decorative Sparks */
section.index-hero .spark {
  position: absolute;
  width: 50px;
  opacity: 0.6;
  animation: flicker 1.5s infinite ease-in-out alternate;
}
section.index-hero .spark-1 {
  top: 20%;
  right: 15%;
}
section.index-hero .spark-2 {
  bottom: 10%;
  left: 8%;
}
/* index products */
section.home-products {
  background: var(--violet);
  color: #fff;
}

section.home-products h2 {
  color: #ffcc00;
  font-weight: 700;
  letter-spacing: 1px;
}

section.home-products .product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

section.home-products .product-card img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  display: block;
}

section.home-products .product-card .product-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: #ffcc00;
  text-align: center;
  transition: bottom 0.4s ease;
  z-index: 2;
}

section.home-products .product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 204, 0, 0.5);
}

section.home-products .product-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

section.home-products .product-card:hover .product-info {
  bottom: 0;
}

section.home-products .burst-overlay {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(
    circle,
    rgba(255, 255, 0, 0.5) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

section.home-products .product-card:hover .burst-overlay {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}

/* burst overlay buttons */
/* Button style inside product */
section.home-products .product-info .btn-glow {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background-color: #ffcc00;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
}

/* Reveal the button on hover */
section.home-products .product-card:hover .product-info .btn-glow {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect for the button */
section.home-products .product-info .btn-glow:hover {
  background-color: #fff200;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.9);
  color: #000;
}
/* index parallax */
section.index-parallax {
  position: relative;
  height: auto;
  background-image: url("../images/parallax.webp");
  background-color: rgba(0, 0, 0, 0.638);
  background-blend-mode: overlay;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 6em 2em;
}
section.index-parallax .parallax-logo {
  width: 5em;
}
section.index-parallax .theme-btn {
  background-color: var(--red);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
section.index-parallax .theme-btn:hover {
  background-color: var(--violet);
}
/* index swiper brands */
/* index swiper brands */
section.brands {
  background-color: #fff;
  overflow: hidden;
}

section.brands .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--red);
}

section.brands .swiper-container {
  padding: 20px 0;
  overflow: hidden;
}

section.brands .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

section.brands .swiper-slide img {
  max-height: 95px;
  max-width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

section.brands .swiper-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(129, 2, 129, 0.5); /* subtle violet glow */
}

section.brands .slide-enter {
  animation: rotateIn 0.6s ease forwards;
}

section.brands .slide-exit {
  animation: rotateOut 0.6s ease forwards;
}
/* index specialities  */
section.home-specialities .progress {
  height: 20px;
  background-color: #ddd;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

section.home-specialities .progress-bar {
  height: 100%;
  background-color: var(--violet);
  width: 0;
  transition: width 2s ease-in-out;
  border-radius: 10px;
}

section.home-specialities .progress-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

section.home-specialities .progress-bar-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

section.home-specialities .progress-percent {
  min-width: 40px;
  text-align: right;
  font-weight: bold;
  color: var(--red);
}

/* safety page */
section.safety-tips {
  background-color: #ffffff;
  padding: 60px 0;
}

section.safety-tips .safety-tips-header .title {
  font-size: 36px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px;
}

section.safety-tips .safety-tips-header .subtitle {
  font-size: 18px;
  color: #777777;
  margin-bottom: 10px;
}

section.safety-tips .safety-tips-header .description {
  font-size: 16px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
}

section.safety-tips .section-label {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

section.safety-tips .tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.safety-tips .tip-box {
  background-color: #f8f9fa;
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  margin-bottom: 20px;
  display: flex;
  border-radius: 8px;
  transition: all 0.3s ease;
}

section.safety-tips .tip-box:hover {
  background-color: #fff3cd;
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section.safety-tips .tip-box img {
  object-fit: cover;
  margin-right: 1em;
  width: 3em;
  height: 3em;
}

section.safety-tips .tip-box .bi-x {
  color: #dc3545; /* x icon color */
}

section.safety-tips .tip-box h4 {
  font-size: 16px;
  margin: 0 0 5px;
  color: #212529;
}

section.safety-tips .tip-box p {
  font-size: 14px;
  margin: 0;
  color: #555555;
}

section.safety-tips .safety-img {
  max-width: 100%;
  height: auto;
}

/* contact page */
section.contact-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fff;
  overflow: hidden;
}

section.contact-section .clip-path {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--violet);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  z-index: 1;
}

section.contact-section .container {
  position: relative;
  z-index: 2;
}

section.contact-section .label {
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

section.contact-section .title {
  font-family: Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--violet);
  margin-bottom: 1rem;
  margin-top: 75px !important;
}

section.contact-section .desc {
  font-family: Helvetica, sans-serif;
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

section.contact-section .contact-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 2rem 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.455);
  transition: all 0.3s ease;
  height: 100%;
}

section.contact-section .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

section.contact-section .contact-card i {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  display: inline-block;
}

section.contact-section .contact-card h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--violet);
}

section.contact-section .contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

section.contact-section .map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(211, 8, 8, 0.616);
}
section.contact-section .map iframe:hover {
  box-shadow: 0 10px 30px rgba(184, 211, 8, 0.838);
}
/* about page */
/* about-intro */
section.about-fireworks {
  position: relative;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}
section.about-fireworks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 2000' width='50' height='50'><defs><linearGradient id='ssstar-grad' x1='50%' y1='0%' x2='50%' y2='100%'><stop offset='0%' stop-color='hsl(55, 94%, 54%)' stop-opacity='1'/><stop offset='100%' stop-color='hsl(36, 94%, 54%)' stop-opacity='1'/></linearGradient></defs><g fill='url(%23ssstar-grad)'><path d='M 0 0 C 1000 1000 1000 1000 1500 500 C 1000 1000 1000 1000 1500 1500 C 1000 1000 1000 1000 500 1500 C 1000 1000 1000 1000 0 0' stroke-linecap='round' stroke-linejoin='round'/></g></svg>");
  background-size: 50px 50px;
  background-repeat: repeat;
  opacity: 0.3; /* tweak as needed */
  z-index: -1;
  pointer-events: none;
}
section.about-fireworks .text-red {
  color: var(--red);
}

section.about-fireworks .text-yellow {
  color: var(--yellow);
}

section.about-fireworks .text-violet {
  color: var(--violet);
}

section.about-fireworks .border-violet {
  border-color: var(--violet) !important;
}

section.about-fireworks .btn-outline-red {
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

section.about-fireworks .btn-outline-red:hover {
  background-color: var(--red);
  color: #fff;
}
section.about-fireworks .service-wrapper {
  perspective: 1000px;
}

section.about-fireworks .service-box {
  position: relative; /* Needed for z-index */
  transform-style: preserve-3d; /* Allow 3D transforms */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  border: 2px solid red;
}

section.about-fireworks .service-wrapper:hover .service-box {
  transform: rotateY(10deg) rotateX(35deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}
section.about-fireworks a.theme-btn {
  background-color: var(--red);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
section.about-fireworks a.theme-btn:hover {
  background-color: var(--violet);
}
/* about second */
section.whychoose-us {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-right: 5%;
  background-image: url("../images/about-second-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
}

section.whychoose-us .overlay {
  background-image: linear-gradient(90deg, #050505d2 0%, #a31616de 100%);
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top-right-radius: 3em;
  border-bottom-right-radius: 3em;
  z-index: 0;
}

section.whychoose-us .container {
  position: relative;
  z-index: 2;
}

section.whychoose-us .whychoose-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

section.whychoose-us .whychoose-box-number {
  top: -20px;
  left: 40%;
  z-index: 3;
  background-color: rebeccapurple;
}

section.whychoose-us .whychoose-box-number h4 {
  font-size: 1.2rem;
  margin: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
}
/* about-three */
section.about-virtues {
  position: relative;
  overflow: hidden;
}

section.about-virtues .fireworks-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
section.about-virtues .fireworks-bg2 {
  position: absolute;
  bottom: 2em;
  left: 3em;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

section.about-virtues .about-virtues-content {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

section.about-virtues ul li i {
  color: #28a745;
  font-size: 1.2rem;
}
section.about-virtues .about-virtues-tabs .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  color: #f00;
}
section.about-virtues .about-virtues-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: var(--red);
  color: white;
}
section.about-virtues .about-virtues-tabs .nav-tabs .nav-item:hover .nav-link {
  background-color: rebeccapurple;
  color: white !important;
  transition: cubic-bezier(1, 0, 0, 1);
}
/* about four */
section.section-fireworks-dealer {
  background-color: #3d1a6b; /* deep violet */
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
section.section-fireworks-dealer .container {
  position: relative;
  z-index: 4;
}
.section-fireworks-dealer .fireworks-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-fireworks-dealer .section-title .heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-fireworks-dealer .section-title .description {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-fireworks-dealer .flip-card {
  background: transparent;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  margin-bottom: 30px;
}

.section-fireworks-dealer .flip-card-inner {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.section-fireworks-dealer .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.section-fireworks-dealer .flip-card-front,
.section-fireworks-dealer .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-fireworks-dealer .flip-card-front {
  background-color: #4e2687;
  text-align: center;
  padding: 30px 20px;
}

.section-fireworks-dealer .flip-card-front img {
  max-height: 220px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.section-fireworks-dealer .flip-card-front h3 {
  font-size: 24px;
  margin: 0;
}

.section-fireworks-dealer .flip-card-back {
  background-color: #612d9c;
  color: #fff;
  transform: rotateY(180deg);
  text-align: center;
  padding: 40px 20px;
}

.section-fireworks-dealer .flip-card-back h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.section-fireworks-dealer .flip-card-back p {
  font-size: 16px;
  line-height: 1.5;
}
/* about five cta */
section.about-cta {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 700 700' style='overflow: hidden; display: block;' width='700' height='700'%3E%3Cdefs%3E%3ClinearGradient id='two-15' x1='350' y1='-350' x2='350' y2='350' spreadMethod='pad' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0%25' stop-color='hsl(37, 99%25, 67%25)' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='100%25' stop-color='hsl(316, 73%25, 52%25)' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='two-0' transform='matrix(1 0 0 1 0 0)' opacity='1'%3E%3Cpath transform='matrix(1 0 0 1 350 350)' id='two-25' d='M 311.464132 91.45412 C 281.124346 125.96959 211.440504 85.430485 173.67493 111.6141 C 156.863784 123.269599 151.674008 147.043639 143.759064 165.906804 C 131.77408 194.469825 134.540901 230.412682 116.832316 255.827088 C 99.781764 280.297121 73.805654 304.135478 44.590478 310.133592 C 15.921232 316.019622 -19.079161 307.819741 -41.564122 289.084812 C -69.343933 265.938105 -74.206905 223.141463 -86.351134 189.082608 C -94.177286 167.133933 -84.458896 132.330211 -104.7738 120.91541 C -150.397689 95.279668 -208.838636 185.551605 -257.050631 165.196409 C -283.771633 153.914751 -301.94409 116.373792 -298.323523 87.595689 C -293.441287 48.78921 -248.61236 24.939609 -218.482724 0 C -197.408226 -17.444278 -151.823433 -16.346379 -147.858119 -43.415061 C -140.097796 -96.389862 -248.914349 -111.371534 -255.896253 -164.454536 C -259.883015 -194.765649 -241.272122 -233.014582 -214.175181 -247.171335 C -182.181099 -263.886591 -141.096599 -239.710516 -105.871007 -231.825168 C -80.284619 -226.097583 -54.421782 -198.932939 -29.958923 -208.368881 C 17.834788 -226.80412 -2.029388 -343.831196 49.16096 -341.921992 C 90.506295 -340.37997 70.125261 -252.085301 104.851896 -229.593629 C 130.081224 -213.253153 166.646736 -233.083883 195.869992 -226.046021 C 227.897884 -218.332716 275.52496 -215.171446 286.45647 -184.094396 C 300.763207 -143.421961 218.972573 -109.134986 228.381271 -67.058792 C 236.15589 -32.290284 297.752367 -32.203966 312.990426 -0.000001 C 325.900427 27.283869 331.39204 68.78352 311.464132 91.45412 Z ' fill='url(%23two-15)' stroke='undefined' stroke-width='1' stroke-opacity='1' fill-opacity='1' visibility='visible' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='4'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  z-index: 1;
}

section.about-cta .cta-heading {
  font-size: 2rem;
  font-weight: bold;
  color: var(--red);
  margin-bottom: 0.5rem;
}

section.about-cta .cta-text {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 0;
}

/* footer code */

footer.fireworks-footer {
  background-color: #ce2029ea;
  background-image: url("../images/footerimg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

footer.fireworks-footer .footer-title {
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1rem;
}
footer.fireworks-footer .footer-links {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
footer.fireworks-footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
  width: max-content;
  background-color: var(--violet);
  padding: 0.5em 2em;
  border-radius: 20em;
  text-transform: uppercase;
}

footer.fireworks-footer .footer-links a:hover {
  background-color: var(--yellow);
  color: #000000;
  transition: 1s ease-in;
}

footer.fireworks-footer .bi {
  font-size: 1.1rem;
  color: var(--yellow);
}

footer.fireworks-footer .svg-top-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

footer.fireworks-footer .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

footer.fireworks-footer .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--yellow);
  opacity: 0.6;
}

footer.fireworks-footer .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--yellow);
  opacity: 0.4;
}

footer.fireworks-footer .wave3 use {
  animation: move-forever3 12s linear infinite;
  animation-delay: -3s;
  fill: #ffffff;
  opacity: 0.3;
}
.copyright {
  background-color: var(--yellow);
  color: #000000;
}

/* utility classes */
.text-violet {
  color: var(--violet) !important;
}
.bg-violet {
  background-color: var(--violet) !important;
}
.text-red {
  color: var(--red) !important;
}
.bg-red {
  background-color: var(--red) !important;
}
.small-fnt {
  font-size: 12px;
}
/* theme button */
.theme-btn2 {
  position: relative;
  display: inline-block;
  background: var(--violet);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: #ffffff;
  border: none;
  padding: 17px 50px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.theme-btn2:hover {
  background: transparent;
  color: #ffffff;
}

.theme-btn2::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}

.theme-btn2:hover::before {
  transform: translate(-17px, -50%);
}

.theme-btn2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--violet);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.theme-btn2:hover::after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.theme-btn3 {
  position: relative;
  display: inline-block;
  background: var(--violet);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: #ffffff;
  border: none;
  padding: 17px 50px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.theme-btn3:hover {
  background: transparent;
  color: #ffffff;
}

.theme-btn3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}

.theme-btn3:hover::before {
  transform: translate(-17px, -50%);
}

.theme-btn3::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--red);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.theme-btn3:hover::after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.theme-btn4 {
  position: relative;
  display: inline-block;
  background: rgb(167, 38, 38);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: #ffffff;
  border: none;
  padding: 17px 50px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.theme-btn4:hover {
  background: transparent;
  color: #ffffff;
}

.theme-btn4::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}

.theme-btn4:hover::before {
  transform: translate(-17px, -50%);
}

.theme-btn4::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: rgb(255, 0, 0);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.theme-btn4:hover::after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
/* custom css ends */
.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;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate3d(-85px, 0, 0);
  }
  100% {
    transform: translate3d(90px, 0, 0);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    transform: translate3d(100px, 0, 0);
  }
}
@keyframes flicker {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes subtleRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes burst-glow {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 0;
  }
}
/* brands swiper animations  */
@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0.5);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

@keyframes rotateOut {
  from {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
  to {
    transform: rotate(180deg) scale(0.5);
    opacity: 0;
  }
}

/* media querries section */
/* mobile media querry */
@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }
  section.header .header-contact-bar {
    text-align: center;
  }
  section.header .contact-item:nth-child(1) .icon-wrapper {
    width: 85px;
  }
  section.header .contact-item:nth-child(2) .icon-wrapper {
    margin: 1em 0;
  }
.fnt-17{font-size: 17px !important;}
  section.header .text-wrapper {
    text-align: center;
  }
section.index-parallax{padding: 2em 1em !important;}
  section.header .header-navbar {
    clip-path: none;
  }
  section.header .contact-bar .contact-item {
    margin-bottom: 0;
  }
  section.fireworks-hero {
    max-height: 10em;
  }

  /* safety page */
  section.safety-tips {
    padding: 30px 0;
  }

  section.safety-tips .title-wrap h1 {
    font-size: 28px;
  }

  section.safety-tips .tip-title {
    font-size: 16px;
  }
  /* about page */
  section.whychoose-us,
  section.whychoose-us .overlay {
    margin: 0;
    border-radius: 0;
  }
}
/* tablet media querry */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
  section.header .contact-item:nth-child(1) .icon-wrapper {
    width: 101px;
  }
  /* carousel swiper  */
  section.fireworks-hero {
    max-height: 15em;
  }
  /* safety page */
  section.safety-tips {
    padding: 40px 0;
  }
  /* about page */
  section.whychoose-us .whychoose-box {
    margin: 0 !important;
    margin-top: 20px !important;
  }
  section.whychoose-us {
    padding-bottom: 100px !important;
  }
  /* about-three */
  section.about-virtues .about-virtues-content {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -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;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out;
  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;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
