@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
  --color1: #8b0000; /* Dark Red */
  --color2: #9acd32; /* YellowGreen */
  --color3: #4b0082; /* Indigo */
  --color4: #101010; /* Almost Black */
  --color5: #dcdcdc; /* Gainsboro Grey */
}

a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif !important;
  font-weight: bold !important;
}
p,
a,
li,
button,
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-weight: normal !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 */
/* marquee bar */
.sparkle-header-topbar {
  background-color: var(--color1);
  color: var(--color5);
  position: relative;
  overflow: hidden;
  z-index: 1031;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sparkle-header-topbar .marquee-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sparkle-header-topbar .bi {
  margin-right: 5px;
}

/* ======== HEADER STYLES ======== */

header {
  width: 100%;
}
section.section-main-nav h1 {
  position: relative;
  top: 10px;
}
/* Contact Bar Section */
header .section-contact-bar {
  background-color: var(--color4);
}

header .section-contact-bar .contact-info {
  font-size: 14px;
  margin-bottom: 0;
}

header .section-contact-bar .bi {
  color: var(--color2);
}

header .section-contact-bar .contact-text {
  line-height: 1.5;
}

/* Main Navigation Section */
header .section-main-nav {
  padding: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .section-main-nav .navbar {
  padding: 0;
  min-height: 80px;
}

header .section-main-nav .logo-container {
  position: absolute;
  left: 1%;
  transform: translateX(-50%);
  top: -30px;
  z-index: 1000;
}

header .section-main-nav .logo-background {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath fill='%238b0000' d='M100,0 L200,60 L180,100 L20,100 L0,60 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 192px;
  height: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}

header .section-main-nav .logo-img {
  max-width: 100px;
  max-height: 80px;
  object-fit: contain;
}

header .section-main-nav .navbar-nav {
  margin-left: 150px;
}

header .section-main-nav .nav-link {
  color: var(--color4);
  font-weight: 500;
  padding: 30px 15px;
  transition: color 0.3s ease;
}
header .section-main-nav .nav-link:hover {
  color: white !important;
}
header .section-main-nav .nav-link:hover,
header .section-main-nav .nav-link.active {
  color: var(--color1);
  position: relative;
}

header .section-main-nav .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  height: 3px;
  background-color: var(--color1);
}

header .section-main-nav .btn-price-list {
  background-color: var(--color1);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

header .section-main-nav .btn-price-list:hover {
  background-color: var(--color3);
  text-decoration: none;
  color: white;
}

header .section-main-nav .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

header .section-main-nav .navbar-toggler .bi-list {
  font-size: 2rem;
  color: var(--color1);
}
/* index swiper */
/* index page */
section.home-carousel {
  position: relative;
  overflow: hidden;
}

section.home-carousel .home-carousel-swiper {
  width: 100%;
}

section.home-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  perspective: 1000px;
}

section.home-carousel .swiper-slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

section.home-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Welcome Section Styles */
.welcome-section {
  background-color: var(--color5); /* Gainsboro Grey background */
  padding: 60px 0;
}

.welcome-section .welcome-heading {
  color: var(--color1); /* Dark Red */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.welcome-section .welcome-subheading {
  color: var(--color3); /* Indigo */
  font-size: 24px;
  margin-bottom: 30px;
}

.welcome-section .welcome-text {
  color: var(--color4); /* Almost Black */
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.welcome-section .welcome-image {
  border-radius: 8px;
  height: auto;
  max-width: 100%;
}

.welcome-section .welcome-cta {
  background-color: var(--color2); /* YellowGreen */
  border: none;
  border-radius: 4px;
  color: var(--color4); /* Almost Black */
  font-size: 18px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.welcome-section .welcome-cta:hover {
  background-color: var(--color1); /* Dark Red */
  color: var(--color5); /* Gainsboro Grey */
  transform: translateY(-3px);
}

.welcome-section .welcome-cta-icon {
  font-size: 20px;
  margin-left: 8px;
}

.welcome-section .welcome-features {
  margin-top: 40px;
}

.welcome-section .welcome-feature-item {
  align-items: center;
  display: flex;
  margin-bottom: 15px;
}

.welcome-section .welcome-feature-icon {
  color: var(--color2); /* YellowGreen */
  font-size: 24px;
  margin-right: 15px;
}

.welcome-section .welcome-feature-text {
  color: var(--color4); /* Almost Black */
  font-size: 16px;
}
/* Index Achievements Section Styles */
.index-achievements {
  background-image: url("../images/index-achievements-bg.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

.index-achievements::before {
  background-color: rgba(
    16,
    16,
    16,
    0.85
  ); /* Using var(--color4) with opacity */
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

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

.index-achievements .index-achievements-heading {
  color: var(--color5); /* Gainsboro Grey */
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.index-achievements .index-achievements-subtext {
  color: var(--color5); /* Gainsboro Grey */
  font-size: 18px;
  margin: 0 auto 60px;
  max-width: 800px;
  opacity: 0.9;
}

.index-achievements .index-achievements-counter-box {
  align-items: center;
  background-color: rgba(
    75,
    0,
    130,
    0.4
  ); /* var(--color3) Indigo with opacity */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.4s ease;
}

.index-achievements .index-achievements-counter-box:hover {
  background-color: rgba(
    139,
    0,
    0,
    0.7
  ); /* var(--color1) Dark Red with opacity */
  transform: translateY(-10px);
}

.index-achievements .index-achievements-icon {
  color: var(--color2); /* YellowGreen */
  font-size: 48px;
  margin-bottom: 20px;
}

.index-achievements .index-achievements-count {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.index-achievements .index-achievements-number {
  color: var(--color5); /* Gainsboro Grey */
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  display: inline-block; /* Helps with GSAP animations */
}

.index-achievements .index-achievements-suffix {
  color: var(--color2); /* YellowGreen */
  font-size: 32px;
  font-weight: 700;
  margin-left: 2px;
  display: inline-block; /* Helps with GSAP animations */
}

.index-achievements .index-achievements-title {
  color: var(--color5); /* Gainsboro Grey */
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
/* index products-section */
/* Products Section Styles */
.products-section {
  background-color: var(--color5);
  position: relative;
}

/* Section Titles */
.products-section-title {
  color: var(--color3);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.products-section-subtitle {
  color: var(--color4);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Swiper Container */
.products-swiper-container {
  padding: 20px 40px;
  overflow: hidden;
  position: relative;
}

/* Product Cards */
.products-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform, box-shadow, border-color, filter; /* Add more properties for GSAP */
}

.products-card-image-container {
  height: 200px;
  overflow: hidden;
}

.products-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.products-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.products-card-title {
  color: var(--color1);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  will-change: color, font-weight; /* For GSAP */
}

.products-card-description {
  color: var(--color4);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-card-button {
  background-color: var(--color2);
  color: var(--color4);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease; /* Keep button transitions */
}

.products-card-button:hover {
  background-color: var(--color1);
  color: #fff;
}

.products-card-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 205, 50, 0.4);
}

/* Add Bootstrap icon to button */
.products-card-button::after {
  content: "\f138";
  font-family: "bootstrap-icons";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.products-card-button:hover::after {
  transform: translateX(3px);
}

/* Swiper Navigation and Pagination */
.products-swiper-button-next,
.products-swiper-button-prev {
  color: var(--color3);
  transition: all 0.3s ease;
}

.products-swiper-button-next:hover,
.products-swiper-button-prev:hover {
  color: var(--color1);
  transform: scale(1.1);
}

.products-swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color3);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.products-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color1);
  opacity: 1;
  transform: scale(1.2);
}
/* Fireworks Parallax Section Styles */
.fireworks-parallax {
  background-image: url("../images/index-parallax-bg.webp");
  background-attachment: fixed;
  background-position: 20% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fireworks-parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.fireworks-parallax .container {
  position: relative;
  z-index: 2;
}

.fireworks-parallax-heading {
  color: yellow;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fireworks-parallax-subtext {
  color: white;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}
/* index brands section */
.brands-section .brands-swiper-slide {
  height: auto;
} /* brands-section.css */
/* Following desktop-first approach with proper section prefixing */

.brands-section {
  background-color: var(--color5);
  padding: 60px 0;
}

.brands-section .brands-section-title {
  color: var(--color1);
  font-weight: 700;
  margin-bottom: 15px;
}

.brands-section .brands-section-subtitle {
  color: var(--color3);
  font-size: 18px;
  margin-bottom: 30px;
}

.brands-section .brands-swiper-container {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  position: relative;
}

.brands-section .brands-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 100%;
  /* Initial state handled by GSAP now */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.brands-section .brands-image-container {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brands-section .brands-image {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.brands-section .brands-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color1);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
/* index page ends */
/* about page starts */
/* About Intro Section Styles */
.about-intro {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--color5);
}

/* Typography */
.about-intro .about-intro-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color4);
}

.about-intro .about-intro-highlight {
  color: var(--color1);
  position: relative;
}

.about-intro .about-intro-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--color3);
}

.about-intro .about-intro-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color4);
}

.about-intro .about-intro-divider {
  width: 80px;
  height: 4px;
  background: var(--color2);
  margin-bottom: 25px;
}

/* Stats Section */
.about-intro .about-intro-stats {
  display: flex;
  margin: 40px 0;
}

.about-intro .about-intro-stat-item {
  margin-right: 40px;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.about-intro .about-intro-stat-item:hover {
  transform: translateY(-10px);
}

.about-intro .about-intro-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color1);
  position: relative;
  z-index: 2;
}

.about-intro .about-intro-stat-label {
  font-size: 14px;
  color: var(--color4);
  opacity: 0.8;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.about-intro .about-intro-stat-item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color2);
  transition: width 0.3s ease;
  z-index: 1;
}

.about-intro .about-intro-stat-item:hover::after {
  width: 100%;
}

/* CTA Button */
.about-intro .about-intro-btn {
  display: inline-block;
  background-color: var(--color1);
  color: var(--color5);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.2);
}

.about-intro .about-intro-btn:hover {
  background-color: var(--color3);
  color: var(--color5);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(153, 50, 204, 0.3);
  transform: translateY(-2px);
}

.about-intro .about-intro-btn::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.7s ease;
}

.about-intro .about-intro-btn:hover::before {
  left: 100%;
}

.about-intro .about-intro-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  position: relative;
}

.about-intro .about-intro-btn:hover i {
  transform: translateX(5px);
}

/* Image Styling */
.about-intro .about-intro-image-container {
  position: relative;
  height: 100%;
  padding-top: 30px;
}

.about-intro .about-intro-image {
  position: relative;
  z-index: 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-intro .about-intro-image-main {
  max-width: 90%;
  margin-left: auto;
}

.about-intro .about-intro-image-accent {
  position: absolute;
  bottom: 137px;
  left: 0;
  max-width: 50%;
  z-index: 4;
  border: 5px solid var(--color5);
}

.about-intro .about-intro-image img {
  transition: transform 0.5s ease;
}

.about-intro .about-intro-image:hover img {
  transform: scale(1.05);
}

/* Background Shapes */
.about-intro .about-intro-shape {
  position: absolute;
  z-index: 1;
}

.about-intro .about-intro-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color2);
  opacity: 0.2;
  border-radius: 50%;
  top: 10%;
  right: 5%;
}

.about-intro .about-intro-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color3);
  opacity: 0.15;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 15%;
  right: 20%;
}
/* about parallax */
/* Parallax Section Styles */
.parallax-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: var(--color5);
  z-index: 1;
}

.parallax-section .parallax-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.parallax-section .parallax-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.7) 0%,
    rgba(18, 18, 18, 0.9) 100%
  );
  z-index: -1;
}

.parallax-section .parallax-section-content {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  z-index: 5;
}

.parallax-section .parallax-section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color5);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.parallax-section .parallax-section-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color5);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.parallax-section .parallax-section-btn {
  display: inline-block;
  background-color: var(--color2);
  color: var(--color4);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(211, 232, 9, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parallax-section .parallax-section-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(211, 232, 9, 0.3);
  color: var(--color4);
  text-decoration: none;
}

.parallax-section .parallax-section-btn i {
  margin-left: 8px;
  position: relative;
  top: 1px;
}

/* Particle animations */
.parallax-section .parallax-section-particle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}

.parallax-section .parallax-section-particle-1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, var(--color1) 0%, transparent 70%);
}

.parallax-section .parallax-section-particle-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  background: radial-gradient(circle, var(--color2) 0%, transparent 70%);
}

.parallax-section .parallax-section-particle-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 15%;
  background: radial-gradient(circle, var(--color3) 0%, transparent 70%);
}

.parallax-section .parallax-section-particle-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  background: radial-gradient(circle, var(--color1) 0%, transparent 70%);
}
/* Additional styles for SplitText compatibility */
.parallax-section .parallax-char {
  display: inline-block;
  position: relative;
}

.parallax-section .parallax-word {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.parallax-section .parallax-line {
  display: block;
  position: relative;
}
/* about page why choose section */
.why-choose-us {
  position: relative;
  background-color: var(--color5);
  overflow: hidden;
  /* Add for GSAP animations */
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* SVG Background */
.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23dc143c' d='M50 0 L75 25 L100 0 L75 25 L100 50 L75 75 L100 100 L75 75 L50 100 L25 75 L0 100 L25 75 L0 50 L25 25 L0 0 L25 25 Z'%3E%3C/path%3E%3Cpath fill='%239932cc' d='M50 25 L75 50 L50 75 L25 50 Z'%3E%3C/path%3E%3Cpath fill='%23d3e809' d='M50 40 L60 50 L50 60 L40 50 Z'%3E%3C/path%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

/* Section Headings */
.why-choose-us-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color4);
}

.why-choose-us-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Cards */
.why-choose-us-card {
  background-color: var(--color5);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  /* transition: all 0.3s ease; */
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* Add for GSAP animations */
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  will-change: transform;
}

.why-choose-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--color2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.why-choose-us-icon i {
  font-size: 2rem;
  color: var(--color4);
}

.why-choose-us-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color4);
}

.why-choose-us-card-text {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.why-choose-us-cta {
  background: linear-gradient(135deg, var(--color1), var(--color3));
  padding: 2.5rem;
  border-radius: 10px;
  color: var(--color5);
}

.why-choose-us-cta-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose-us-cta-text {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.why-choose-us-btn {
  background-color: var(--color2);
  color: var(--color4);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
}

.why-choose-us-btn:hover {
  background-color: #fff;
  color: var(--color1);
  transform: scale(1.05);
}

.text-color1 {
  color: var(--color1);
}
/* about page ends */
/* safety page */
/* Safety Guidelines Section Styles */

/* Safety Guidelines Section Styling */
.safety-guidelines {
  padding: 80px 0;
  background-color: var(--color5);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.safety-guidelines .safety-guidelines-header {
  margin-bottom: 60px;
}

.safety-guidelines .section-title {
  color: var(--color4);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.safety-guidelines .section-subtitle {
  color: var(--color4);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.safety-guidelines .safety-guidelines-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  position: relative;
}

.safety-guidelines .safety-guidelines-divider:before,
.safety-guidelines .safety-guidelines-divider:after {
  content: "";
  height: 2px;
  width: 80px;
  background: var(--color1);
  display: block;
}

.safety-guidelines .safety-guidelines-divider-icon {
  margin: 0 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color1);
  color: white;
  font-size: 1.2rem;
}

/* Columns */
.safety-guidelines .safety-guidelines-column {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-guidelines .safety-guidelines-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.safety-guidelines .safety-guidelines-column-practices {
  border-top: 5px solid var(--color2);
}

.safety-guidelines .safety-guidelines-column-warnings {
  border-top: 5px solid var(--color1);
}

.safety-guidelines .safety-guidelines-column-header {
  text-align: center;
  margin-bottom: 30px;
}

.safety-guidelines .safety-guidelines-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
  background-color: var(--color2);
}

.safety-guidelines .safety-guidelines-icon-wrapper-warning {
  background-color: var(--color1);
}

.safety-guidelines .safety-guidelines-column-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color4);
}

.safety-guidelines .safety-guidelines-column-subtitle {
  color: #666;
  font-size: 1rem;
}

/* Cards Container */
.safety-guidelines .safety-guidelines-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Cards */
.safety-guidelines .safety-guidelines-card {
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

.safety-guidelines .safety-guidelines-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
}

.safety-guidelines .safety-guidelines-card-front,
.safety-guidelines .safety-guidelines-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
}

.safety-guidelines .safety-guidelines-card-front {
  background-color: #f9f9f9;
  z-index: 2;
}

.safety-guidelines .safety-guidelines-card-back {
  background-color: #f0f0f0;
  transform: rotateY(180deg);
  z-index: 1;
}

/* Card Practice Styling */
.safety-guidelines
  .safety-guidelines-card-practice
  .safety-guidelines-card-front {
  background: linear-gradient(
    135deg,
    rgba(154, 205, 50, 0.1),
    rgba(154, 205, 50, 0.2)
  );
  border: 1px solid rgba(154, 205, 50, 0.3);
}

.safety-guidelines
  .safety-guidelines-card-practice
  .safety-guidelines-card-back {
  background: linear-gradient(
    135deg,
    rgba(154, 205, 50, 0.15),
    rgba(154, 205, 50, 0.25)
  );
  border: 1px solid rgba(154, 205, 50, 0.3);
}

.safety-guidelines
  .safety-guidelines-card-practice
  .safety-guidelines-card-icon {
  color: var(--color2);
  font-size: 2rem;
  margin-bottom: 15px;
}

.safety-guidelines
  .safety-guidelines-card-practice
  .safety-guidelines-card-title {
  color: var(--color4);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Card Warning Styling */
.safety-guidelines
  .safety-guidelines-card-warning
  .safety-guidelines-card-front {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.1),
    rgba(139, 0, 0, 0.2)
  );
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.safety-guidelines
  .safety-guidelines-card-warning
  .safety-guidelines-card-back {
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.15),
    rgba(139, 0, 0, 0.25)
  );
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.safety-guidelines
  .safety-guidelines-card-warning
  .safety-guidelines-card-icon {
  color: var(--color1);
  font-size: 2rem;
  margin-bottom: 15px;
}

.safety-guidelines
  .safety-guidelines-card-warning
  .safety-guidelines-card-title {
  color: var(--color4);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Card Text Styling */
.safety-guidelines .safety-guidelines-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color4);
  margin: 0;
}

/* CTA Section */
.safety-guidelines .safety-guidelines-cta {
  background: linear-gradient(135deg, var(--color1), var(--color3));
  border-radius: 12px;
  padding: 30px;
  color: white;
  margin-top: 60px;
}

.safety-guidelines .safety-guidelines-cta h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.safety-guidelines .safety-guidelines-cta p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.safety-guidelines .safety-guidelines-btn {
  background-color: white;
  color: var(--color1);
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.safety-guidelines .safety-guidelines-btn:hover {
  background-color: var(--color2);
  color: var(--color4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
/* contact page */
/* Fireworks Contact Section Styles */
.fireworks-contact {
  background-color: var(--color5);
  position: relative;
  overflow: hidden;
}

.fireworks-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-34-74c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM64 41c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-17 13c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%238b0000' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Header Section */
.fireworks-contact-header {
  position: relative;
}

.fireworks-contact-badge {
  background-color: var(--color1);
  color: white;
  font-size: 3rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
}

.fireworks-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color4);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  transform: translateY(20px);
  opacity: 1;
}

.fireworks-contact-highlight {
  color: var(--color1);
  position: relative;
  display: inline-block;
}

.fireworks-contact-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(139, 0, 0, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fireworks-contact-title:hover .fireworks-contact-highlight::after {
  transform: scaleX(1);
}

.fireworks-contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  transform: translateY(20px);
  opacity: 0;
}

/* Contact Cards */
.fireworks-contact-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fireworks-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color1), var(--color3));
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.fireworks-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fireworks-contact-card:hover::before {
  transform: scaleX(1);
}

.fireworks-contact-card-icon {
  background-color: rgba(139, 0, 0, 0.1);
  color: var(--color1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.fireworks-contact-card:hover .fireworks-contact-card-icon {
  background-color: var(--color1);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.fireworks-contact-card-content {
  flex: 1;
}

.fireworks-contact-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color4);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateX(-20px);
}

.fireworks-contact-card-text {
  color: #666;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-card-text strong {
  color: var(--color4);
  font-weight: 600;
}

.fireworks-contact-link {
  display: inline-block;
  color: var(--color1);
  margin-top: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.fireworks-contact-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.fireworks-contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fireworks-contact-link i {
  transition: transform 0.3s ease;
}

.fireworks-contact-link:hover i {
  transform: translateX(5px);
}

/* Phone List Styles */
.fireworks-contact-phone-list {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-phone-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fireworks-contact-phone-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.fireworks-contact-phone-item span {
  color: #666;
  font-weight: 500;
}

.fireworks-contact-phone-item a {
  color: var(--color1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fireworks-contact-phone-item a:hover {
  color: var(--color3);
  transform: scale(1.05);
}

/* Email List Styles */
.fireworks-contact-email-list {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-email-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.fireworks-contact-email-item span {
  color: #666;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.fireworks-contact-email-item a {
  color: var(--color1);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.fireworks-contact-email-item a:hover {
  color: var(--color3);
}

.fireworks-contact-response-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-response-note i {
  margin-right: 0.5rem;
}

/* Store Hours Styles */
.fireworks-contact-hours-list {
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fireworks-contact-hours-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.fireworks-contact-hours-item.special {
  background-color: rgba(139, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.fireworks-contact-day {
  color: #666;
  font-weight: 500;
}

.fireworks-contact-time {
  color: var(--color4);
  font-weight: 600;
}

.fireworks-contact-festive-note {
  font-size: 0.9rem;
  color: var(--color1);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(15px);
}

.fireworks-contact-festive-note i {
  margin-right: 0.5rem;
  color: var(--color2);
}

/* Map Styles */
.fireworks-contact-map-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.fireworks-contact-map {
  width: 100%;
  height: 300px;
  position: relative;
}

.fireworks-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.fireworks-contact-directions-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--color1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.fireworks-contact-directions-btn i {
  margin-right: 0.5rem;
}

.fireworks-contact-directions-btn:hover {
  background-color: var(--color3);
  color: white;
  text-decoration: none;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.3);
}
/* Fireworks Footer Styles */
/* Fireworks Footer Styles */
.fireworks-footer {
  position: relative;
  background: var(--color4);
  color: var(--color5);
  padding: 0;
  overflow: hidden;
}

/* Wave SVG Containers */
.fireworks-footer .wavy-svg-container {
  position: absolute;
  width: 100%;
  height: 120px;
  left: 0;
  z-index: 1;
}

.fireworks-footer .top-wave-container {
  top: -20px;
  transform: rotate(180deg);
}

.fireworks-footer .bottom-wave-container {
  bottom: -5px;
}

/* Important: Make sure the SVG path is visible with proper fill */
.fireworks-footer .wave-path {
  fill: var(--color2);
}

/* Footer Content */
.fireworks-footer .footer-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 50px;
}

/* Footer Logo and About */
.fireworks-footer .footer-about {
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Footer Headings */
.fireworks-footer .footer-heading {
  color: var(--color2);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.fireworks-footer .footer-heading:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color1);
  border-radius: 2px;
}

/* Footer Links */
.fireworks-footer .footer-links li a {
  color: #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 5px;
}

.fireworks-footer .footer-links li a:before {
  content: "•";
  color: var(--color1);
  position: absolute;
  left: -10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.fireworks-footer .footer-links li a:hover {
  color: var(--color2);
  text-decoration: none;
  transform: translateX(10px);
}

.fireworks-footer .footer-links li a:hover:before {
  opacity: 1;
  left: -5px;
}

/* Store Hours and Contact */
.fireworks-footer .footer-hours li,
.fireworks-footer .footer-contact li {
  display: flex;
  align-items: center;
}

.fireworks-footer .footer-hours .mr-2,
.fireworks-footer .footer-contact .mr-2 {
  margin-right: 15px;
  color: var(--color2);
  font-size: 18px;
}

.fireworks-footer .footer-hours p,
.fireworks-footer .footer-contact p {
  font-size: 15px;
  color: #f0f0f0;
}

/* Copyright Section */
.fireworks-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.fireworks-footer .developer-link {
  color: var(--color2);
  font-size: 14px;
  transition: all 0.3s ease;
}

.fireworks-footer .developer-link:hover {
  color: var(--color1);
  text-decoration: none;
}

/* GSAP Animation Helper Classes */
.fireworks-footer .fade-in {
  opacity: 0;
}

.fireworks-footer .slide-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Tablet (md screens) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .fireworks-footer .footer-content {
    padding: 60px 0 40px;
  }

  .fireworks-footer .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .fireworks-footer .footer-about {
    font-size: 14px;
  }

  .fireworks-footer .last-column-heading {
    margin-top: 20px;
  }

  .fireworks-footer .footer-links,
  .fireworks-footer .footer-hours,
  .fireworks-footer .footer-contact {
    padding-left: 10px;
  }
}

/* Mobile (sm and xs screens) */
@media (min-width: 1px) and (max-width: 767.98px) {
  .fireworks-footer {
    margin-top: 60px;
  }

  .fireworks-footer .wavy-svg-container {
    height: 80px;
  }

  .fireworks-footer .top-wave-container {
    top: -80px;
  }

  .fireworks-footer .footer-content {
    padding: 50px 0 30px;
  }

  .fireworks-footer .footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  .fireworks-footer .footer-about {
    font-size: 14px;
    padding: 0 20px;
  }

  .fireworks-footer .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .fireworks-footer .footer-links,
  .fireworks-footer .footer-hours,
  .fireworks-footer .footer-contact {
    margin-bottom: 20px;
  }

  .fireworks-footer .footer-links li,
  .fireworks-footer .footer-hours li,
  .fireworks-footer .footer-contact li {
    justify-content: center;
  }
}
/* utility classes */
.heading-font {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif !important;
  font-weight: bold !important;
}
.para-font {
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-weight: normal !important;
}
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color3) !important;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:active,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:hover {
  color: #ffffff !important;
  font-weight: bold !important;
}
.hvr-bounce-to-top:active:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:hover:before {
  padding: 1em;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.custom-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color1);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

/* Ripple Element */
.custom-btn .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.custom-btn:hover {
  cursor: pointer;
}

/* 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;
  }
}

/*************************************************************************** media query starts ****************************************************************/
/* mobile media query */
@media (min-width: 1px) and (max-width: 767.98px) {
  section.section-main-nav h1 {
    font-size: 18px;
  }
  /* footer styles */
  .fireworks-footer .footer-heading {
    text-align: center;
  }
  .fireworks-footer .footer-heading::after {
    left: 134px;
    top: 12px;
  }

  .fireworks-footer .footer-about {
    text-align: center;
    margin-bottom: 20px;
  }

  .fireworks-footer .footer-links,
  .fireworks-footer .footer-hours,
  .fireworks-footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fireworks-footer .footer-links li,
  .fireworks-footer .footer-hours li,
  .fireworks-footer .footer-contact li {
    margin-bottom: 10px;
    text-align: center;
  }

  .fireworks-footer .footer-links a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .fireworks-footer .developer-link {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  /* contact page */
  .fireworks-contact-title {
    font-size: 1.8rem;
  }

  .fireworks-contact-subtitle {
    font-size: 1rem;
  }

  .fireworks-contact-badge {
    font-size: 2rem;
  }

  .fireworks-contact-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .fireworks-contact-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .fireworks-contact-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .fireworks-contact-phone-item,
  .fireworks-contact-email-item,
  .fireworks-contact-hours-item {
    flex-direction: column;
  }

  .fireworks-contact-phone-item a,
  .fireworks-contact-email-item a {
    font-size: 0.9rem;
  }

  .fireworks-contact-phone-item span,
  .fireworks-contact-email-item span,
  .fireworks-contact-day {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
  }

  .fireworks-contact-time {
    font-size: 0.9rem;
  }

  .fireworks-contact-map-wrapper {
    margin-top: 1rem;
  }

  .fireworks-contact-map {
    height: 250px;
  }

  .fireworks-contact-directions-btn {
    bottom: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  /* safety page */
  .safety-guidelines {
    padding: 40px 0;
  }

  .safety-guidelines .section-title {
    font-size: 2rem;
  }

  .safety-guidelines .safety-guidelines-divider:before,
  .safety-guidelines .safety-guidelines-divider:after {
    width: 40px;
  }

  .safety-guidelines .safety-guidelines-column {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .safety-guidelines .safety-guidelines-cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .safety-guidelines .safety-guidelines-card {
    height: 170px;
  }

  .safety-guidelines .safety-guidelines-column-title {
    font-size: 1.5rem;
  }

  .safety-guidelines .safety-guidelines-cta {
    padding: 20px;
    text-align: center;
  }

  .safety-guidelines .safety-guidelines-cta h4 {
    font-size: 1.4rem;
  }

  .safety-guidelines .safety-guidelines-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
  }
  /*about page why choose section  */
  .why-choose-us-heading {
    font-size: 2rem;
  }

  .why-choose-us-subtitle {
    font-size: 1.1rem;
  }

  .why-choose-us-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .why-choose-us-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .why-choose-us-icon i {
    font-size: 1.5rem;
  }

  .why-choose-us-card-title {
    font-size: 1.15rem;
  }

  .why-choose-us-cta {
    padding: 2rem 1.5rem;
  }

  .why-choose-us-cta-title {
    font-size: 1.5rem;
  }
  /* about parallax */
  .parallax-section {
    height: 400px;
  }

  .parallax-section .parallax-section-content {
    padding: 60px 15px;
  }

  .parallax-section .parallax-section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .parallax-section .parallax-section-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .parallax-section .parallax-section-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .parallax-section .parallax-section-particle {
    opacity: 0.3;
  }
  /* about page intro */
  .about-intro {
    padding: 60px 0;
  }

  .about-intro .about-intro-title {
    font-size: 32px;
  }

  .about-intro .about-intro-subtitle {
    font-size: 16px;
  }

  .about-intro .about-intro-divider {
    width: 60px;
    margin-bottom: 20px;
  }

  .about-intro .about-intro-stats {
    flex-direction: column;
  }

  .about-intro .about-intro-stat-item {
    margin-right: 0;
    margin-bottom: 20px;
    align-self: center;
  }

  .about-intro .about-intro-image-container {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .about-intro .about-intro-image-accent {
    bottom: 10px;
    left: 10px;
  }

  .about-intro .about-intro-shape {
    display: none;
  }
  /* index brands */
  .brands-section {
    padding: 40px 0;
  }

  .brands-section .brands-section-title {
    font-size: 24px;
  }

  .brands-section .brands-section-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .brands-section .brands-name {
    font-size: 15px;
  }

  .brands-section .brands-card {
    padding: 12px;
  }

  .brands-section .brands-image-container {
    height: 110px;
    margin-bottom: 15px;
  }
  /* index parallax */
  .fireworks-parallax {
    height: 300px;
  }

  .fireworks-parallax-heading {
    font-size: 28px;
  }

  .fireworks-parallax-subtext {
    font-size: 16px;
  }
  /* index products */
  .products-section-title {
    font-size: 2rem;
  }

  .products-section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .products-card-image-container {
    height: 160px;
  }

  .products-card-content {
    padding: 1rem;
  }

  .products-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .products-card-description {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .products-card-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .products-swiper-container {
    padding: 10px 30px;
  }

  .products-swiper-button-next,
  .products-swiper-button-prev {
    display: none;
  }
  /* index achievements */
  .index-achievements {
    padding: 60px 0;
  }

  .index-achievements .index-achievements-heading {
    font-size: 30px;
  }

  .index-achievements .index-achievements-subtext {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .index-achievements .index-achievements-counter-box {
    height: 200px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

  .index-achievements .index-achievements-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .index-achievements .index-achievements-number {
    font-size: 34px;
  }

  .index-achievements .index-achievements-suffix {
    font-size: 24px;
  }

  .index-achievements .index-achievements-title {
    font-size: 15px;
  }
  /* index welcome section */
  .welcome-section {
    padding: 40px 0;
  }

  .welcome-section .welcome-heading {
    font-size: 32px;
    text-align: center;
  }

  .welcome-section .welcome-subheading {
    font-size: 18px;
    text-align: center;
  }

  .welcome-section .welcome-text {
    text-align: center;
  }

  .welcome-section .welcome-image {
    margin: 30px auto;
    max-width: 90%;
  }

  .welcome-section .welcome-cta {
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .welcome-section .welcome-features {
    margin-top: 30px;
  }
  /* header */
  header .section-contact-bar .contact-info {
    justify-content: start;
    margin: 0.3em auto;
    max-width: 22em;
  }

  header .section-main-nav .logo-container {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    margin-right: auto;
  }

  header .section-main-nav .logo-background {
    background:none;
    height:auto;
    Width:auto;
    padding:0;
  }

  header .section-main-nav .logo-img {
    max-width: 70px;
    max-height: 50px;
  }

  header .section-main-nav .navbar-nav {
    margin-left: 0;
    margin-top: 15px;
  }

  header .section-main-nav .nav-link {
    padding: 8px 10px;
    text-align: center;
  }

  header .section-main-nav .nav-link.active:after {
    bottom: 3px;
    left: 25%;
    right: 25%;
  }

  header .section-main-nav .download-btn {
    display: flex;
    justify-content: center;
    margin: 15px 0;
  }
  .pad {
    padding: 40px 0;
  }
}
/* tablet media query */
@media (min-width: 768px) and (max-width: 991.98px) {
  .fireworks-footer .top-wave-container {
    top: -53px;
  }
  section.section-main-nav h1 {
    font-size: 18px;
  }
  /* footer styles */
  .fireworks-footer .footer-about {
    text-align: left;
  }

  .fireworks-footer .footer-links,
  .fireworks-footer .footer-hours,
  .fireworks-footer .footer-contact {
    display: block;
    text-align: left;
  }

  .fireworks-footer .footer-links li,
  .fireworks-footer .footer-hours li,
  .fireworks-footer .footer-contact li {
    margin-bottom: 8px;
  }

  .fireworks-footer .footer-links a {
    display: inline-block;
    width: auto;
  }
  /* contact page */
  .fireworks-contact-title {
    font-size: 2.2rem;
  }

  .fireworks-contact-card {
    padding: 1.5rem;
  }

  .fireworks-contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .fireworks-contact-card-title {
    font-size: 1.2rem;
  }

  .fireworks-contact-phone-item,
  .fireworks-contact-email-item,
  .fireworks-contact-hours-item {
    flex-direction: column;
  }

  .fireworks-contact-phone-item span,
  .fireworks-contact-email-item span {
    margin-bottom: 0.25rem;
  }

  .fireworks-contact-directions-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  /* safety page */
  .safety-guidelines {
    padding: 60px 0;
  }

  .safety-guidelines .safety-guidelines-cards-container {
    grid-template-columns: 1fr;
  }

  .safety-guidelines .safety-guidelines-card {
    height: 180px;
  }

  .safety-guidelines .safety-guidelines-column {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .safety-guidelines .safety-guidelines-cta {
    padding: 25px;
  }

  .safety-guidelines .safety-guidelines-cta h4 {
    font-size: 1.5rem;
  }
  /* about why choose */
  .why-choose-us-heading {
    font-size: 2.2rem;
  }

  .why-choose-us-card {
    padding: 1.75rem;
  }

  .why-choose-us-icon {
    width: 60px;
    height: 60px;
  }

  .why-choose-us-icon i {
    font-size: 1.75rem;
  }
  /* about parallax */
  .parallax-section {
    height: 450px;
  }

  .parallax-section .parallax-section-title {
    font-size: 36px;
  }

  .parallax-section .parallax-section-text {
    font-size: 16px;
  }
  /* about intro */
  .about-intro {
    padding: 80px 0;
  }

  .about-intro .about-intro-title {
    font-size: 36px;
  }

  .about-intro .about-intro-subtitle {
    font-size: 18px;
  }

  .about-intro .about-intro-stats {
    flex-wrap: wrap;
  }

  .about-intro .about-intro-stat-item {
    margin-right: 30px;
    margin-bottom: 15px;
  }

  .about-intro .about-intro-image-container {
    margin-top: 40px;
    padding-left: 15px;
  }

  .about-intro .about-intro-shape-1 {
    width: 150px;
    height: 150px;
  }

  .about-intro .about-intro-shape-2 {
    width: 100px;
    height: 100px;
  }
  /* index brands */
  .brands-section .brands-section-title {
    font-size: 28px;
  }

  .brands-section .brands-section-subtitle {
    font-size: 16px;
  }

  .brands-section .brands-name {
    font-size: 16px;
  }

  .brands-section .brands-card {
    padding: 15px;
  }
  /* index parallax */
  .fireworks-parallax {
    height: 400px;
  }

  .fireworks-parallax-heading {
    font-size: 36px;
  }

  .fireworks-parallax-subtext {
    font-size: 18px;
  }
  /* index products */
  .products-section-title {
    font-size: 2.2rem;
  }

  .products-section-subtitle {
    font-size: 1.1rem;
  }

  .products-card-image-container {
    height: 180px;
  }

  .products-card-content {
    padding: 1.25rem;
  }

  .products-card-title {
    font-size: 1.35rem;
  }

  .products-card-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .products-card-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .products-swiper-container {
    padding: 15px 35px;
  }
  /* index achievements section */
  .index-achievements {
    padding: 80px 0;
  }

  .index-achievements .index-achievements-heading {
    font-size: 36px;
  }

  .index-achievements .index-achievements-subtext {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .index-achievements .index-achievements-counter-box {
    height: 220px;
    padding: 25px 10px;
  }

  .index-achievements .index-achievements-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .index-achievements .index-achievements-number {
    font-size: 38px;
  }

  .index-achievements .index-achievements-suffix {
    font-size: 28px;
  }

  .index-achievements .index-achievements-title {
    font-size: 16px;
  }
  /* index welcome section */
  .welcome-section .welcome-heading {
    font-size: 36px;
  }

  .welcome-section .welcome-subheading {
    font-size: 20px;
  }

  .welcome-section .welcome-image {
    margin-top: 30px;
  }

  .welcome-section .welcome-features {
    margin-top: 30px;
  }
  /* header */
  header .section-contact-bar .contact-info {
    justify-content: center;
    margin-bottom: 5px;
  }

  header .section-main-nav .logo-container {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    margin-right: 15px;
  }

  header .section-main-nav .logo-background {
    background:none;
    height:auto;
    Width:auto;
    padding:0;
  }

  header .section-main-nav .logo-img {
    max-width: 80px;
    max-height: 60px;
  }

  header .section-main-nav .navbar-nav {
    margin-left: 0;
    margin-top: 15px;
  }

  header .section-main-nav .nav-link {
    padding: 10px 15px;
  }

  header .section-main-nav .nav-link.active:after {
    bottom: 5px;
  }

  header .section-main-nav .btn-price-list {
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
  }
  .pad {
    padding: 40px 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);
}
